1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

refactor: improved console with light theme

This commit is contained in:
2022-07-18 11:51:49 +02:00
parent c21bd6075c
commit b4d14d98db
4 changed files with 30 additions and 8 deletions

View File

@ -308,6 +308,13 @@
.query-console {
border-top: 1px solid #444;
background-color: $bg-color-dark;
.query-console-log {
&:hover,
&:focus {
background: $bg-color-gray;
}
}
}
.tile {

View File

@ -128,6 +128,18 @@
}
}
.query-console {
border-top: 1px solid darken($bg-color-light-gray, 15%);
background-color: $bg-color-light;
.query-console-log {
&:hover,
&:focus {
background: $bg-color-light-gray;
}
}
}
#titlebar {
background: $bg-color-light;
box-shadow: 0 0 1px 0 #000;