Bug 1512318 - Focused textboxes do not change their border on hover. r=dao

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
matthias 2018-12-06 17:33:53 +00:00
Родитель 9f7e0d6686
Коммит 9952037be2
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -422,11 +422,11 @@ html|textarea {
padding: 5px 8px;
}
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 {
html|input[type="email"]:enabled:not(:focus):hover,
html|input[type="tel"]:enabled:not(:focus):hover,
html|input[type="text"]:enabled:not(:focus):hover,
html|textarea:enabled:not(:focus):hover,
xul|textbox:not([disabled="true"]):not([focused]):hover {
border-color: var(--in-content-border-hover);
}