Bug 1615907 - Fix the searchbox focus with the default theme. r=aleca

This commit is contained in:
Richard Marti 2020-02-16 19:46:50 +01:00
Родитель 0679539d04
Коммит d3bc61049a
3 изменённых файлов: 9 добавлений и 3 удалений

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

@ -40,8 +40,10 @@
margin: 0 3px;
}
.gloda-search:focus,
.searchBox[focused="true"],
.themeableSearchBox[focused="true"] {
.themeableSearchBox:not([disabled="true"]):focus,
.themeableSearchBox:not([disabled="true"])[focused="true"] {
border-color: Highlight;
}

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

@ -27,8 +27,10 @@
}
/* special treatment because these boxes are on themable toolbars */
.gloda-search:focus,
.searchBox[focused="true"],
.themeableSearchBox[focused="true"] {
.themeableSearchBox:not([disabled="true"]):focus,
.themeableSearchBox:not([disabled="true"])[focused="true"] {
border-color: -moz-mac-focusring;
box-shadow: var(--focus-ring-box-shadow);
}

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

@ -70,8 +70,10 @@
margin-bottom: 3px;
}
.gloda-search:focus,
.searchBox[focused="true"],
.themeableSearchBox[focused="true"] {
.themeableSearchBox:not([disabled="true"]):focus,
.themeableSearchBox:not([disabled="true"])[focused="true"] {
border-color: Highlight;
}