From 0f4a819ec5b5c8f58347cc524add00c6b9886168 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 18 Apr 2026 14:47:59 +0100 Subject: [PATCH] style(base): add keyboard-active option style for cell dropdowns --- apps/client/src/features/base/styles/cells.module.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/features/base/styles/cells.module.css b/apps/client/src/features/base/styles/cells.module.css index f92026cf..fced0489 100644 --- a/apps/client/src/features/base/styles/cells.module.css +++ b/apps/client/src/features/base/styles/cells.module.css @@ -239,6 +239,14 @@ background-color: light-dark(var(--mantine-color-blue-0), var(--mantine-color-blue-9)); } +.selectOptionKeyboardActive { + background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-5)); +} + +.selectOptionActive.selectOptionKeyboardActive { + background-color: light-dark(var(--mantine-color-blue-1), var(--mantine-color-blue-8)); +} + .selectCategoryLabel { font-size: 11px; font-weight: 600;