-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
166 lines (135 loc) · 2.93 KB
/
stylesheet.css
File metadata and controls
166 lines (135 loc) · 2.93 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* CodexBar — concentric-rings redesign. GNOME-native dark styling;
structure + tone colors only (green/amber/red), no beige paper look. */
/* ---- panel ---- */
.codexbar-panel-glyphs {
spacing: 2px;
padding: 0 4px;
}
/* placeholder icon shown when no providers are configured */
.codexbar-default-icon {
opacity: 0.85;
}
/* ---- dropdown shell ---- */
.codexbar-popup {
min-width: 360px;
}
.codexbar-header {
padding: 6px 4px 10px 4px;
spacing: 6px;
}
.codexbar-header-title {
font-weight: bold;
font-size: 1.05em;
}
.codexbar-header-button {
padding: 4px;
border-radius: 6px;
}
.codexbar-header-button:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.codexbar-legend {
font-size: 0.72em;
font-feature-settings: "tnum";
color: rgba(255, 255, 255, 0.55);
letter-spacing: 1px;
}
/* ---- provider row ---- */
.codexbar-row {
spacing: 12px;
padding: 8px 4px;
}
.codexbar-row-glyph {
width: 40px;
}
.codexbar-row-name {
font-weight: bold;
font-size: 0.95em;
}
.codexbar-row-pct {
font-feature-settings: "tnum";
font-size: 0.72em;
color: rgba(255, 255, 255, 0.5);
}
.codexbar-window-label {
font-feature-settings: "tnum";
letter-spacing: 1px;
color: rgba(255, 255, 255, 0.5);
}
.codexbar-window-label-primary {
font-size: 0.7em;
}
.codexbar-window-label-secondary {
font-size: 0.62em;
}
/* progress bars: a track with a colored fill child (width set in code) */
.codexbar-bar-track {
background-color: rgba(255, 255, 255, 0.14);
border-radius: 999px;
}
.codexbar-bar-track-primary {
height: 9px;
min-width: 150px;
}
.codexbar-bar-track-secondary {
height: 4px;
min-width: 120px;
}
.codexbar-bar-fill {
border-radius: 999px;
}
.codexbar-left {
font-feature-settings: "tnum";
font-weight: bold;
text-align: right;
}
.codexbar-left-primary {
font-size: 0.82em;
}
.codexbar-left-secondary {
font-size: 0.72em;
font-weight: normal;
}
.codexbar-row-secondary {
padding-left: 14px;
}
.codexbar-row-status {
font-size: 0.8em;
color: rgba(255, 255, 255, 0.6);
}
.codexbar-row-status-error {
color: #d76b5d;
}
/* dashed separator between rows */
.codexbar-sep {
height: 1px;
margin: 2px 0;
background-color: rgba(255, 255, 255, 0.12);
}
.codexbar-empty {
padding: 12px 4px;
color: rgba(255, 255, 255, 0.7);
}
/* ---- floating tooltip ---- */
.codexbar-tooltip {
background-color: rgba(20, 20, 22, 0.95);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 8px;
padding: 8px 12px;
spacing: 3px;
box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.45);
}
.codexbar-tooltip-title {
font-weight: bold;
font-size: 0.9em;
padding-bottom: 2px;
}
.codexbar-tooltip-row {
font-size: 0.82em;
spacing: 14px;
color: rgba(255, 255, 255, 0.85);
}
.codexbar-tooltip-row-week {
font-size: 0.76em;
color: rgba(255, 255, 255, 0.6);
}