From db960cf5095931429261a99d666386a51b489a7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 18 Dec 2025 11:57:50 +0100 Subject: [PATCH] Fix command menu input text color (#16661) ## Before CleanShot 2025-12-18 at 11 48 15@2x ## After image --- .../command-menu/components/CommandMenuItemNumberInput.tsx | 4 ---- .../command-menu/components/CommandMenuItemTextInput.tsx | 4 ---- 2 files changed, 8 deletions(-) diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx index bd395a612c..399ad04b72 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx @@ -16,10 +16,6 @@ type CommandMenuItemNumberInputProps = { }; const StyledRightAlignedTextInput = styled(TextInput)` input { - :focus { - color: ${({ theme }) => theme.font.color.primary}; - } - color: ${({ theme }) => theme.font.color.tertiary}; text-align: right; } `; diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx index 1866f22d6e..a2fca0f082 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx @@ -11,10 +11,6 @@ type CommandMenuItemTextInputProps = { const StyledRightAlignedTextInput = styled(TextInput)` input { - :focus { - color: ${({ theme }) => theme.font.color.primary}; - } - color: ${({ theme }) => theme.font.color.tertiary}; text-align: right; } `;