Add back slightly translucent background for controls bar
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
d979da3755
commit
b62a48b2cd
|
@ -5,6 +5,7 @@
|
|||
:root {
|
||||
--color-main-text: $color-main-text;
|
||||
--color-main-background: $color-main-background;
|
||||
--color-main-background-translucent: $color-main-background-translucent;
|
||||
|
||||
--color-background-dark: $color-background-dark;
|
||||
--color-background-darker: $color-background-darker;
|
||||
|
|
|
@ -167,7 +167,7 @@ body {
|
|||
height: 44px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color: var(--color-main-background);
|
||||
background-color: var(--color-main-background-translucent);
|
||||
z-index: 60;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
// DEPRECATED, please use CSS4 vars
|
||||
$color-main-text: #000 !default;
|
||||
$color-main-background: #fff !default;
|
||||
$color-main-background-translucent: hsla(0, 100%, 100%, .97) !default;
|
||||
|
||||
// used for different active/disabled states
|
||||
$color-background-dark: nc-darken($color-main-background, 7%) !default;
|
||||
|
|
Loading…
Reference in New Issue