Skip to content

Commit

Permalink
backport qt5.9 opacity fix
Browse files Browse the repository at this point in the history
from bbbd3e9
  • Loading branch information
dae committed Sep 30, 2020
1 parent 358e337 commit 84dcaa8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ts/src/stats/graphs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ body {

.graph .area {
pointer-events: none;
fill: #00000008;
stroke: #00000015;
fill: #000000;
stroke: #000000;
fill-opacity: 0.03;
stroke-opacity: 0.08;
}

.hoverzone rect {
Expand Down Expand Up @@ -189,8 +191,10 @@ body.night-mode {
color: $night-fg;
}
.graph .area {
fill: #ffffff15;
stroke: #00000030;
fill: #ffffff;
stroke: #000000;
fill-opacity: 0.08;
stroke-opacity: 0.18;
}
.no-data rect {
fill: $night-bg;
Expand Down

0 comments on commit 84dcaa8

Please sign in to comment.