diff options
author | lukefromdc <[email protected]> | 2016-03-01 14:51:56 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-03-01 23:01:25 +0100 |
commit | d661c360efd8570418c5b4d29b05bf15c6c60c49 (patch) | |
tree | a9af0ef2baaf0016dd2e76247f5115d10f7828f2 | |
parent | 315c3f206f81c18de163ada8c9eda13e6bb0f787 (diff) | |
download | mate-themes-d661c360efd8570418c5b4d29b05bf15c6c60c49.tar.bz2 mate-themes-d661c360efd8570418c5b4d29b05bf15c6c60c49.tar.xz |
Fix notebook tab borders broken by gtk change
Same drill: :active becomes :checked in notebooks, implement this for notebook tab borders
-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 4dca6c29..2bd5cc7c 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 @@ -411,19 +411,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; } |