Add styling for multiselect of albums (#29)

This commit is contained in:
coderkun 2017-09-09 14:06:06 +02:00
commit a765c5b401
2 changed files with 22 additions and 6 deletions

View file

@ -18,17 +18,28 @@
font-weight:bold;
}
iconview.view:selected,
iconview.view:selected:focus,
GtkIconView.cell:selected,
GtkIconView.cell:selected:focus {
background-color:@theme_selected_bg_color;
actionbar {
background-color:@theme_unfocused_bg_color;
}
/* Icon View in regular mode */
iconview.view:selected,
iconview.view:selected:focus {
background-color:@theme_selected_bg_color;
}
iconview.view:hover {
-gtk-icon-effect:highlight;
}
actionbar {
background-color:@theme_unfocused_bg_color;
/* Icon View in selection mode */
iconview.view.selection {
-gtk-icon-effect:dim;
}
iconview.view.selection:selected,
iconview.view.selection:selected:focus {
background-color:@theme_selected_bg_color;
-gtk-icon-effect:highlight;
}
iconview.view.selection:hover {
-gtk-icon-effect:none;
}