diff options
author | raveit65 <[email protected]> | 2017-02-24 14:49:23 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-24 14:49:23 +0100 |
commit | 64e17a4975c39a47fc26f974e32c30335e561ca8 (patch) | |
tree | fbd1ac2e5731014665bf3cbc41380d2cb5cb3daf /desktop-themes/Blue-Submarine | |
parent | 92d013d99b44b45a96311a6e5ec557d8953a81d0 (diff) | |
download | mate-themes-64e17a4975c39a47fc26f974e32c30335e561ca8.tar.bz2 mate-themes-64e17a4975c39a47fc26f974e32c30335e561ca8.tar.xz |
Gtk+-3.20 Submarine themes: fix sidebar of GtkAssistant
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index 2528c45f..58768268 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -3967,14 +3967,9 @@ radiobutton.text-button { * GtkAssistant *
****************/
-assistant .sidebar highlight {
- color: @theme_text_color;
- font-weight: bold;
-}
-
assistant .sidebar {
padding: 5px;
- background-color: shade (@theme_bg_color, 0.97);
+ background-color: @sidebar_background;
border-width: 0px 1px 0px 0px;
border-radius: 0px;
border-style: solid;
@@ -3982,6 +3977,12 @@ assistant .sidebar { color: mix (@theme_fg_color, @theme_bg_color, 0.40);
}
+assistant .sidebar highlight,
+assistant .sidebar label.highlight { /* ie. caja-actions import dialog */
+ color: @theme_text_color;
+ font-weight: bold;
+}
+
/**********
* Switch *
**********/
@@ -4124,6 +4125,11 @@ viewport.frame { padding: 0px;
}
+/* ie. export-assistant caja-actions */
+viewport.frame {
+ background-color: shade(@theme_base_color, 1.00);
+}
+
GdMainIconView.content-view {
-GdMainIconView-icon-size: 40;
}
|