From e2aaf7a4badd0fb669fe2f32423f708850b980c3 Mon Sep 17 00:00:00 2001 From: Ken Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Sun, 15 Jun 2025 07:01:21 +0000 Subject: [PATCH] fix(ui): hotwire combobox bg 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..b82fd59b 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 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;