1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Use log row hover color from theme

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-10-23 12:57:00 +03:00
parent de536b8436
commit d736f24961
4 changed files with 4 additions and 2 deletions

View File

@ -32,8 +32,7 @@
-webkit-font-smoothing: auto; // Better readability on non-retina screens
&:hover {
// TODO: Use a theme var to styling
background: #35373a;
background: $logRowHoverBackground;
}
span {

View File

@ -61,6 +61,7 @@
"dockInfoBackground": "#1e2125",
"dockInfoBorderColor": "#303136",
"logsBackground": "#000000",
"logRowHoverBackground": "#35373a",
"terminalBackground": "#000000",
"terminalForeground": "#ffffff",
"terminalCursor": "#ffffff",

View File

@ -62,6 +62,7 @@
"dockInfoBackground": "#e8e8e8",
"dockInfoBorderColor": "#c9cfd3",
"logsBackground": "#ffffff",
"logRowHoverBackground": "#eeeeee",
"terminalBackground": "#ffffff",
"terminalForeground": "#2d2d2d",
"terminalCursor": "#2d2d2d",

View File

@ -93,6 +93,7 @@ $terminalBrightWhite: var(--terminalBrightWhite);
// Logs
$logsBackground: var(--logsBackground);
$logRowHoverBackground: var(--logRowHoverBackground);
// Dialogs
$dialogTextColor: var(--dialogTextColor);