mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-15 04:33:54 +02:00
42 lines
1 KiB
CSS
42 lines
1 KiB
CSS
/* transparency */
|
|
:root {
|
|
@media (-moz-bool-pref: "mod.sameerasw.zen_bg_color_enabled") {
|
|
--zen-main-browser-background: var(
|
|
--mod-sameerasw-zen_transparency_color,
|
|
#00000000
|
|
) !important;
|
|
}
|
|
}
|
|
|
|
/* Remove new tab background color added in 1.8b */
|
|
.browserStack {
|
|
browser {
|
|
@media (-moz-bool-pref: "mod.sameerasw.zen_light_tint_flip") {
|
|
background-color: light-dark(
|
|
rgba(255, 255, 255, 0.1),
|
|
rgba(0, 0, 0, 0.1)
|
|
) !important;
|
|
}
|
|
@media (-moz-bool-pref: "mod.sameerasw.zen_light_tint_disabled") {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* hide shadow */
|
|
hbox.browserSidebarContainer,
|
|
#zen-tabbox-wrapper {
|
|
@media (-moz-bool-pref: "mod.sameerasw.zen_no_shadow") {
|
|
box-shadow: none !important;
|
|
}
|
|
}
|
|
|
|
/* removed tab bg added in 1.9b */
|
|
#browser:has([zen-empty-tab="true"][selected="true"]) .browserStack {
|
|
browser {
|
|
@media (-moz-bool-pref: "mod.sameerasw.zen_empty_page_transparency") {
|
|
background-color: transparent !important;
|
|
opacity: 0 !important;
|
|
}
|
|
}
|
|
}
|