mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 17:05:31 +02:00
removed chrome checking
This commit is contained in:
parent
ed6a5f41a5
commit
d3a0c488ad
1 changed files with 135 additions and 140 deletions
|
@ -1,11 +1,10 @@
|
|||
@-moz-document url-prefix("chrome:") {
|
||||
#vertical-pinned-tabs-container > .zen-workspace-tabs-section[hidden="true"] {
|
||||
#vertical-pinned-tabs-container > .zen-workspace-tabs-section[hidden="true"] {
|
||||
display: none !important;
|
||||
}
|
||||
tabs {
|
||||
}
|
||||
tabs {
|
||||
counter-reset: tab-counter;
|
||||
} /* Automatically increment tab numbers for each .tab-content inside a tab */ /* Styles when the sidebar is expanded */
|
||||
@media (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
} /* Automatically increment tab numbers for each .tab-content inside a tab */ /* Styles when the sidebar is expanded */
|
||||
@media (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
.zen-workspace-tabs-section[active="true"]
|
||||
tab:not([zen-glance-tab="true"])
|
||||
> .tab-stack
|
||||
|
@ -95,8 +94,8 @@
|
|||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
} /* Styles when the sidebar is NOT expanded (compact mode) */
|
||||
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
} /* Styles when the sidebar is NOT expanded (compact mode) */
|
||||
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
||||
.zen-workspace-tabs-section[active="true"]
|
||||
tab:not([zen-glance-tab="true"])
|
||||
> .tab-stack
|
||||
|
@ -109,10 +108,7 @@
|
|||
padding: 0px 0px;
|
||||
z-index: -100;
|
||||
font-weight: var(--bold-text, normal);
|
||||
font-size: var(
|
||||
--font_size,
|
||||
80%
|
||||
); /* Default font size (same as "Small") */
|
||||
font-size: var(--font_size, 80%); /* Default font size (same as "Small") */
|
||||
color: var(--number_color, inherit); /* Fallback to default color */
|
||||
} /* Put tab numbers on the left side when compact_side="Left" (AND in compact mode) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-compact_side="Left"]) {
|
||||
|
@ -135,51 +131,50 @@
|
|||
color: var(--number_color, inherit); /* Fallback to default color */
|
||||
}
|
||||
}
|
||||
} /* Enable bold text when the preference is enabled */
|
||||
@media (-moz-bool-pref: "uc.theme.bold-text-enable.enabled") {
|
||||
} /* Enable bold text when the preference is enabled */
|
||||
@media (-moz-bool-pref: "uc.theme.bold-text-enable.enabled") {
|
||||
tab:not([zen-glance-tab="true"]) > .tab-stack > .tab-content {
|
||||
--bold-text: bold;
|
||||
}
|
||||
}
|
||||
@media (-moz-bool-pref: "uc.theme.custom_color_enabled") {
|
||||
}
|
||||
@media (-moz-bool-pref: "uc.theme.custom_color_enabled") {
|
||||
tab:not([zen-glance-tab="true"]) > .tab-stack > .tab-content {
|
||||
--number_color: var(--uc-theme-number_color) !important;
|
||||
--number_background_color: var(
|
||||
--uc-theme-number_background_color
|
||||
) !important;
|
||||
}
|
||||
} /* Set font size for Extra Small (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="XSmall"]) {
|
||||
} /* Set font size for Extra Small (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="XSmall"]) {
|
||||
--font_size: 70% !important; /* Extra Small font size */
|
||||
} /* Set font size for Small */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Small"]) {
|
||||
} /* Set font size for Small */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Small"]) {
|
||||
--font_size: 80% !important; /* Small font size */
|
||||
} /* Set font size for Medium (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Medium"]) {
|
||||
} /* Set font size for Medium (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Medium"]) {
|
||||
--font_size: 90% !important; /* Medium font size */
|
||||
} /* Set font size for Large (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Large"]) {
|
||||
} /* Set font size for Large (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="Large"]) {
|
||||
--font_size: 100% !important; /* Large font size */
|
||||
} /* Set font size for Extra Large (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="XLarge"]) {
|
||||
} /* Set font size for Extra Large (Override default) */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-font_size="XLarge"]) {
|
||||
--font_size: 120% !important; /* Extra Large font size */
|
||||
} /* Ensure Close X button is on top of everything. */
|
||||
.tab-close-button {
|
||||
} /* Ensure Close X button is on top of everything. */
|
||||
.tab-close-button {
|
||||
z-index: 10;
|
||||
} /* Customize the shape based on the preference values */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="Square"]) {
|
||||
} /* Customize the shape based on the preference values */
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="Square"]) {
|
||||
--background_shape: 0%; /* Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="SlightlyRounded"]) {
|
||||
--background_shape: 5%; /* Slightly Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="ModeratelyRounded"]) {
|
||||
--background_shape: 15%; /* Moderately Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="FullyRounded"]) {
|
||||
--background_shape: 30%; /* Fully Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="Circle"]) {
|
||||
--background_shape: 50%; /* Perfect Circle */
|
||||
}
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="SlightlyRounded"]) {
|
||||
--background_shape: 5%; /* Slightly Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="ModeratelyRounded"]) {
|
||||
--background_shape: 15%; /* Moderately Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="FullyRounded"]) {
|
||||
--background_shape: 30%; /* Fully Rounded Square */
|
||||
}
|
||||
:root:has(#theme-Tab-Numbers[uc-theme-background_shape="Circle"]) {
|
||||
--background_shape: 50%; /* Perfect Circle */
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue