This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
sidebery.css
executable file
·117 lines (95 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#root.root {
--gg-black: #1c1b22;
--gg-grey: #2b2a33;
--gg-white: #fefefe;
--gg-red: #d10032;
--s-frame-bg: var(--gg-black) !important;
--s-toolbar-bg: var(--gg-grey) !important;
/* --s-frame-fg: var(--gg-white) !important; */
/* --s-toolbar-fg: var(--gg-white) !important; */
}
/* --- NAV BAR --- */
#nav_bar {
margin-bottom: -2px;
display: flex;
align-items: center;
padding: 0 6px;
height: 50px;
}
/* --- PINNED TABS --- */
.PinnedTabsBar {
padding: 2px var(--tabs-margin) var(--tabs-margin) var(--tabs-margin) !important;
background: transparent;
}
/* --- TABS --- */
#root.root {
--tabs-margin: 6px;
--tabs-height: 35px;
--tabs-width: 35px;
--tabs-pinned-height: var(--tabs-height);
--tabs-pinned-width: var(--tabs-width);
--tabs-indent: 16px;
}
.Tab .close:hover {
background: transparent !important;
}
.Tab .close > svg:hover {
/* Styling the tab close button */
border-radius: 50px;
background: #d10032;
opacity: 100%;
}
.TabsPanel .new-tab-btn {
height: var(--tabs-height);
}
.TabsPanel .new-tab-btns {
padding: 0 6px;
}
/* --- IMPROVEMENTS --- */
.TabsPanel {
margin: 5px 0;
}
.central-box {
z-index: 1;
background: var(--gg-black);
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
.main-box:after {
position: absolute;
z-index: 0;
top: -5px;
left: auto;
right: -5px;
content: "";
background: var(--gg-grey);
height: 10px;
width: 10px;
}
/* Uncomment if you place your sidebar to the right */
/* .main-box:after {
right: auto;
left: -5px;
} */
.SearchBar {
background-color: var(--gg-grey);
}
.SearchBar .clear-btn {
background: transparent !important;
opacity: 100%;
}
.SearchBar .clear-btn:before {
background: transparent !important;
opacity: 0;
}
.SearchBar .clear-btn svg {
background: transparent !important;
}
.SearchBar .clear-btn svg:hover {
border-radius: var(--search-border-radius);
background: var(--gg-red) !important;
}
.popup {
margin-top: 50px;
max-width: 97%;
}