37 lines
835 B
CSS
37 lines
835 B
CSS
%if 0
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
%endif
|
|
|
|
#treecolAutoCompleteImage {
|
|
max-width: 36px;
|
|
}
|
|
|
|
.autocomplete-richlistbox {
|
|
padding: 4px 3px;
|
|
}
|
|
|
|
.autocomplete-richlistitem {
|
|
min-height: 30px;
|
|
font: message-box;
|
|
border-radius: 2px;
|
|
padding-inline-start: var(--item-padding-start);
|
|
}
|
|
|
|
:root[uidensity=touch] .autocomplete-richlistitem {
|
|
min-height: 40px;
|
|
}
|
|
|
|
.autocomplete-richlistitem:hover,
|
|
treechildren.searchbar-treebody::-moz-tree-row(hover) {
|
|
background-color: var(--arrowpanel-dimmed);
|
|
}
|
|
|
|
.autocomplete-richlistitem[selected],
|
|
treechildren.searchbar-treebody::-moz-tree-row(selected) {
|
|
background-color: Highlight;
|
|
color: HighlightText;
|
|
}
|
|
|