diff options
author | raveit65 <[email protected]> | 2018-07-15 13:44:58 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-15 13:46:46 +0200 |
commit | a218c598602571335088f293bc2ed74be7bd2b4d (patch) | |
tree | d654904e260105f0b51f29aae0f884b39e977098 /desktop-themes/Green-Submarine | |
parent | 364ee293b425182394ff9b1a8e0dfca8b321040a (diff) | |
download | mate-themes-a218c598602571335088f293bc2ed74be7bd2b4d.tar.bz2 mate-themes-a218c598602571335088f293bc2ed74be7bd2b4d.tar.xz |
submarine: few fixes for buttons in titlebar and popovers
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 32 |
1 files changed, 31 insertions, 1 deletions
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 4f1d5c32..fd67c50a 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -1125,7 +1125,8 @@ button.color { }
.titlebar .path-bar > button.toggle,
-.titlebar .path-bar > button.toggle:hover {
+.titlebar .path-bar > button.toggle:hover,
+.titlebar .path-bar > button.toggle:checked:active {
border-radius: 0px;
border-width: 1px 0px;
}
@@ -5722,6 +5723,7 @@ modelbutton.flat:only-child { color: @theme_fg_dark_color;
border-radius: 6px;
padding: 6px 0px 6px 6px;
+ outline-style: none;
}
modelbutton.flat:checked,
@@ -5760,6 +5762,17 @@ popover > box > button.text-button { /* ie. gedit menu button popover */ border-radius: 6px;
}
+/* use box-shadow for outlines */
+modelbutton.flat:focus,
+modelbutton.flat:focus:first-child,
+modelbutton.flat:focus:last-child,
+modelbutton.flat:focus:only-child {
+ box-shadow: inset 0px 1px shade(@selected_bg_color, 1.05),
+ inset 1px 0px shade(@selected_bg_color, 0.97),
+ inset -1px 0px shade(@selected_bg_color, 0.93),
+ inset 0px -1px shade(@selected_bg_color, 0.93);
+}
+
modelbutton.flat:checked:hover:only-child,
modelbutton.flat:checked:hover:active:only-child,
modelbutton.flat:focus:hover:active:only-child,
@@ -5805,6 +5818,7 @@ popover > box > button.text-button:checked:hover:active { inset 0px -1px shade(@selected_bg_color, 0.93);
}
+popover .linked button:focus,
.linked button.image-button.model,
.linked button.image-button.model:focus,
.linked button.image-button.model:first-child,
@@ -5820,6 +5834,21 @@ popover > box > button.text-button:checked:hover:active { border-radius: 3px;
}
+popover .linked button:focus,
+popover .linked button:focus:first-child,
+popover .linked button:focus:last-child,
+popover .linked button:focus:only-child,
+.linked button.image-button.model:focus,
+.linked button.image-button.model:focus:first-child,
+.linked button.image-button.model:focus:last-child {
+ box-shadow: inset 0px 1px shade (@theme_selected_bg_color, 1.3),
+ inset 1px 0px shade (@theme_selected_bg_color, 1.3),
+ inset -1px 0px shade (@theme_selected_bg_color, 1.3),
+ inset 0px -1px shade (@theme_selected_bg_color, 1.3);
+}
+
+popover .linked button:hover,
+popover .linked button:focus:hover,
.linked button.image-button.model:checked,
.linked button.image-button.model:hover,
.linked button.image-button.model:hover:active,
@@ -6032,6 +6061,7 @@ headerbar:backdrop button { headerbar button:hover,
headerbar button:checked,
headerbar button:hover:active,
+headerbar button:focus:hover:active,
headerbar button.text-button:hover:active,
headerbar button:checked:hover,
headerbar button:checked:hover:active,
|