diff options
author | lukefromdc <[email protected]> | 2016-03-01 14:43:01 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-03-01 14:43:01 -0500 |
commit | 828fcd7898e58c2e654fe5eeb4defb6b6b60abac (patch) | |
tree | b4b67d891456eb38b56714e02ec4159e3a2cfeb4 | |
parent | a1dedb76a66580dbe067a63640befaad865ba2cd (diff) | |
download | mate-themes-828fcd7898e58c2e654fe5eeb4defb6b6b60abac.tar.bz2 mate-themes-828fcd7898e58c2e654fe5eeb4defb6b6b60abac.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 d339ed56..0c019b6d 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -3024,36 +3024,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; } |