HC: Fix fgcolor of backdrop:disabled spinbutton +-
We shouldn't give the icons here the same fg colour as the bg... which makes them disappear and the buttons look like meaningless flat squares. Fix by just using the same colour the same as foreground disabled. Note: insensitive_fg_color is more prominent than !disabled, so clearly wrong.
This commit is contained in:
@ -409,13 +409,13 @@ spinbutton:not(.vertical) button:dir(rtl) { border-style: none solid none none;
|
||||
|
||||
spinbutton:not(.vertical) button:hover { color: #000; background-color: #fff; }
|
||||
|
||||
spinbutton:not(.vertical) button:disabled { color: rgba(128, 128, 128, 0.3); }
|
||||
spinbutton:not(.vertical) button:disabled, spinbutton:not(.vertical) button:backdrop:disabled { color: rgba(128, 128, 128, 0.3); }
|
||||
|
||||
spinbutton:not(.vertical) button:active { background-color: rgba(0, 0, 0, 0.8); color: #fff; }
|
||||
|
||||
spinbutton:not(.vertical) button:backdrop { color: #000; background-color: transparent; border-color: rgba(141, 141, 141, 0.3); }
|
||||
|
||||
spinbutton:not(.vertical) button:backdrop:disabled { color: white; background-image: none; border-style: none none none solid; }
|
||||
spinbutton:not(.vertical) button:backdrop:disabled { background-image: none; border-style: none none none solid; }
|
||||
|
||||
spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { border-style: none solid none none; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user