From e9b4f44fd6e9b95a373e9c0c199f9e0313809b0b Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 22 Dec 2022 01:07:27 -0800 Subject: [PATCH] Update searching --- components/CharacterResult/index.scss | 2 +- components/Input/index.scss | 8 ++++++++ components/Input/index.tsx | 3 ++- components/JobSkillResult/index.scss | 2 +- components/SearchModal/index.tsx | 4 ++-- components/SummonResult/index.scss | 2 +- components/WeaponResult/index.scss | 2 +- 7 files changed, 16 insertions(+), 7 deletions(-) diff --git a/components/CharacterResult/index.scss b/components/CharacterResult/index.scss index 3850d5e2..b247ab9d 100644 --- a/components/CharacterResult/index.scss +++ b/components/CharacterResult/index.scss @@ -28,7 +28,7 @@ gap: $unit-half; h5 { - color: var(--text-secondary); + color: var(--text-tertiary); display: inline-block; font-size: $font-medium; font-weight: $medium; diff --git a/components/Input/index.scss b/components/Input/index.scss index 013f4a74..21fe24d8 100644 --- a/components/Input/index.scss +++ b/components/Input/index.scss @@ -7,6 +7,14 @@ display: block; padding: $unit-2x; width: 100%; + + &.Bound { + background-color: var(--input-bound-bg); + + &:hover { + background-color: var(--input-bound-bg-hover); + } + } } .InputError { diff --git a/components/Input/index.tsx b/components/Input/index.tsx index 27d21315..23beb955 100644 --- a/components/Input/index.tsx +++ b/components/Input/index.tsx @@ -16,11 +16,12 @@ const Input = React.forwardRef(function input( forwardedRef ) { const classes = classNames({ Input: true }, props.className) + const { value, ...inputProps } = props return (