HighContrast: Improve contrast of notebook tabs
This commit is contained in:
@ -1712,7 +1712,7 @@ notebook {
|
|||||||
& header {
|
& header {
|
||||||
// FIXME: double borders in some case, can't fix it w/o a class tho
|
// FIXME: double borders in some case, can't fix it w/o a class tho
|
||||||
// FIXME: doesn't work on dark var
|
// FIXME: doesn't work on dark var
|
||||||
background-color: mix($bg_color, $borders_color, 70%);
|
background-color: mix($bg_color, $borders_color, 85%);
|
||||||
|
|
||||||
// this is the shading of the header behind the tabs
|
// this is the shading of the header behind the tabs
|
||||||
.frame & {
|
.frame & {
|
||||||
@ -1853,14 +1853,14 @@ notebook {
|
|||||||
label { //tab text
|
label { //tab text
|
||||||
padding: 0 2px; // needed for a nicer focus ring
|
padding: 0 2px; // needed for a nicer focus ring
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $insensitive_fg_color; /* color: inherit doesn't work here */
|
color: mix($fg_color, $insensitive_fg_color, 50%); /* color: inherit doesn't work here */
|
||||||
&:backdrop {
|
&:backdrop {
|
||||||
color: $insensitive_fg_color;
|
color: $insensitive_fg_color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&:hover label {
|
&:hover label {
|
||||||
// prelight tab text
|
// prelight tab text
|
||||||
color: mix($fg_color, $insensitive_fg_color, 50%);
|
color: mix($fg_color, $insensitive_fg_color, 75%);
|
||||||
}
|
}
|
||||||
&:checked label {
|
&:checked label {
|
||||||
// active tab text
|
// active tab text
|
||||||
|
|||||||
Reference in New Issue
Block a user