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
Родитель ee22589220
Коммит 658d88ad79
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}