Invert nightmode scrollbar colors
The qtwebengine scrollbar is very bright in nightmode, let's change it so it is a bit softer on the eyes.
This commit is contained in:
parent
b87e224781
commit
cf94bfe488
1 changed files with 16 additions and 1 deletions
|
@ -29,11 +29,26 @@ body {
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.nightmode {
|
.nightmode {
|
||||||
background: #111;
|
background: #111;
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nightmode::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nightmode::-webkit-scrollbar-track-piece {
|
||||||
|
background-color: #111;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nightmode::-webkit-scrollbar-thumb:vertical {
|
||||||
|
height: 30px;
|
||||||
|
background-color: #444;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue