mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Unified search] Fixes the ui on the dark mode (#142703)
* [Unified search] Fixes the ui on the dark mode * Fixes badge color
This commit is contained in:
parent
91dbdc7888
commit
613930461e
1 changed files with 3 additions and 3 deletions
|
@ -493,7 +493,7 @@ export const TextBasedLanguagesEditor = memo(function TextBasedLanguagesEditor({
|
|||
<div css={styles.editorContainer}>
|
||||
{!isCompactFocused && (
|
||||
<EuiBadge
|
||||
color="default"
|
||||
color={euiTheme.colors.lightShade}
|
||||
css={styles.linesBadge}
|
||||
data-test-subj="unifiedTextLangEditor-inline-lines-badge"
|
||||
>
|
||||
|
@ -566,7 +566,7 @@ export const TextBasedLanguagesEditor = memo(function TextBasedLanguagesEditor({
|
|||
data-test-subj="unifiedTextLangEditor-expand"
|
||||
css={{
|
||||
borderRadius: 0,
|
||||
backgroundColor: '#e9edf3',
|
||||
backgroundColor: isDark ? euiTheme.colors.lightestShade : '#e9edf3',
|
||||
border: '1px solid rgb(17 43 134 / 10%) !important',
|
||||
}}
|
||||
/>
|
||||
|
@ -602,7 +602,7 @@ export const TextBasedLanguagesEditor = memo(function TextBasedLanguagesEditor({
|
|||
css={{
|
||||
borderTopLeftRadius: 0,
|
||||
borderBottomLeftRadius: 0,
|
||||
backgroundColor: '#e9edf3',
|
||||
backgroundColor: isDark ? euiTheme.colors.lightestShade : '#e9edf3',
|
||||
border: '1px solid rgb(17 43 134 / 10%) !important',
|
||||
borderLeft: 'transparent !important',
|
||||
}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue