-
Notifications
You must be signed in to change notification settings - Fork 1
/
treestyletab.css
70 lines (57 loc) · 1.14 KB
/
treestyletab.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
:root {
--sidebar-collapsed-width: 48px;
--transition-duration: 0.2s;
--transition-ease: ease-out;
}
/* Show title of unread tabs with red and italic font */
:root.sidebar tab-item.unread .label-content {
font-weight: bold !important;
}
tab-item {
overflow: hidden;
}
tab-item tab-item-substance {
padding: 6px !important;
}
tab-item .background {
top: 0;
bottom: 0;
left: 0;
right: 0;
}
tab-item tab-favicon {
order: 10 !important;
margin-left: 18px;
margin-right: 16px;
transition: var(--transition-duration) var(--transition-ease);
}
tab-item tab-closebox {
transition: margin-right var(--transition-duration) var(--transition-ease);
padding: 0;
margin-right: -32px;
}
tab-item:hover tab-closebox {
margin-right: 0px;
}
#tabbar {
padding: 0px 10px 10px 10px;
scrollbar-color: #ffffff20 transparent;
}
.newtab-button {
padding: 10px;
}
.after-tabs button:hover::before {
bottom: 0;
left: 0;
right: 0;
top: 0;
}
.after-tabs .newtab-button-box {
background: var(--theme-colors-sidebar);
}
#tabbar-container > .after-tabs .newtab-button-box {
padding: 0 10px 10px 10px;
}
.newtab-action-selector-anchor {
margin: 0 10px 10px 0;
}