Adwaita: GtkPlacesSidebar insensitive items.

Set the right colors there.
This commit is contained in:
Lapo Calamandrei
2015-04-15 20:20:52 +02:00
committed by Matthias Clasen
parent f971d4e4f6
commit 8069712a0e
3 changed files with 30 additions and 2 deletions

View File

@@ -2939,10 +2939,22 @@ GtkPlacesSidebar.sidebar .view {
&:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, 90%); }
}
&:backdrop { color: mix($backdrop_fg_color, $sidebar_bg_color, 70%); }
&:insensitive { color: mix($insensitive_fg_color, $sidebar_bg_color, 70%); }
&:backdrop {
color: mix($backdrop_fg_color, $sidebar_bg_color, 70%);
&:insensitive { color: mix($backdrop_insensitive_color, $sidebar_bg_color, 70%); }
}
}
&:backdrop { color: $backdrop_fg_color; }
&:insensitive { color: $insensitive_fg_color; }
&:backdrop {
color: $backdrop_fg_color;
&:insensitive { color: $backdrop_insensitive_color; }
}
&:selected {
@extend %selected_items;

View File

@@ -4031,10 +4031,18 @@ GtkPlacesSidebar.sidebar .view {
color: #e8eef5; }
GtkPlacesSidebar.sidebar .view .image:selected:backdrop {
color: #e8eef5; }
GtkPlacesSidebar.sidebar .view .image:insensitive {
color: #7b7f7f; }
GtkPlacesSidebar.sidebar .view .image:backdrop {
color: #7b7f7f; }
GtkPlacesSidebar.sidebar .view .image:backdrop:insensitive {
color: #555e5e; }
GtkPlacesSidebar.sidebar .view:insensitive {
color: #939695; }
GtkPlacesSidebar.sidebar .view:backdrop {
color: #939695; }
GtkPlacesSidebar.sidebar .view:backdrop:insensitive {
color: #5d6767; }
.sidebar-item {
padding: 10px 4px; }

View File

@@ -4203,10 +4203,18 @@ GtkPlacesSidebar.sidebar .view {
color: #ecf3fb; }
GtkPlacesSidebar.sidebar .view .image:selected:backdrop {
color: #ecf3fb; }
GtkPlacesSidebar.sidebar .view .image:insensitive {
color: #adafb0; }
GtkPlacesSidebar.sidebar .view .image:backdrop {
color: #adafb0; }
GtkPlacesSidebar.sidebar .view .image:backdrop:insensitive {
color: #d6d6d6; }
GtkPlacesSidebar.sidebar .view:insensitive {
color: #8d9091; }
GtkPlacesSidebar.sidebar .view:backdrop {
color: #8d9091; }
GtkPlacesSidebar.sidebar .view:backdrop:insensitive {
color: #c7c7c7; }
.sidebar-item {
padding: 10px 4px; }