Bug 1219861 - Remove not-allowed cursor on disabled buttons on in-content pages. r=dao

This commit is contained in:
Boris Kudryavtsev 2015-11-08 00:30:00 +01:00
parent f09d82c271
commit 5dd5ea66ce
2 changed files with 0 additions and 8 deletions

View File

@ -53,13 +53,6 @@ body {
flex: 1; flex: 1;
} }
/* Pressing the retry button will cause the cursor to flicker from a pointer to
* not-allowed. Override the disabled cursor behaviour since we will never show
* the button disabled as the initial state. Remove this in Bug 1219861. */
button:disabled {
cursor: pointer;
}
#returnButton { #returnButton {
background-color: var(--in-content-primary-button-background); background-color: var(--in-content-primary-button-background);
border: none; border: none;

View File

@ -210,7 +210,6 @@ html|button:disabled,
xul|button[disabled="true"], xul|button[disabled="true"],
xul|colorpicker[type="button"][disabled="true"], xul|colorpicker[type="button"][disabled="true"],
xul|menulist[disabled="true"] { xul|menulist[disabled="true"] {
cursor: not-allowed;
opacity: 0.5; opacity: 0.5;
} }