diff options
author | raveit65 <[email protected]> | 2016-06-29 23:01:55 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-29 23:02:37 +0200 |
commit | 809f05afc7f1657403e7da543b81acd77113446f (patch) | |
tree | ac1bdc5b2507e6501967e21ff95e8396baa8d5fe /desktop-themes/Blue-Submarine | |
parent | 53a4cc8dd61a6b06c04131f94a38cfc1e8561906 (diff) | |
download | mate-themes-809f05afc7f1657403e7da543b81acd77113446f.tar.bz2 mate-themes-809f05afc7f1657403e7da543b81acd77113446f.tar.xz |
GTK+-3.20 submarine themes: fixes for atril toolbar, caja and mate-keyboard-properties
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 35 |
1 files changed, 28 insertions, 7 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 2220ab70..9930b7fd 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -70,12 +70,6 @@ window { *:hover:disabled {
}
-*:selected,
-*:selected:focus {
-/* background-color: shade(@theme_selected_bg_color, 1.0);
- color: @theme_selected_fg_color;*/
-}
-
*:disabled {
/* inherit the color from parent by default */
background-color: inherit;
@@ -2091,6 +2085,26 @@ toolbar.primary-toolbar combobox cellview:hover { color: shade (@theme_selected_bg_color, 1.6);
}
+toolbar combobox button.combo:disabled,
+toolbar.primary-toolbar combobox button.combo:disabled,
+toolbar combobox .linked button.combo:disabled,
+toolbar.primary-toolbar combobox .linked button.combo:disabled,
+toolbar combobox .linked button.combo:disabled:first-child,
+toolbar.primary-toolbar .linked combobox button.combo:disabled:first-child,
+toolbar combobox .linked button.combo:disabled:last-child,
+toolbar.primary-toolbar combobox .linked button.combo:disabled:last-child,
+toolbar combobox .linked button.combo:disabled:only-child,
+toolbar.primary-toolbar combobox button.combo:disabled:only-child {
+ color: shade (@insensitive_fg_color, 1.0);
+ background-color: transparent;
+ box-shadow: none;
+}
+
+toolbar toolitem entry:disabled,
+toolbar.primary-toolbar toolitem entry:disabled {
+ color: shade (@insensitive_fg_color, 1.0);
+ background-color: transparent;
+}
toolbar combobox entry.combo,
toolbar combobox entry.combo:focus {
@@ -4663,13 +4677,20 @@ messagedialog { }
/* ie. mate-keyboard-properties option window */
-dialog scrolledwindow.frame {
+dialog notebook.frame box.vertical > box.vertical > scrolledwindow.frame {
border-color: @notebook_border;
border-style: solid;
border-width: 1px;
border-radius: 2px;
}
+/* ie. caja properties-window notes tab */
+dialog notebook.frame scrolledwindow.frame {
+ border-style: none;
+ border-width: 0px;
+ border-radius: 0px;
+}
+
/* credits in GtkAbout windows */
dialog .dialog-vbox scrolledwindow.frame > viewport.view.frame {
background-color: shade (@theme_bg_color, 1.10);
|