-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserChrome.css
More file actions
37 lines (31 loc) · 847 Bytes
/
Copy pathuserChrome.css
File metadata and controls
37 lines (31 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* >> Zen0 - Better Split Tab
* >> CSS for split tab with 2 tabs per row.
* >> Update : 2025-10-27 1.17.3b
* >> Author : Fluntek
*/
tab-group[split-view-group] {
.tab-group-container {
flex-wrap: wrap !important;
padding: 0 !important;
> .tabbrowser-tab {
flex: 0 0 50% !important;
width: auto !important;
max-width: 100% !important;
padding-inline: 0 !important;
min-height: var(--tab-min-height, 32px) !important;
&::after {
display: none !important;
}
.tab-content {
padding: 0 6px !important;
}
}
> .tabbrowser-tab:nth-last-of-type(1):nth-of-type(odd) {
flex: 0 0 100% !important;
max-width: 100% !important;
}
:root[zen-sidebar-expanded='true'] & > .tabbrowser-tab {
--tab-min-height: 32px !important;
}
}
}