diff options
Diffstat (limited to 'server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx')
-rw-r--r-- | server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx b/server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx index dbfcfb1854f..d5f40048bda 100644 --- a/server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx +++ b/server/sonar-web/design-system/src/components/input/SearchSelectDropdownControl.tsx @@ -144,11 +144,11 @@ const StyledControl = styled.div` &:focus-visible, &:focus-within { border: ${themeBorder('default', 'inputFocus')}; - outline: ${themeBorder('focus', 'inputFocus')}; + outline: var(--echoes-focus-border-width-default) solid var(--echoes-color-focus-default); &.is-discreet { ${tw`sw-rounded-1 sw-border-none`}; - outline: ${themeBorder('focus', 'discreetFocusBorder')}; + outline: var(--echoes-focus-border-width-default) solid var(--echoes-color-focus-default); } } `; |