Fix panel background issues on pantheon desktop

This commit is contained in:
EliverLara
2019-07-30 11:16:53 -05:00
parent 51738754d4
commit 338cd5d22b
3 changed files with 14 additions and 6 deletions

View File

@@ -125,11 +125,15 @@
transition: all 100ms ease-in-out;
&.maximized {
background-color: #000;
background-color: $panel_bg_color;
}
&.translucent {
background-color: transparentize(black, 0.5);;
background-color: transparentize($panel_bg_color, 0.5);;
}
&.color-light.translucent {
background-color: transparentize($panel_fg_color, 0.15);
}
}