Change monaco background color to match inputs (#82451)

This commit is contained in:
Ryan Keairns 2020-11-04 10:12:53 -06:00 committed by GitHub
parent 61a54078d8
commit 1d13937fed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 9 deletions

View file

@ -35,7 +35,7 @@ export function createTheme(
{
token: '',
foreground: euiTheme.euiColorDarkestShade,
background: euiTheme.euiColorEmptyShade,
background: euiTheme.euiFormBackgroundColor,
},
{ token: 'invalid', foreground: euiTheme.euiColorAccent },
{ token: 'emphasis', fontStyle: 'italic' },
@ -94,7 +94,7 @@ export function createTheme(
],
colors: {
'editor.foreground': euiTheme.euiColorDarkestShade,
'editor.background': euiTheme.euiColorEmptyShade,
'editor.background': euiTheme.euiFormBackgroundColor,
'editorLineNumber.foreground': euiTheme.euiColorDarkShade,
'editorLineNumber.activeForeground': euiTheme.euiColorDarkShade,
'editorIndentGuide.background': euiTheme.euiColorLightShade,

View file

@ -45,4 +45,5 @@
.canvasExpression__settings {
padding: $euiSizeM $euiSize;
border-top: $euiBorderThin;
background-color: $euiColorEmptyShade;
}

View file

@ -6,7 +6,7 @@
position: absolute;
top: $euiSize * -1.25;
left: 50%;
background-color: $euiColorLightestShade;
background-color: $euiFormBackgroundColor;
margin: 0;
border-radius: $euiBorderRadius $euiBorderRadius 0 0;

View file

@ -4,11 +4,7 @@
}
.canvasTray__panel {
background-color: $euiPageBackgroundColor;
background-color: $euiFormBackgroundColor;
border-radius: 0;
&.canvasTray__panel--holdingExpression {
background-color: $euiColorEmptyShade;
}
}

View file

@ -12,7 +12,7 @@ $bottomBarHeight: $euiSize * 3;
.painlessLabLeftPane {
padding-top: $euiSizeM;
background-color: $euiColorEmptyShade;
background-color: $euiFormBackgroundColor;
}
.painlessLabRightPane {