We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1530d8 commit a3f90c6Copy full SHA for a3f90c6
1 file changed
packages/eui/src/components/header/header.styles.ts
@@ -126,6 +126,13 @@ const euiHeaderDarkStyles = (euiThemeContext: UseEuiTheme) => {
126
box-shadow: inset 0 0 0 ${euiTheme.border.width.thin} ${
127
selectableSitewide.borderColor
128
};
129
+ ${
130
+ // hide the focus underline in light mode - the search input showing a white background
131
+ // on focus is sufficient indicator
132
+ colorMode !== 'DARK'
133
+ ? `&:focus { --euiFormControlStateColor: transparent; }`
134
+ : ''
135
+ }
136
}
137
138
&--group {
0 commit comments