From 5e1499ed8246bc99b15c853ae97a3bdad72692d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Sun, 24 Mar 2024 20:37:39 +0100 Subject: [PATCH] More colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- src/components/autosuggest-input.tsx | 4 ++-- src/components/dropdown-menu/dropdown-menu-item.tsx | 2 +- src/components/ui/input/input.tsx | 2 +- src/components/ui/select/select.tsx | 2 +- src/features/compose/editor/plugins/autosuggest-plugin.tsx | 4 ++-- src/styles/components/compose-form.scss | 6 +++--- src/styles/components/datepicker.scss | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/autosuggest-input.tsx b/src/components/autosuggest-input.tsx index c24643228..94e613d36 100644 --- a/src/components/autosuggest-input.tsx +++ b/src/components/autosuggest-input.tsx @@ -199,8 +199,8 @@ export default class AutosuggestInput extends ImmutablePureComponent { title={item.text} className={ clsx({ - 'flex px-4 py-2.5 text-sm text-gray-700 dark:text-gray-500 hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gray-100 dark:focus:bg-gray-800 focus:outline-none cursor-pointer': true, + 'flex px-4 py-2.5 text-sm text-gray-700 dark:text-gray-500 hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gray-100 dark:focus:bg-gray-800 focus:outline-none cursor-pointer black:hover:bg-gray-900 black:focus:bg-gray-900': true, 'text-danger-600 dark:text-danger-400': item.destructive, }) } diff --git a/src/components/ui/input/input.tsx b/src/components/ui/input/input.tsx index bb8db57f3..e1a069dd0 100644 --- a/src/components/ui/input/input.tsx +++ b/src/components/ui/input/input.tsx @@ -92,7 +92,7 @@ const Input = React.forwardRef( ['normal', 'search'].includes(theme), 'text-gray-900 dark:text-gray-100': !props.disabled, 'text-gray-600': props.disabled, - 'rounded-md bg-white dark:bg-gray-900 border-gray-400 dark:border-gray-800': theme === 'normal', + 'rounded-md bg-white dark:bg-gray-900 border-gray-400 dark:border-gray-800 black:bg-black': theme === 'normal', 'rounded-full bg-gray-200 border-gray-200 dark:bg-gray-800 dark:border-gray-800 focus:bg-white dark:focus:bg-gray-900': theme === 'search', 'pr-10 rtl:pl-10 rtl:pr-3': isPassword || append, 'pl-8': typeof icon !== 'undefined', diff --git a/src/components/ui/select/select.tsx b/src/components/ui/select/select.tsx index 4c4c6c2c1..b67ebe975 100644 --- a/src/components/ui/select/select.tsx +++ b/src/components/ui/select/select.tsx @@ -13,7 +13,7 @@ const Select = React.forwardRef((props, ref) => {