diff options
author | raveit65 <[email protected]> | 2017-02-24 14:49:23 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-24 14:51:00 +0100 |
commit | fa2d53fa886f3c5a316d9c32ab730f5dea9c32bc (patch) | |
tree | 11b869e1998f3d036b364912d757872bce1816df /desktop-themes | |
parent | b64a6c90a982a67a4a74d38dc60c6f0b57d3478d (diff) | |
download | mate-themes-fa2d53fa886f3c5a316d9c32ab730f5dea9c32bc.tar.bz2 mate-themes-fa2d53fa886f3c5a316d9c32ab730f5dea9c32bc.tar.xz |
Gtk+-3.20 Submarine themes: fix sidebar of GtkAssistant
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 18 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 15 |
2 files changed, 20 insertions, 13 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 3595d268..bfec9a5b 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 *
**********/
@@ -4125,6 +4126,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;
}
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index a3f02905..7a37b219 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -3969,17 +3969,12 @@ radiobutton.text-button { }
/****************
- * assistant *
+ * 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;
@@ -3987,6 +3982,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 *
**********/
|