mirror of
https://github.com/zen-browser/desktop.git
synced 2026-01-20 20:00:45 +00:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
diff --git a/browser/themes/shared/browser-shared.css b/browser/themes/shared/browser-shared.css
|
|
index 08bc078c2572fb218b435e580ef71be2586989c3..3d173cfcfe80e978683df760c132307f97d73ae6 100644
|
|
--- a/browser/themes/shared/browser-shared.css
|
|
+++ b/browser/themes/shared/browser-shared.css
|
|
@@ -163,6 +163,31 @@ body {
|
|
border-bottom-color: var(--chrome-content-separator-color);
|
|
}
|
|
|
|
+
|
|
+ :root[customizing] & {
|
|
+ border-bottom-style: none;
|
|
+ }
|
|
+
|
|
+ :root[lwtheme] & {
|
|
+ background-image: var(--lwt-additional-images);
|
|
+ background-repeat: var(--lwt-background-tiling);
|
|
+ background-position: var(--lwt-background-alignment);
|
|
+ background-color: var(--lwt-accent-color);
|
|
+ color: inherit;
|
|
+
|
|
+ &:-moz-window-inactive {
|
|
+ background-color: var(--lwt-accent-color-inactive, var(--lwt-accent-color));
|
|
+ }
|
|
+ }
|
|
+
|
|
+ /* When a theme defines both theme_frame and additional_backgrounds, show
|
|
+ the latter atop the former. */
|
|
+ :root[lwtheme-image] & {
|
|
+ background-image: var(--lwt-header-image), var(--lwt-additional-images);
|
|
+ background-repeat: no-repeat, var(--lwt-background-tiling);
|
|
+ background-position: right top, var(--lwt-background-alignment);
|
|
+ }
|
|
+
|
|
:root[customizing] & {
|
|
border-bottom-style: none;
|
|
}
|