Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Unified search] Fixes the ui on the dark mode #142703

Merged
merged 4 commits into from
Oct 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
>
Expand Down Expand Up @@ -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',
}}
/>
Expand Down Expand Up @@ -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',
}}
Expand Down