diff options
author | lukefromdc <[email protected]> | 2016-03-01 14:51:56 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-03-01 14:51:56 -0500 |
commit | ea580a101d5f3df137a055a1e0abc063f41a3de3 (patch) | |
tree | cd7babeb1eb4d4babe9716f78a9dcd89e34f213f /desktop-themes/BlackMATE/gtk-3.0 | |
parent | 8e0fad22425c75baa6579eb10aacdbaef7f25938 (diff) | |
download | mate-themes-ea580a101d5f3df137a055a1e0abc063f41a3de3.tar.bz2 mate-themes-ea580a101d5f3df137a055a1e0abc063f41a3de3.tar.xz |
Fix notebook tab borders broken by gtk change
Same drill: :active becomes :checked in notebooks, implement this for notebook tab borders
Diffstat (limited to 'desktop-themes/BlackMATE/gtk-3.0')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css index cc8bbf34..30e87211 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css @@ -415,19 +415,19 @@ treeview row:selected:focus { * Notebook and Tabs * *********************/ -notebook tab:active { +notebook tab:checked { border-image: url("assets/tab-active-border.svg") 3 3 0 3 / 3px 3px 0px 3px stretch; } -notebook tab.bottom:active { +notebook tab.bottom:checked { border-image: url("assets/tab-bottom-active-border.svg") 0 3 3 3 / 0px 3px 3px 3px stretch; } -notebook tab.left:active { +notebook tab.left:checked { border-image: url("assets/tab-left-active-border.svg") 3 0 3 3 / 3px 0px 3px 3px stretch; } -notebook tab.right:active { +notebook tab.right:checked { border-image: url("assets/tab-right-active-border.svg") 3 3 3 0 / 3px 3px 3px 0px stretch; } |