diff options
author | raveit65 <[email protected]> | 2016-04-04 19:30:03 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-04 19:30:03 +0200 |
commit | f77aef2b3deffcb5e4612de9564aca752c02a3e2 (patch) | |
tree | 8346af1dcc2407325065c2f24e8465f97672234a /desktop-themes/Blue-Submarine | |
parent | 350f740fdf2eed1975f1c2fd78e68ceb6794b8de (diff) | |
download | mate-themes-f77aef2b3deffcb5e4612de9564aca752c02a3e2.tar.bz2 mate-themes-f77aef2b3deffcb5e4612de9564aca752c02a3e2.tar.xz |
GTK+-3.18 submarine themes: fix linked OSD button + popover label fg color
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 17 |
1 files changed, 14 insertions, 3 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 1a3fae15..6fd2f082 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -4794,21 +4794,24 @@ GtkOverlay.osd { .osd.toolbar .button,
.osd.toolbar .button:hover,
-.osd.toolbar .linked .button {
+.osd.toolbar .linked .button,
+.osd.toolbar .linked .button:focus:hover:active {
padding: 6px;
border-width: 1px;
border-radius: 5px;
}
.osd.toolbar .button:first-child,
-.osd.toolbar .linked .button:first-child {
+.osd.toolbar .linked .button:first-child,
+.osd.toolbar .linked .button:focus:hover:active:first-child {
border-radius: 5px 0 0 5px;
border-width: 1px 0 1px 1px;
box-shadow: inset -1px 0 @osd_button_inset;
}
.osd.toolbar .button:last-child,
-.osd.toolbar .linked .button:last-child {
+.osd.toolbar .linked .button:last-child,
+.osd.toolbar .linked .button:focus:hover:active:last-child {
box-shadow: none;
border-radius: 0 5px 5px 0;
border-width: 1px 1px 1px 0;
@@ -4816,6 +4819,7 @@ GtkOverlay.osd { .osd.toolbar .button:only-child,
.osd.toolbar .linked .button:only-child,
+.osd.toolbar .linked .button:focus:hover:active:only-child,
.osd.toolbar GtkToolButton .button,
.osd.toolbar GtkToolButton:only-child .button,
.osd.toolbar GtkToolButton:last-child .button,
@@ -4973,6 +4977,13 @@ GtkProgressBar.osd.progressbar { icon-shadow: none;
}
+.popover .label,
+.popover .label:hover,
+.popover .label:focus {
+ color: @theme_fg_dark_color;
+ text-shadow: none;
+}
+
.popover > .list,
.popover > .view,
.popover > .toolbar .popover.osd > .toolbar,
|