This reverts commitec5fa1d4c0. Revert "Bug 1606785 - Format Firefox CSS files with Prettier r=desktop-theme-reviewers,perftest-reviewers,places-reviewers,translations-reviewers,omc-reviewers,backup-reviewers,browser-installer-reviewers,sparky,dao,pdahiya,nrishel,kpatenio" This reverts commitbaa5d72bbd. Revert "Bug 1606785 - Format browser/themes and toolkit/themes CSS files with Prettier r=desktop-theme-reviewers,pip-reviewers,tabbrowser-reviewers,places-reviewers,dao,mconley" This reverts commit9604b0a8ae. Revert "Bug 1606785 - Format browser/themes/preferences CSS files with Prettier r=settings-reviewers,desktop-theme-reviewers,dao,mconley" This reverts commit686c1cf85f. Revert "Bug 1606785 - Format urlbar CSS files with Prettier r=urlbar-reviewers,desktop-theme-reviewers,dao" This reverts commita7a4f31251. Revert "Bug 1606785 - Format webcompat CSS files with Prettier r=webcompat-reviewers,denschub" This reverts commit41bc4d5237. Revert "Bug 1606785 - Format search CSS files with Prettier r=search-reviewers,jteow" This reverts commit7bb7f82374. Revert "Bug 1606785 - Format dom CSS files with Prettier r=emilio" This reverts commitc22e910235. Revert "Bug 1606785 - Format android CSS files with Prettier r=geckoview-reviewers,hiro" This reverts commitc08e43fc3d. Revert "Bug 1606785 - Format layout CSS files with Prettier r=layout-reviewers,dholbert" This reverts commit4f2a32d1a4. Revert "Bug 1606785 - Format devtools CSS files with Prettier r=devtools-reviewers,nchevobbe,frontend-codestyle-reviewers" This reverts commitc05f675ddf. Revert "Bug 1606785 - Format recomp CSS files with Prettier r=reusable-components-reviewers,desktop-theme-reviewers,dao,mkennedy" This reverts commitb10c7de8d0. Revert "Bug 1606785 - Format sidebar CSS files with Prettier r=sidebar-reviewers,desktop-theme-reviewers,dao,nsharpley" This reverts commitd32c555e37. Revert "Bug 1606785 - Format shopping CSS files with Prettier r=shopping-reviewers,desktop-theme-reviewers,dao,rking" This reverts commit965887a708. Revert "Bug 1606785 - Format profiles CSS files with Prettier r=profiles-reviewers,desktop-theme-reviewers,dao,mossop" This reverts commit8338860f74. Revert "Bug 1606785 - Format genai and ml CSS files with Prettier r=firefox-ai-ml-reviewers,Mardak" This reverts commitd66681f553. Revert "Bug 1606785 - Format firefoxview CSS files with Prettier r=fxview-reviewers,desktop-theme-reviewers,dao,jsudiaman" This reverts commit530b815cad. Revert "Bug 1606785 - Format aboutlogins, megalist, and form autofill CSS files with Prettier r=credential-management-reviewers,mtigley,desktop-theme-reviewers,dao" This reverts commit813c864381.
285 lines
7.1 KiB
CSS
285 lines
7.1 KiB
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/. */
|
|
|
|
@import url("chrome://browser/skin/browser-shared.css");
|
|
@import url("chrome://browser/skin/contextmenu.css");
|
|
|
|
/**
|
|
* We still want to do some of the tweaks that browser-colors does, like
|
|
* disabling the toolbar field border and backgrounds.
|
|
*/
|
|
@media not (prefers-contrast) {
|
|
:root:not([lwtheme]) {
|
|
@media (-moz-gtk-theme-family) {
|
|
--tabs-navbar-separator-style: none;
|
|
@media (prefers-color-scheme: light) {
|
|
--urlbar-box-bgcolor: #fafafa;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#menubar-items {
|
|
flex-direction: column; /* for flex hack */
|
|
justify-content: normal; /* align the menubar to the top also in customize mode */
|
|
}
|
|
|
|
/**
|
|
* Titlebar drawing:
|
|
*
|
|
* GTK windows have both a window radius (exposed via the
|
|
* `-moz-gtk-csd-titlebar-radius`) environment variable, and a window shadow
|
|
* (which we can't read back from GTK). Note that the -moz-window-decorations
|
|
* (in X11) or the compositor (in Wayland) does draw the shadow corners
|
|
* already.
|
|
*/
|
|
:root[customtitlebar] {
|
|
background-color: transparent;
|
|
|
|
&[sizemode="normal"]:not([gtktiledwindow="true"]) {
|
|
/* This takes care of drawing our window decorations on X11 */
|
|
-moz-default-appearance: -moz-window-decorations;
|
|
appearance: auto;
|
|
|
|
#navigator-toolbox,
|
|
dialog::backdrop {
|
|
border-top-left-radius: env(-moz-gtk-csd-titlebar-radius);
|
|
border-top-right-radius: env(-moz-gtk-csd-titlebar-radius);
|
|
}
|
|
|
|
/* stylelint-disable-next-line media-query-no-invalid */
|
|
@media -moz-pref("widget.gtk.rounded-bottom-corners.enabled") {
|
|
#navigator-toolbox {
|
|
/* The body clip below covers this. */
|
|
border-radius: 0;
|
|
}
|
|
|
|
body,
|
|
dialog::backdrop {
|
|
/* Use an uniform clip to allow WebRender to optimize it better */
|
|
border-radius: env(-moz-gtk-csd-titlebar-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Bookmark menus */
|
|
.bookmark-item {
|
|
&:is(menu, menuitem) {
|
|
min-width: 0;
|
|
max-width: 32em;
|
|
}
|
|
|
|
&:not(.subviewbutton) > .menu-icon {
|
|
margin-block: 0;
|
|
}
|
|
|
|
/* Bookmark drag and drop styles */
|
|
&[dragover-into="true"] {
|
|
background: SelectedItem !important;
|
|
color: SelectedItemText !important;
|
|
}
|
|
}
|
|
|
|
/* Address bar */
|
|
#urlbar,
|
|
#searchbar {
|
|
font-size: 1.05em;
|
|
}
|
|
|
|
/* stylelint-disable-next-line media-query-no-invalid */
|
|
@media -moz-pref("browser.urlbar.experimental.expandTextOnFocus") {
|
|
#urlbar[breakout-extend] {
|
|
font-size: 1.14em;
|
|
}
|
|
}
|
|
|
|
/* AutoComplete */
|
|
|
|
#PopupAutoComplete > richlistbox > richlistitem[originaltype~="datalist-first"] {
|
|
border-top: 1px solid ThreeDShadow;
|
|
}
|
|
|
|
/* Tabstrip */
|
|
|
|
#tabbrowser-tabs {
|
|
/* override the native styling */
|
|
border-bottom: 0;
|
|
}
|
|
|
|
#TabsToolbar {
|
|
min-height: 0;
|
|
}
|
|
|
|
.browser-titlebar,
|
|
#main-menubar {
|
|
appearance: none;
|
|
background-color: transparent;
|
|
color: inherit;
|
|
}
|
|
|
|
/* All tabs menupopup */
|
|
|
|
.alltabs-item[selected="true"] {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#UITourHighlight {
|
|
/* Below are some fixes for people without an X compositor on Linux.
|
|
This is why we can't have nice things: */
|
|
/* Animations don't repaint properly without an X compositor. */
|
|
animation-name: none !important;
|
|
/* Opacity rounds to 0 or 1 on Linux without an X compositor, making the
|
|
background color not visible. Anti-aliasing is not available either. Make a
|
|
thicker outline and cancel border-radius for that case. */
|
|
outline: 4px solid rgb(0,200,215);
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
#UITourTooltipDescription {
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
#UITourTooltipClose {
|
|
margin-inline-end: -4px;
|
|
}
|
|
|
|
/**
|
|
* Override the --arrowpanel-padding so the background extends
|
|
* to the sides and bottom of the panel.
|
|
*/
|
|
#UITourTooltipButtons {
|
|
margin-inline-start: -10px;
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
/* The button box must appear on top of the navigator-toolbox in order for
|
|
* click and hover mouse events to work properly for the button in the restored
|
|
* window state. Otherwise, elements in the navigator-toolbox, like the menubar,
|
|
* can swallow those events. */
|
|
.titlebar-buttonbox {
|
|
z-index: 1;
|
|
align-items: stretch;
|
|
}
|
|
|
|
@media (-moz-gtk-csd-reversed-placement) {
|
|
.titlebar-buttonbox-container {
|
|
order: -1;
|
|
}
|
|
}
|
|
|
|
.titlebar-button {
|
|
appearance: none;
|
|
align-items: center;
|
|
padding: 0;
|
|
padding-inline: calc(env(-moz-gtk-csd-titlebar-button-spacing) / 2);
|
|
|
|
> .toolbarbutton-icon {
|
|
border-radius: 100%;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
-moz-context-properties: stroke;
|
|
stroke: currentColor;
|
|
/* Roughly the Adwaita size */
|
|
width: 24px;
|
|
height: 24px;
|
|
/* Matches the libadwaita transition */
|
|
transition: background-color .2s ease;
|
|
}
|
|
|
|
&:hover > .toolbarbutton-icon {
|
|
background-color: color-mix(in srgb, currentColor 15%, transparent);
|
|
}
|
|
|
|
&:hover:active > .toolbarbutton-icon {
|
|
background-color: color-mix(in srgb, currentColor 30%, transparent);
|
|
}
|
|
|
|
&:focus-visible > .toolbarbutton-icon {
|
|
outline: var(--focus-outline);
|
|
outline-offset: var(--focus-outline-inset);
|
|
}
|
|
}
|
|
|
|
.titlebar-max {
|
|
order: env(-moz-gtk-csd-maximize-button-position);
|
|
> .toolbarbutton-icon {
|
|
background-image: light-dark(
|
|
image-set(
|
|
url(moz-icon://stock/window-maximize-symbolic?dark=0),
|
|
url(moz-icon://stock/window-maximize-symbolic?dark=0&scale=2) 2x
|
|
),
|
|
image-set(
|
|
url(moz-icon://stock/window-maximize-symbolic?dark=1),
|
|
url(moz-icon://stock/window-maximize-symbolic?dark=1&scale=2) 2x
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
.titlebar-restore {
|
|
order: env(-moz-gtk-csd-maximize-button-position);
|
|
> .toolbarbutton-icon {
|
|
background-image: light-dark(
|
|
image-set(
|
|
url(moz-icon://stock/window-restore-symbolic?dark=0),
|
|
url(moz-icon://stock/window-restore-symbolic?dark=0&scale=2) 2x
|
|
),
|
|
image-set(
|
|
url(moz-icon://stock/window-restore-symbolic?dark=1),
|
|
url(moz-icon://stock/window-restore-symbolic?dark=1&scale=2) 2x
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
@media not (-moz-gtk-csd-maximize-button) {
|
|
.titlebar-restore,
|
|
.titlebar-max {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.titlebar-close {
|
|
order: env(-moz-gtk-csd-close-button-position);
|
|
|
|
> .toolbarbutton-icon {
|
|
background-image: light-dark(
|
|
image-set(
|
|
url(moz-icon://stock/window-close-symbolic?dark=0),
|
|
url(moz-icon://stock/window-close-symbolic?dark=0&scale=2) 2x
|
|
),
|
|
image-set(
|
|
url(moz-icon://stock/window-close-symbolic?dark=1),
|
|
url(moz-icon://stock/window-close-symbolic?dark=1&scale=2) 2x
|
|
)
|
|
);
|
|
}
|
|
|
|
@media not (-moz-gtk-csd-close-button) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.titlebar-min {
|
|
order: env(-moz-gtk-csd-minimize-button-position);
|
|
|
|
> .toolbarbutton-icon {
|
|
background-image: light-dark(
|
|
image-set(
|
|
url(moz-icon://stock/window-minimize-symbolic?dark=0),
|
|
url(moz-icon://stock/window-minimize-symbolic?dark=0&scale=2) 2x
|
|
),
|
|
image-set(
|
|
url(moz-icon://stock/window-minimize-symbolic?dark=1),
|
|
url(moz-icon://stock/window-minimize-symbolic?dark=1&scale=2) 2x
|
|
)
|
|
);
|
|
}
|
|
|
|
@media not (-moz-gtk-csd-minimize-button) {
|
|
display: none;
|
|
}
|
|
}
|