зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
903 B
CSS
24 строки
903 B
CSS
% 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/.
|
|
|
|
/* compacttheme.css is loaded in browser.xhtml after browser.css when it is
|
|
preffed on. The bulk of the styling is here in the shared file, but
|
|
there are overrides for each platform in their compacttheme.css files. */
|
|
|
|
:root:-moz-lwtheme-brighttext {
|
|
/* !important to override LightweightThemeConsumer.jsm */
|
|
--autocomplete-popup-background: #2A2A2E !important;
|
|
}
|
|
|
|
@media (-moz-proton) {
|
|
#urlbar:not([focused="true"]) {
|
|
--urlbar-box-bgcolor: var(--lwt-toolbar-field-focus);
|
|
--urlbar-box-hover-bgcolor: var(--button-hover-bgcolor);
|
|
}
|
|
#urlbar[focused="true"] {
|
|
--urlbar-box-bgcolor: var(--button-bgcolor);
|
|
--urlbar-box-hover-bgcolor: var(--button-hover-bgcolor);
|
|
}
|
|
} /** END Proton **/
|