Adwaita: use $backdrop_fg_color where it should

.background:backdrop was not using that one so some labels didn't
look right in backdrop.
This commit is contained in:
Lapo Calamandrei 2014-10-17 20:09:17 +02:00
parent c044220f62
commit 9dab00310d
3 changed files with 15 additions and 18 deletions

View File

@ -58,16 +58,15 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
***************/
.background {
color: $fg_color;
background-color: $bg_color;
}
color: $fg_color;
background-color: $bg_color;
.background:backdrop {
&:backdrop {
text-shadow: none;
icon-shadow: none;
color: lighten($fg_color,10%);
color: $backdrop_fg_color;
background-color: $backdrop_bg_color;
}
}
/*

View File

@ -32,12 +32,11 @@
.background {
color: #eeeeec;
background-color: #393f3f; }
.background:backdrop {
text-shadow: none;
icon-shadow: none;
color: white;
background-color: #393f3f; }
.background:backdrop {
text-shadow: none;
icon-shadow: none;
color: #939695;
background-color: #393f3f; }
/*
These wildcard seems unavoidable, need to investigate.

View File

@ -32,12 +32,11 @@
.background {
color: #2e3436;
background-color: #ededed; }
.background:backdrop {
text-shadow: none;
icon-shadow: none;
color: #454f52;
background-color: #ededed; }
.background:backdrop {
text-shadow: none;
icon-shadow: none;
color: #8d9091;
background-color: #ededed; }
/*
These wildcard seems unavoidable, need to investigate.