diff options
author | lukefromdc <[email protected]> | 2016-03-01 14:49:31 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-03-01 14:49:31 -0500 |
commit | 8e0fad22425c75baa6579eb10aacdbaef7f25938 (patch) | |
tree | 328408e89bff67a6dc74151fda49f81d28ced80a /desktop-themes/BlackMATE/gtk-3.0 | |
parent | 828fcd7898e58c2e654fe5eeb4defb6b6b60abac (diff) | |
download | mate-themes-8e0fad22425c75baa6579eb10aacdbaef7f25938.tar.bz2 mate-themes-8e0fad22425c75baa6579eb10aacdbaef7f25938.tar.xz |
Fix notebook tabs broken by gtk change
Notebook selected tab pseudoclass just changed from :active to :checked yesterday.
Diffstat (limited to 'desktop-themes/BlackMATE/gtk-3.0')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 0c019b6d..b3adc49e 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -748,7 +748,7 @@ notebook tab { shade(@less_dark_color, 0.5)); } -notebook tab:active { +notebook tab:checked { background-image: linear-gradient(to bottom, shade(@less_dark_color, 0.75), shade(@less_dark_color, 0.86) 40%, @@ -771,7 +771,7 @@ notebook header.bottom tab label{ padding: 0px 8px 3px; } -notebook header.bottom tab:active { +notebook header.bottom tab:checked { padding: 0px 8px 3px; background-image: linear-gradient(to top, shade(@less_dark_color, 1.25), @@ -797,15 +797,15 @@ notebook header.right tab label{ border-width: 1px 1px 1px 0px; } -notebook header.left tab:active, -notebook header.right tab:active { +notebook header.left tab:checked, +notebook header.right tab:checked { background-image: none; background-color: @less_dark_color; } notebook tab button, notebook tab button:hover, -notebook tab button:hover:active { +notebook tab button:hover:checked { border-style: none; border-image: none; border-radius: 5px; |