browser/themes/shared/tabbrowser/tabs-navbar.tokens.css
Propagation: No Props Found
Back to Home/* 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/. */
/* DO NOT EDIT this file directly, instead modify moz-tabs-navbar.tokens.json
* and run `mach buildtokens` to see your changes. */
@layer tokens-foundation, tokens-browser-theme, tokens-foundation-nova, tokens-browser-theme-nova, tokens-prefers-contrast, tokens-prefers-contrast-nova, tokens-forced-colors, tokens-forced-colors-nova;
@layer tokens-foundation {
:root,
:host {
--tabs-navbar-separator-color: ThreeDShadow;
--tabs-navbar-separator-style: solid;
}
}
/* Bug 1879900: Can't nest media queries inside of :host, :root selector
until Bug 1879349 lands */
@layer tokens-browser-theme {
@media not ((forced-colors) or (-moz-native-theme)) {
:root:not([lwtheme]),
:host(.anonymous-content-host) {
--tabs-navbar-separator-style: none;
}
}
}
Back to Home