From b900cc927209e3c80f41ccbcbaaed17f0b4b307f Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Mon, 16 Jun 2025 20:58:37 +0700 Subject: [PATCH] Fix: ticker combobox background and text color (#2370) * fix(ui): hotwire combobox bg color * fix(ui): text color --- app/assets/tailwind/application.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/assets/tailwind/application.css b/app/assets/tailwind/application.css index c665a763..bab9ea57 100644 --- a/app/assets/tailwind/application.css +++ b/app/assets/tailwind/application.css @@ -39,7 +39,7 @@ .combobox { .hw-combobox__main__wrapper, .hw-combobox__input { - @apply w-full; + @apply bg-container text-primary w-full; } .hw-combobox__main__wrapper { @@ -53,6 +53,10 @@ .hw-combobox__label { @apply block text-xs text-gray-500 peer-disabled:text-gray-400; } + + .hw-combobox__option { + @apply bg-container hover:bg-container-hover; + } .hw_combobox__pagination__wrapper { @apply h-px;