Bug 1510197 - Remove hover state from disabled textboxes. r=ntim,dao

Differential Revision: https://phabricator.services.mozilla.com/D13544

--HG--
extra : moz-landing-system : lando
This commit is contained in:
matthias 2018-11-30 16:49:35 +00:00
Родитель 75755af410
Коммит f3d947cba2
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -419,11 +419,11 @@ html|textarea {
padding: 5px 8px;
}
html|input[type="email"]:hover,
html|input[type="tel"]:hover,
html|input[type="text"]:hover,
html|textarea:hover,
xul|textbox:hover {
html|input[type="email"]:enabled:hover,
html|input[type="tel"]:enabled:hover,
html|input[type="text"]:enabled:hover,
html|textarea:enabled:hover,
xul|textbox:not([disabled="true"]):hover {
border-color: var(--in-content-border-hover);
}