Skip to content

Commit 3baa3c5

Browse files
authored
Merge pull request zen-browser#1748 from zen-browser/create-theme-1747
2 parents 25d49d9 + 762649f commit 3baa3c5

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
/* Ghost Tabs - Zen Browser Mod */
3+
/* Makes unloaded/inactive tabs appear ghost-like */
4+
5+
:root {
6+
--ghost-filter: grayscale(1);
7+
--ghost-opacity: 0.5;
8+
}
9+
10+
/* Pending tabs appear ghost-like */
11+
.tabbrowser-tab[pending="true"] {
12+
filter: var(--ghost-filter);
13+
opacity: var(--ghost-opacity);
14+
}
15+
16+
/* Ghost folders only when every child tab is pending and not being renamed */
17+
zen-folder:not(:has(.tab-label-container-editing)):not(
18+
:has(.tabbrowser-tab:not([pending="true"]))
19+
)
20+
:is(.tab-group-label, .tab-label-container, .tab-group-folder-icon) {
21+
filter: var(--ghost-filter);
22+
opacity: var(--ghost-opacity);
23+
}
14.5 KB
Loading
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
Makes unloaded tabs & folders appear ghost-like by making them grayscale and transparent.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"id": "c01d3e22-1cee-45c1-a25e-53c0f180eea8",
3+
"name": "Ghost Tabs",
4+
"description": "Makes unloaded tabs & folders appear ghost-like by making them grayscale and transparent.",
5+
"homepage": "https://github.com/Seismix/zen-ghost-tabs",
6+
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c01d3e22-1cee-45c1-a25e-53c0f180eea8/chrome.css",
7+
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c01d3e22-1cee-45c1-a25e-53c0f180eea8/readme.md",
8+
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c01d3e22-1cee-45c1-a25e-53c0f180eea8/image.png",
9+
"author": "Seismix",
10+
"version": "1.0.0",
11+
"tags": [],
12+
"createdAt": "2025-10-02",
13+
"updatedAt": "2025-10-02"
14+
}

0 commit comments

Comments
 (0)