diff options
author | lukefromdc <[email protected]> | 2016-03-01 14:43:01 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-03-01 22:25:28 +0100 |
commit | b3cc1a3582580504b35926dc288012f763ec6db4 (patch) | |
tree | c0a68f7327cc9da198d0e0c1c6372da0c25f58a5 | |
parent | aa0f308425142e9c36c2b87c97fe9934f67f4a3f (diff) | |
download | mate-themes-b3cc1a3582580504b35926dc288012f763ec6db4.tar.bz2 mate-themes-b3cc1a3582580504b35926dc288012f763ec6db4.tar.xz |
BlackMATE-fix colorswatch
Colorswatches in color picker were being covered over when hovered or selected, fix this
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 7d0ed3a0..f9aa0d0c 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -2852,36 +2852,44 @@ EShellWindow:disabled { /* removes the "flash" when quitting */ /***************** * Color Chooser * *****************/ -colorswatch, -colorswatch:selected { + +colorswatch{ background-image: none; background-color: transparent; + border-style: solid; + border-color:transparent; + border-width: 2px; } -colorswatch.color-dark:hover { +colorswatch overlay, +colorswatch overlay:hover, +colorswatch overlay:selected{ + background-image: none; + background-color: transparent; +} + +colorswatch.dark:hover { background-image: linear-gradient(to bottom, alpha(white, 0) 40%, alpha(white, 0.3)); } -colorswatch.color-light:hover { +colorswatch.light:hover { background-image: linear-gradient(to top, alpha(black, 0) 40%, alpha(black, 0.1)); } colorswatch:selected { - border-style: solid; border-color: alpha(black, 0.2); - border-width: 1px; } colorswatch:selected:hover { border-color: alpha(black, 0.5); } -colorswatch.color-light:selected:hover, -colorswatch.color-dark:selected:hover { +colorswatch.light:selected:hover, +colorswatch.dark:selected:hover { background-image: none; } |