forked from mgastonportillo/gale-for-ff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebery.css
executable file
·61 lines (40 loc) · 1.11 KB
/
sidebery.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
/* ROOT */
#root {--tabs-height: 30px;}
#root .Tab {--tabs-indent: 7px;}
/* TABS */
.Tab {
/* Centers tabs horizontally */
margin: auto;
/* Increase to remove wrongful/extra sub-tree-level marks */
width: 96%;
}
/* Veritcally center pinned tabs */
.PinnedTabsBar .Tab {
padding-bottom: 0px;
}
/* NAV BAR */
.NavigationBar {
height: 40px !important;
padding: 4.5px 4.5px 0px 4.5px !important;
/* If you change tab width, change this */
margin-bottom: 4px;
}
/* COLLAPSING SIDEBAR */
@media (max-width: 50px) {
/* Remove tab tree identation when minimised */
#root:not(:hover) .Tab {--tabs-indent: 0px;}
/* Set tab width */
.Tab {max-width: 34px;}
/* Center favicons */
.Tab .body .fav {margin-left: 9px;}
/* Place audio icon at the same location of the throbber */
.Tab .audio {
margin-left: -12px;
margin-top: 5px;
}
.Tab .title {display: none;}
.PinnedTab {margin-left: 5px;}
.NavigationBar .settings-btn {display: none;}
/* Xan couldn't figure out how to center whatever icon was visible */
.BottomBar {display: none;}
}