Bug 1076252 - [10.10] disabled default button shouldn't get white text on yosemite, r=jaws

This commit is contained in:
Gijs Kruitbosch 2014-10-02 22:52:09 +01:00
parent e47ed2ff0e
commit e65901fa31

View File

@ -14,13 +14,13 @@ button {
text-shadow: none;
}
button:hover:active {
button:not([disabled="true"]):hover:active {
color: -moz-mac-buttonactivetext;
}
/* When the window isn't focused, the default button background isn't drawn,
* so don't change the text color then: */
button[default="true"]:not(:-moz-window-inactive) {
button[default="true"]:not([disabled="true"]):not(:-moz-window-inactive) {
color: -moz-mac-defaultbuttontext;
}