Bug 891018 - CSS cursor property does not work properly on disabled inputs. r=bz

This commit is contained in:
Mats Palmgren 2013-11-01 20:31:06 +00:00
parent ee22589220
commit 658d88ad79

View File

@ -376,8 +376,8 @@ select:disabled:disabled /* Need the pseudo-class twice to have the specificity
cursor: inherit;
}
input:disabled > .anonymous-div,
textarea:disabled > .anonymous-div {
input:disabled,
textarea:disabled {
cursor: default;
}