Merge pull request mozilla/fxa-content-server#1274 from mozilla/issue-1016-ie10-select-highlight

fix(css): Remove the blue background on select element focus in IE10+
This commit is contained in:
Vlad Filippov 2014-06-19 08:55:55 -07:00
Родитель 31e3b5dd16 3640d3d23d
Коммит 8b7de6f88c
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -500,6 +500,19 @@ label:focus ~ .input-help-focused {
background-color: $stage-background-color;
}
/**
* Override the default blue highlight for IE10+
*/
.select-row select::-ms-value {
background: none;
}
.select-row select:focus::-ms-value {
color: $input-text-color;
}
.select-row select:-moz-focusring {
color: transparent !important; /* !important must be added or else the browser ignores the request */
text-shadow: 0 0 0 $input-row-hover-border-color !important;