-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-style-tab.css
50 lines (43 loc) · 1.01 KB
/
tree-style-tab.css
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
38
39
40
41
42
43
44
45
46
47
48
49
/* Show title of unread tabs with red and italic font */
/*
:root.sidebar tab-item.unread .label-content {
color: red !important;
font-style: italic !important;
}
*/
/* Add private browsing indicator per tab */
/*
:root.sidebar tab-item.private-browsing tab-label:before {
content: "🕶";
}
*/
tab-item {
--tab-size: 25px !important;
font-family: Iosevka;
}
tab-item tab-item-substance {
height: var(--tab-size);
}
.tab .favicon {
margin-right: 5px; /* Adjust the margin value according to your preference */
}
@media (prefers-color-scheme: light) {
/* Customize hover tab color for light mode */
.tab:hover {
background-color: #dedede;
}
tab-item.active {
font-weight: bold;
background-color: #dddddd;
}
}
@media (prefers-color-scheme: dark) {
/* Customize hover tab color for dark mode */
.tab:hover {
background-color: #252525; /* Change this color to your preferred dark mode hover color */
}
tab-item.active {
font-weight: bold;
background-color: #303030;
}
}