Add back slightly translucent background for controls bar

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2018-10-12 20:43:27 +02:00
parent d979da3755
commit b62a48b2cd
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
3 changed files with 3 additions and 1 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;