privateboard 0.1.19 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/boot.js +239 -34
- package/dist/boot.js.map +1 -1
- package/dist/cli.js +239 -34
- package/dist/cli.js.map +1 -1
- package/dist/server.js +239 -34
- package/dist/server.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +14 -3
- package/public/adjourn-overlay.css +19 -19
- package/public/agent-overlay.css +71 -71
- package/public/agent-profile.css +66 -66
- package/public/agent-profile.js +32 -31
- package/public/app.js +80 -22
- package/public/home.html +4 -136
- package/public/i18n.js +20 -16
- package/public/icons/fold.png +0 -0
- package/public/index.html +198 -94
- package/public/new-agent.css +111 -110
- package/public/new-agent.js +4 -1
- package/public/onboarding.css +96 -96
- package/public/onboarding.js +53 -24
- package/public/quote-cta.css +38 -38
- package/public/room-settings.css +145 -144
- package/public/themes.css +43 -64
- package/public/user-settings.css +257 -215
- package/public/user-settings.js +94 -13
- package/public/voice-onboarding.css +33 -33
- package/public/voice-replay.css +34 -34
package/public/user-settings.css
CHANGED
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
height: 600px;
|
|
32
32
|
max-height: calc(100vh - 64px);
|
|
33
33
|
margin: auto;
|
|
34
|
-
background: var(--panel
|
|
35
|
-
border: 0.5px solid var(--line-strong
|
|
36
|
-
color: var(--text
|
|
34
|
+
background: var(--panel);
|
|
35
|
+
border: 0.5px solid var(--line-strong);
|
|
36
|
+
color: var(--text);
|
|
37
37
|
animation: us-rise 0.18s ease-out;
|
|
38
38
|
display: flex;
|
|
39
39
|
flex-direction: column;
|
|
@@ -48,26 +48,26 @@
|
|
|
48
48
|
position: absolute;
|
|
49
49
|
width: 14px;
|
|
50
50
|
height: 14px;
|
|
51
|
-
border: 2px solid var(--lime
|
|
51
|
+
border: 2px solid var(--lime);
|
|
52
52
|
pointer-events: none;
|
|
53
53
|
}
|
|
54
54
|
.user-settings-modal::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
|
|
55
55
|
.user-settings-modal::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
|
|
56
56
|
|
|
57
57
|
.us-classification {
|
|
58
|
-
background: var(--panel-2
|
|
59
|
-
border-bottom: 0.5px solid var(--line-bright
|
|
58
|
+
background: var(--panel-2);
|
|
59
|
+
border-bottom: 0.5px solid var(--line-bright);
|
|
60
60
|
padding: 6px 14px;
|
|
61
61
|
font-size: 9px;
|
|
62
62
|
letter-spacing: 0.2em;
|
|
63
63
|
text-transform: uppercase;
|
|
64
|
-
color: var(--lime
|
|
64
|
+
color: var(--lime);
|
|
65
65
|
display: flex;
|
|
66
66
|
justify-content: space-between;
|
|
67
67
|
align-items: center;
|
|
68
68
|
flex: 0 0 auto;
|
|
69
69
|
}
|
|
70
|
-
.us-classification .right { color: var(--text-faint
|
|
70
|
+
.us-classification .right { color: var(--text-faint); letter-spacing: 0.12em; }
|
|
71
71
|
|
|
72
72
|
/* Close button · absolute-positioned in the modal's top-right
|
|
73
73
|
corner, pinned BELOW the classification strip so it doesn't
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
z-index: 1;
|
|
87
87
|
width: 24px; height: 24px;
|
|
88
88
|
background: transparent;
|
|
89
|
-
border: 0.5px solid var(--line-bright
|
|
90
|
-
color: var(--text-dim
|
|
89
|
+
border: 0.5px solid var(--line-bright);
|
|
90
|
+
color: var(--text-dim);
|
|
91
91
|
font-size: 12px;
|
|
92
92
|
line-height: 1;
|
|
93
93
|
cursor: pointer;
|
|
@@ -99,14 +99,14 @@
|
|
|
99
99
|
transition: all 0.12s;
|
|
100
100
|
}
|
|
101
101
|
.us-close:hover {
|
|
102
|
-
border-color: var(--lime
|
|
103
|
-
color: var(--lime
|
|
102
|
+
border-color: var(--lime);
|
|
103
|
+
color: var(--lime);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
/* ─── 2-column frame ─── */
|
|
107
107
|
.us-frame {
|
|
108
108
|
display: grid;
|
|
109
|
-
grid-template-columns:
|
|
109
|
+
grid-template-columns: 170px 1fr;
|
|
110
110
|
flex: 1 1 auto;
|
|
111
111
|
min-height: 0;
|
|
112
112
|
}
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
|
|
117
117
|
/* Left rail */
|
|
118
118
|
.us-nav {
|
|
119
|
-
background: var(--panel-2
|
|
120
|
-
border-right: 0.5px solid var(--line-bright
|
|
119
|
+
background: var(--panel-2);
|
|
120
|
+
border-right: 0.5px solid var(--line-bright);
|
|
121
121
|
padding: 10px 8px;
|
|
122
122
|
display: flex;
|
|
123
123
|
flex-direction: column;
|
|
@@ -128,42 +128,84 @@
|
|
|
128
128
|
.us-nav {
|
|
129
129
|
flex-direction: row;
|
|
130
130
|
border-right: none;
|
|
131
|
-
border-bottom: 0.5px solid var(--line-bright
|
|
131
|
+
border-bottom: 0.5px solid var(--line-bright);
|
|
132
132
|
padding: 6px 8px;
|
|
133
133
|
gap: 2px;
|
|
134
134
|
overflow-x: auto;
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
.us-nav-item {
|
|
138
|
-
display:
|
|
138
|
+
display: flex;
|
|
139
|
+
align-items: center;
|
|
140
|
+
gap: 10px;
|
|
139
141
|
padding: 8px 12px;
|
|
140
142
|
font-family: var(--mono);
|
|
141
143
|
font-size: 11px;
|
|
142
144
|
font-weight: 700;
|
|
143
145
|
letter-spacing: 0.08em;
|
|
144
146
|
text-transform: uppercase;
|
|
145
|
-
color: var(--text-dim
|
|
147
|
+
color: var(--text-dim);
|
|
146
148
|
text-decoration: none;
|
|
147
149
|
cursor: pointer;
|
|
148
150
|
border: 0.5px solid transparent;
|
|
149
151
|
transition: all 0.12s;
|
|
150
152
|
white-space: nowrap;
|
|
151
153
|
}
|
|
154
|
+
/* Tab icons · same Lucide-stroke mask-image pattern that the sidebar's
|
|
155
|
+
`.new-btn::before` uses (16px, 2px stroke, rounded caps, no fill).
|
|
156
|
+
The icon picks up `currentColor` so it follows the label's hover /
|
|
157
|
+
active lime cascade automatically. */
|
|
158
|
+
.us-nav-item::before {
|
|
159
|
+
content: "";
|
|
160
|
+
width: 16px;
|
|
161
|
+
height: 16px;
|
|
162
|
+
flex-shrink: 0;
|
|
163
|
+
background-color: currentColor;
|
|
164
|
+
-webkit-mask-image: var(--icon, none);
|
|
165
|
+
mask-image: var(--icon, none);
|
|
166
|
+
-webkit-mask-repeat: no-repeat;
|
|
167
|
+
mask-repeat: no-repeat;
|
|
168
|
+
-webkit-mask-position: center;
|
|
169
|
+
mask-position: center;
|
|
170
|
+
-webkit-mask-size: 16px 16px;
|
|
171
|
+
mask-size: 16px 16px;
|
|
172
|
+
}
|
|
173
|
+
/* User · Lucide `user` (silhouette · single person). */
|
|
174
|
+
.us-nav-item[data-section="user"] {
|
|
175
|
+
--icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>");
|
|
176
|
+
}
|
|
177
|
+
/* Usage · Lucide `bar-chart-3` (3-bar ascending chart). */
|
|
178
|
+
.us-nav-item[data-section="usage"] {
|
|
179
|
+
--icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 3v18h18'/><path d='M18 17V9'/><path d='M13 17V5'/><path d='M8 17v-3'/></svg>");
|
|
180
|
+
}
|
|
181
|
+
/* API key · Lucide `key-round` (ring + tab). */
|
|
182
|
+
.us-nav-item[data-section="keys"] {
|
|
183
|
+
--icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 18v3h3l11-11'/><path d='m16 7 1-1'/><circle cx='17.5' cy='6.5' r='3.5'/></svg>");
|
|
184
|
+
}
|
|
185
|
+
/* Default model · Lucide `cpu` (chip with pins). */
|
|
186
|
+
.us-nav-item[data-section="default"] {
|
|
187
|
+
--icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='16' height='16' rx='2'/><rect x='9' y='9' width='6' height='6'/><path d='M15 2v2'/><path d='M15 20v2'/><path d='M2 15h2'/><path d='M2 9h2'/><path d='M20 15h2'/><path d='M20 9h2'/><path d='M9 2v2'/><path d='M9 20v2'/></svg>");
|
|
188
|
+
}
|
|
189
|
+
/* General · Lucide `sliders-horizontal` (3 horizontal sliders · matches
|
|
190
|
+
the "general preferences" register better than a literal gear). */
|
|
191
|
+
.us-nav-item[data-section="other"] {
|
|
192
|
+
--icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='21' x2='14' y1='4' y2='4'/><line x1='10' x2='3' y1='4' y2='4'/><line x1='21' x2='12' y1='12' y2='12'/><line x1='8' x2='3' y1='12' y2='12'/><line x1='21' x2='16' y1='20' y2='20'/><line x1='12' x2='3' y1='20' y2='20'/><line x1='14' x2='14' y1='2' y2='6'/><line x1='8' x2='8' y1='10' y2='14'/><line x1='16' x2='16' y1='18' y2='22'/></svg>");
|
|
193
|
+
}
|
|
152
194
|
.us-nav-item:hover {
|
|
153
|
-
background: var(--panel-3
|
|
154
|
-
color: var(--text
|
|
195
|
+
background: var(--panel-3);
|
|
196
|
+
color: var(--text);
|
|
155
197
|
}
|
|
156
198
|
.us-nav-item.active {
|
|
157
|
-
background: var(--bg
|
|
158
|
-
color: var(--lime
|
|
159
|
-
border-color: var(--lime-dim
|
|
199
|
+
background: var(--bg);
|
|
200
|
+
color: var(--lime);
|
|
201
|
+
border-color: var(--lime-dim);
|
|
160
202
|
}
|
|
161
203
|
.us-nav-item.danger.active {
|
|
162
|
-
color: var(--red
|
|
204
|
+
color: var(--red);
|
|
163
205
|
border-color: rgba(181, 112, 106, 0.5);
|
|
164
206
|
}
|
|
165
|
-
.us-nav-item.danger { color: var(--text-faint
|
|
166
|
-
.us-nav-item.danger:hover { color: var(--red
|
|
207
|
+
.us-nav-item.danger { color: var(--text-faint); }
|
|
208
|
+
.us-nav-item.danger:hover { color: var(--red); }
|
|
167
209
|
|
|
168
210
|
/* ─── Sidebar foot · app version stamp ───
|
|
169
211
|
Pinned to the bottom of the column flex via `margin-top: auto` so
|
|
@@ -177,20 +219,20 @@
|
|
|
177
219
|
flex-direction: column;
|
|
178
220
|
gap: 2px;
|
|
179
221
|
align-items: flex-start;
|
|
180
|
-
border-top: 0.5px solid var(--line-bright
|
|
222
|
+
border-top: 0.5px solid var(--line-bright);
|
|
181
223
|
font-family: var(--mono);
|
|
182
224
|
}
|
|
183
225
|
.us-nav-foot-label {
|
|
184
226
|
font-size: 8px;
|
|
185
227
|
letter-spacing: 0.22em;
|
|
186
228
|
text-transform: uppercase;
|
|
187
|
-
color: var(--text-faint
|
|
229
|
+
color: var(--text-faint);
|
|
188
230
|
font-weight: 600;
|
|
189
231
|
}
|
|
190
232
|
.us-nav-foot-value {
|
|
191
233
|
font-size: 11px;
|
|
192
234
|
letter-spacing: 0.04em;
|
|
193
|
-
color: var(--text-soft
|
|
235
|
+
color: var(--text-soft);
|
|
194
236
|
font-weight: 700;
|
|
195
237
|
font-variant-numeric: tabular-nums;
|
|
196
238
|
}
|
|
@@ -211,7 +253,7 @@
|
|
|
211
253
|
.us-pane-head {
|
|
212
254
|
margin-bottom: 16px;
|
|
213
255
|
padding-bottom: 12px;
|
|
214
|
-
border-bottom: 0.5px dashed var(--line-bright
|
|
256
|
+
border-bottom: 0.5px dashed var(--line-bright);
|
|
215
257
|
}
|
|
216
258
|
.us-pane-tag {
|
|
217
259
|
font-family: var(--mono);
|
|
@@ -219,13 +261,13 @@
|
|
|
219
261
|
font-weight: 700;
|
|
220
262
|
letter-spacing: 0.2em;
|
|
221
263
|
text-transform: uppercase;
|
|
222
|
-
color: var(--lime
|
|
264
|
+
color: var(--lime);
|
|
223
265
|
margin-bottom: 6px;
|
|
224
266
|
}
|
|
225
267
|
.us-pane-deck {
|
|
226
268
|
font-family: var(--font-human);
|
|
227
269
|
font-size: 12px;
|
|
228
|
-
color: var(--text-soft
|
|
270
|
+
color: var(--text-soft);
|
|
229
271
|
line-height: 1.55;
|
|
230
272
|
}
|
|
231
273
|
|
|
@@ -251,7 +293,7 @@
|
|
|
251
293
|
font-weight: 700;
|
|
252
294
|
letter-spacing: 0.14em;
|
|
253
295
|
text-transform: uppercase;
|
|
254
|
-
color: var(--text-faint
|
|
296
|
+
color: var(--text-faint);
|
|
255
297
|
padding-top: 8px;
|
|
256
298
|
}
|
|
257
299
|
.us-row-field { min-width: 0; }
|
|
@@ -260,7 +302,7 @@
|
|
|
260
302
|
font-size: 10px;
|
|
261
303
|
letter-spacing: 0.06em;
|
|
262
304
|
text-transform: uppercase;
|
|
263
|
-
color: var(--text-faint
|
|
305
|
+
color: var(--text-faint);
|
|
264
306
|
margin-top: 5px;
|
|
265
307
|
}
|
|
266
308
|
|
|
@@ -293,8 +335,8 @@
|
|
|
293
335
|
display: inline-block;
|
|
294
336
|
width: 32px;
|
|
295
337
|
height: 18px;
|
|
296
|
-
background: var(--panel-3
|
|
297
|
-
border: 0.5px solid var(--line-bright
|
|
338
|
+
background: var(--panel-3);
|
|
339
|
+
border: 0.5px solid var(--line-bright);
|
|
298
340
|
border-radius: 9px;
|
|
299
341
|
flex-shrink: 0;
|
|
300
342
|
transition: background 0.18s, border-color 0.18s;
|
|
@@ -306,22 +348,22 @@
|
|
|
306
348
|
width: 14px;
|
|
307
349
|
height: 14px;
|
|
308
350
|
border-radius: 50%;
|
|
309
|
-
background: var(--text-faint
|
|
351
|
+
background: var(--text-faint);
|
|
310
352
|
transition: transform 0.18s ease, background 0.18s;
|
|
311
353
|
}
|
|
312
354
|
.us-switch.on .us-switch-track {
|
|
313
|
-
background: var(--lime
|
|
314
|
-
border-color: var(--lime
|
|
355
|
+
background: var(--lime);
|
|
356
|
+
border-color: var(--lime);
|
|
315
357
|
}
|
|
316
358
|
.us-switch.on .us-switch-thumb {
|
|
317
359
|
transform: translateX(14px);
|
|
318
|
-
background: var(--bg
|
|
360
|
+
background: var(--bg);
|
|
319
361
|
}
|
|
320
|
-
.us-switch:hover .us-switch-track { border-color: var(--text-faint
|
|
321
|
-
.us-switch.on:hover .us-switch-track { border-color: var(--lime
|
|
362
|
+
.us-switch:hover .us-switch-track { border-color: var(--text-faint); }
|
|
363
|
+
.us-switch.on:hover .us-switch-track { border-color: var(--lime); }
|
|
322
364
|
.us-switch:focus-visible { outline: none; }
|
|
323
365
|
.us-switch:focus-visible .us-switch-track {
|
|
324
|
-
outline: 1.5px solid var(--lime
|
|
366
|
+
outline: 1.5px solid var(--lime);
|
|
325
367
|
outline-offset: 2px;
|
|
326
368
|
}
|
|
327
369
|
.us-switch-label {
|
|
@@ -329,14 +371,14 @@
|
|
|
329
371
|
letter-spacing: 0.18em;
|
|
330
372
|
text-transform: uppercase;
|
|
331
373
|
font-weight: 700;
|
|
332
|
-
color: var(--text-soft
|
|
374
|
+
color: var(--text-soft);
|
|
333
375
|
transition: color 0.12s;
|
|
334
376
|
}
|
|
335
|
-
.us-switch.on .us-switch-label { color: var(--lime
|
|
377
|
+
.us-switch.on .us-switch-label { color: var(--lime); }
|
|
336
378
|
|
|
337
379
|
.us-toggle-deck {
|
|
338
380
|
font-size: 11px;
|
|
339
|
-
color: var(--text-faint
|
|
381
|
+
color: var(--text-faint);
|
|
340
382
|
letter-spacing: 0.02em;
|
|
341
383
|
line-height: 1.5;
|
|
342
384
|
flex: 1 1 220px;
|
|
@@ -354,16 +396,16 @@
|
|
|
354
396
|
text-transform: uppercase;
|
|
355
397
|
letter-spacing: 0.1em;
|
|
356
398
|
padding: 7px 13px;
|
|
357
|
-
border: 0.5px solid var(--line-strong
|
|
399
|
+
border: 0.5px solid var(--line-strong);
|
|
358
400
|
background: transparent;
|
|
359
|
-
color: var(--text-soft
|
|
401
|
+
color: var(--text-soft);
|
|
360
402
|
cursor: pointer;
|
|
361
403
|
transition: border-color 0.12s, color 0.12s;
|
|
362
404
|
flex-shrink: 0;
|
|
363
405
|
}
|
|
364
406
|
.us-btn-ghost:hover {
|
|
365
|
-
border-color: var(--lime
|
|
366
|
-
color: var(--lime
|
|
407
|
+
border-color: var(--lime);
|
|
408
|
+
color: var(--lime);
|
|
367
409
|
}
|
|
368
410
|
|
|
369
411
|
/* Preferences → Other · EN / Zh (moved off the sidebar chrome) */
|
|
@@ -373,7 +415,7 @@
|
|
|
373
415
|
padding: 1px;
|
|
374
416
|
border: 1px solid var(--line-bright, rgba(255, 255, 255, 0.09));
|
|
375
417
|
border-radius: 3px;
|
|
376
|
-
background: var(--panel-2
|
|
418
|
+
background: var(--panel-2);
|
|
377
419
|
}
|
|
378
420
|
.us-pane-body .locale-switch .locale-btn {
|
|
379
421
|
appearance: none;
|
|
@@ -391,14 +433,14 @@
|
|
|
391
433
|
.us-pane-body .locale-switch .locale-btn:hover { color: var(--text-soft); }
|
|
392
434
|
.us-pane-body .locale-switch .locale-btn.active {
|
|
393
435
|
background: var(--panel-3);
|
|
394
|
-
color: var(--lime
|
|
436
|
+
color: var(--lime);
|
|
395
437
|
}
|
|
396
438
|
.us-locale-deck {
|
|
397
439
|
margin: 10px 0 0;
|
|
398
440
|
padding: 0;
|
|
399
441
|
max-width: 420px;
|
|
400
442
|
font-size: 11px;
|
|
401
|
-
color: var(--text-faint
|
|
443
|
+
color: var(--text-faint);
|
|
402
444
|
letter-spacing: 0.02em;
|
|
403
445
|
line-height: 1.5;
|
|
404
446
|
}
|
|
@@ -411,8 +453,8 @@
|
|
|
411
453
|
}
|
|
412
454
|
.us-avatar-frame {
|
|
413
455
|
width: 56px; height: 56px;
|
|
414
|
-
border: 0.5px solid var(--line-strong
|
|
415
|
-
background: var(--bg
|
|
456
|
+
border: 0.5px solid var(--line-strong);
|
|
457
|
+
background: var(--bg);
|
|
416
458
|
padding: 3px;
|
|
417
459
|
position: relative;
|
|
418
460
|
}
|
|
@@ -420,7 +462,7 @@
|
|
|
420
462
|
content: "";
|
|
421
463
|
position: absolute;
|
|
422
464
|
width: 5px; height: 5px;
|
|
423
|
-
border: 0.5px solid var(--lime
|
|
465
|
+
border: 0.5px solid var(--lime);
|
|
424
466
|
pointer-events: none;
|
|
425
467
|
}
|
|
426
468
|
.us-avatar-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
|
|
@@ -440,9 +482,9 @@
|
|
|
440
482
|
text-transform: uppercase;
|
|
441
483
|
letter-spacing: 0.1em;
|
|
442
484
|
padding: 6px 12px;
|
|
443
|
-
border: 0.5px solid var(--line-strong
|
|
485
|
+
border: 0.5px solid var(--line-strong);
|
|
444
486
|
background: transparent;
|
|
445
|
-
color: var(--text-soft
|
|
487
|
+
color: var(--text-soft);
|
|
446
488
|
cursor: pointer;
|
|
447
489
|
text-decoration: none;
|
|
448
490
|
transition: all 0.12s;
|
|
@@ -450,37 +492,37 @@
|
|
|
450
492
|
align-items: center;
|
|
451
493
|
gap: 6px;
|
|
452
494
|
}
|
|
453
|
-
.us-mini-btn:hover { border-color: var(--lime
|
|
454
|
-
.us-mini-btn-mark { font-size: 11px; line-height: 1; color: var(--lime
|
|
495
|
+
.us-mini-btn:hover { border-color: var(--lime); color: var(--lime); }
|
|
496
|
+
.us-mini-btn-mark { font-size: 11px; line-height: 1; color: var(--lime); }
|
|
455
497
|
.us-mini-btn.primary {
|
|
456
|
-
background: var(--lime
|
|
457
|
-
color: var(--bg
|
|
458
|
-
border-color: var(--lime
|
|
498
|
+
background: var(--lime);
|
|
499
|
+
color: var(--bg);
|
|
500
|
+
border-color: var(--lime);
|
|
459
501
|
}
|
|
460
|
-
.us-mini-btn.primary:hover { background: transparent; color: var(--lime
|
|
502
|
+
.us-mini-btn.primary:hover { background: transparent; color: var(--lime); }
|
|
461
503
|
.us-mini-btn.danger {
|
|
462
504
|
border-color: rgba(181, 112, 106, 0.5);
|
|
463
|
-
color: var(--red
|
|
505
|
+
color: var(--red);
|
|
464
506
|
}
|
|
465
507
|
.us-mini-btn.danger:hover {
|
|
466
|
-
background: var(--red
|
|
467
|
-
color: var(--bg
|
|
468
|
-
border-color: var(--red
|
|
508
|
+
background: var(--red);
|
|
509
|
+
color: var(--bg);
|
|
510
|
+
border-color: var(--red);
|
|
469
511
|
}
|
|
470
512
|
|
|
471
513
|
/* Inputs (shared with API Key section) */
|
|
472
514
|
.us-input-wrap {
|
|
473
|
-
border: 0.5px solid var(--line-strong
|
|
474
|
-
background: var(--bg
|
|
515
|
+
border: 0.5px solid var(--line-strong);
|
|
516
|
+
background: var(--bg);
|
|
475
517
|
display: flex;
|
|
476
518
|
align-items: stretch;
|
|
477
519
|
transition: border-color 0.12s;
|
|
478
520
|
position: relative;
|
|
479
521
|
}
|
|
480
|
-
.us-input-wrap:focus-within { border-color: var(--lime
|
|
522
|
+
.us-input-wrap:focus-within { border-color: var(--lime); }
|
|
481
523
|
.us-input-wrap::before {
|
|
482
524
|
content: ">";
|
|
483
|
-
color: var(--lime
|
|
525
|
+
color: var(--lime);
|
|
484
526
|
font-weight: 700;
|
|
485
527
|
font-size: 13px;
|
|
486
528
|
font-family: var(--mono);
|
|
@@ -494,7 +536,7 @@
|
|
|
494
536
|
font-family: var(--font-human);
|
|
495
537
|
font-size: 13px;
|
|
496
538
|
line-height: 1.5;
|
|
497
|
-
color: var(--text
|
|
539
|
+
color: var(--text);
|
|
498
540
|
outline: none;
|
|
499
541
|
padding: 8px 12px;
|
|
500
542
|
letter-spacing: -0.003em;
|
|
@@ -511,14 +553,14 @@
|
|
|
511
553
|
-webkit-text-security: disc;
|
|
512
554
|
text-security: disc;
|
|
513
555
|
}
|
|
514
|
-
.us-input::placeholder { color: var(--text-faint
|
|
556
|
+
.us-input::placeholder { color: var(--text-faint); }
|
|
515
557
|
/* When a key is on file, we surface a 4+4 masked preview AS the
|
|
516
558
|
placeholder. Default placeholder colour is the dim "hint" tier,
|
|
517
559
|
which makes the preview read as "field is empty". Lift the colour
|
|
518
560
|
to text-soft + full opacity so it reads as a stored value · the
|
|
519
561
|
"· paste to replace" suffix still tells the user it's editable. */
|
|
520
562
|
.us-input.has-preview::placeholder {
|
|
521
|
-
color: var(--text-soft
|
|
563
|
+
color: var(--text-soft);
|
|
522
564
|
opacity: 1;
|
|
523
565
|
}
|
|
524
566
|
/* Prevent the browser's autofill from painting the input white in dark
|
|
@@ -528,9 +570,9 @@
|
|
|
528
570
|
.us-input:-webkit-autofill:hover,
|
|
529
571
|
.us-input:-webkit-autofill:focus,
|
|
530
572
|
.us-input:-webkit-autofill:active {
|
|
531
|
-
-webkit-text-fill-color: var(--text
|
|
532
|
-
-webkit-box-shadow: 0 0 0 1000px var(--bg
|
|
533
|
-
caret-color: var(--text
|
|
573
|
+
-webkit-text-fill-color: var(--text);
|
|
574
|
+
-webkit-box-shadow: 0 0 0 1000px var(--bg) inset;
|
|
575
|
+
caret-color: var(--text);
|
|
534
576
|
transition: background-color 0s 9999s;
|
|
535
577
|
}
|
|
536
578
|
/* Match form-control color-scheme to the active appearance so native
|
|
@@ -549,39 +591,39 @@
|
|
|
549
591
|
.us-seg {
|
|
550
592
|
display: inline-flex;
|
|
551
593
|
align-items: stretch;
|
|
552
|
-
border: 0.5px solid var(--line-strong
|
|
553
|
-
background: var(--bg
|
|
594
|
+
border: 0.5px solid var(--line-strong);
|
|
595
|
+
background: var(--bg);
|
|
554
596
|
}
|
|
555
597
|
.us-seg-btn {
|
|
556
598
|
appearance: none;
|
|
557
599
|
background: transparent;
|
|
558
600
|
border: 0;
|
|
559
|
-
border-right: 0.5px solid var(--line-strong
|
|
601
|
+
border-right: 0.5px solid var(--line-strong);
|
|
560
602
|
padding: 7px 14px;
|
|
561
603
|
font-family: var(--mono);
|
|
562
604
|
font-size: 12px;
|
|
563
605
|
letter-spacing: 0.02em;
|
|
564
|
-
color: var(--text-soft
|
|
606
|
+
color: var(--text-soft);
|
|
565
607
|
cursor: pointer;
|
|
566
608
|
text-transform: lowercase;
|
|
567
609
|
transition: color 0.12s, background 0.12s, border-color 0.12s;
|
|
568
610
|
}
|
|
569
611
|
.us-seg-btn:last-child { border-right: 0; }
|
|
570
|
-
.us-seg-btn:hover { color: var(--text
|
|
612
|
+
.us-seg-btn:hover { color: var(--text); }
|
|
571
613
|
.us-seg-btn.active {
|
|
572
|
-
color: var(--lime
|
|
573
|
-
background: var(--panel-2
|
|
614
|
+
color: var(--lime);
|
|
615
|
+
background: var(--panel-2);
|
|
574
616
|
}
|
|
575
617
|
.us-seg-btn:focus-visible {
|
|
576
618
|
outline: none;
|
|
577
|
-
color: var(--lime
|
|
578
|
-
background: var(--panel-2
|
|
619
|
+
color: var(--lime);
|
|
620
|
+
background: var(--panel-2);
|
|
579
621
|
}
|
|
580
622
|
|
|
581
623
|
/* ─── API Key section ─── */
|
|
582
624
|
.us-key-row {
|
|
583
|
-
background: var(--bg
|
|
584
|
-
border: 0.5px solid var(--line-bright
|
|
625
|
+
background: var(--bg);
|
|
626
|
+
border: 0.5px solid var(--line-bright);
|
|
585
627
|
padding: 10px 12px;
|
|
586
628
|
}
|
|
587
629
|
.us-key-head {
|
|
@@ -595,7 +637,7 @@
|
|
|
595
637
|
font-family: var(--mono);
|
|
596
638
|
font-size: 14px;
|
|
597
639
|
font-weight: 700;
|
|
598
|
-
color: var(--text
|
|
640
|
+
color: var(--text);
|
|
599
641
|
letter-spacing: -0.003em;
|
|
600
642
|
}
|
|
601
643
|
.us-key-label .badge {
|
|
@@ -617,12 +659,12 @@
|
|
|
617
659
|
letter-spacing: 0.1em;
|
|
618
660
|
text-transform: uppercase;
|
|
619
661
|
}
|
|
620
|
-
.us-key-status.on { color: var(--lime
|
|
621
|
-
.us-key-status.off { color: var(--text-faint
|
|
662
|
+
.us-key-status.on { color: var(--lime); }
|
|
663
|
+
.us-key-status.off { color: var(--text-faint); }
|
|
622
664
|
.us-key-hint {
|
|
623
665
|
font-family: var(--font-human);
|
|
624
666
|
font-size: 11px;
|
|
625
|
-
color: var(--text-dim
|
|
667
|
+
color: var(--text-dim);
|
|
626
668
|
margin-bottom: 8px;
|
|
627
669
|
letter-spacing: -0.003em;
|
|
628
670
|
}
|
|
@@ -644,8 +686,8 @@
|
|
|
644
686
|
.us-key-remove {
|
|
645
687
|
width: 22px; height: 22px;
|
|
646
688
|
background: transparent;
|
|
647
|
-
border: 0.5px solid var(--line-bright
|
|
648
|
-
color: var(--text-faint
|
|
689
|
+
border: 0.5px solid var(--line-bright);
|
|
690
|
+
color: var(--text-faint);
|
|
649
691
|
font-family: var(--mono);
|
|
650
692
|
font-size: 11px;
|
|
651
693
|
line-height: 1;
|
|
@@ -657,8 +699,8 @@
|
|
|
657
699
|
transition: all 0.12s;
|
|
658
700
|
}
|
|
659
701
|
.us-key-remove:hover {
|
|
660
|
-
border-color: var(--red
|
|
661
|
-
color: var(--red
|
|
702
|
+
border-color: var(--red);
|
|
703
|
+
color: var(--red);
|
|
662
704
|
}
|
|
663
705
|
/* Locked variant · the only configured LLM key cannot be removed —
|
|
664
706
|
the boardroom would land in a "no usable carrier" state and every
|
|
@@ -671,8 +713,8 @@
|
|
|
671
713
|
.us-key-remove.is-locked:hover {
|
|
672
714
|
cursor: not-allowed;
|
|
673
715
|
opacity: 0.45;
|
|
674
|
-
border-color: var(--line-bright
|
|
675
|
-
color: var(--text-faint
|
|
716
|
+
border-color: var(--line-bright);
|
|
717
|
+
color: var(--text-faint);
|
|
676
718
|
}
|
|
677
719
|
|
|
678
720
|
/* "Set as default" CTA · sits next to the remove button on configured
|
|
@@ -681,8 +723,8 @@
|
|
|
681
723
|
action. */
|
|
682
724
|
.us-key-set-default {
|
|
683
725
|
background: transparent;
|
|
684
|
-
border: 0.5px solid var(--line-bright
|
|
685
|
-
color: var(--text-soft
|
|
726
|
+
border: 0.5px solid var(--line-bright);
|
|
727
|
+
color: var(--text-soft);
|
|
686
728
|
font-family: var(--mono);
|
|
687
729
|
font-size: 10px;
|
|
688
730
|
font-weight: 600;
|
|
@@ -695,8 +737,8 @@
|
|
|
695
737
|
transition: all 0.12s;
|
|
696
738
|
}
|
|
697
739
|
.us-key-set-default:hover {
|
|
698
|
-
border-color: var(--lime
|
|
699
|
-
color: var(--lime
|
|
740
|
+
border-color: var(--lime);
|
|
741
|
+
color: var(--lime);
|
|
700
742
|
}
|
|
701
743
|
|
|
702
744
|
/* Default badge on the LLM row that owns the saved defaultModelV.
|
|
@@ -707,8 +749,8 @@
|
|
|
707
749
|
border-color: var(--lime-dim, rgba(111, 181, 114, 0.45));
|
|
708
750
|
}
|
|
709
751
|
.us-key-default-badge {
|
|
710
|
-
background: var(--lime
|
|
711
|
-
color: var(--bg
|
|
752
|
+
background: var(--lime) !important;
|
|
753
|
+
color: var(--bg) !important;
|
|
712
754
|
font-weight: 700 !important;
|
|
713
755
|
}
|
|
714
756
|
|
|
@@ -726,7 +768,7 @@
|
|
|
726
768
|
font-weight: 700;
|
|
727
769
|
letter-spacing: 0.14em;
|
|
728
770
|
text-transform: uppercase;
|
|
729
|
-
color: var(--text-faint
|
|
771
|
+
color: var(--text-faint);
|
|
730
772
|
}
|
|
731
773
|
.us-key-add-chips {
|
|
732
774
|
display: flex;
|
|
@@ -741,15 +783,15 @@
|
|
|
741
783
|
text-transform: uppercase;
|
|
742
784
|
padding: 5px 10px;
|
|
743
785
|
background: transparent;
|
|
744
|
-
border: 0.5px dashed var(--line-strong
|
|
745
|
-
color: var(--text-soft
|
|
786
|
+
border: 0.5px dashed var(--line-strong);
|
|
787
|
+
color: var(--text-soft);
|
|
746
788
|
cursor: pointer;
|
|
747
789
|
transition: all 0.12s;
|
|
748
790
|
}
|
|
749
791
|
.us-key-add-chip:hover {
|
|
750
792
|
border-style: solid;
|
|
751
|
-
border-color: var(--lime
|
|
752
|
-
color: var(--lime
|
|
793
|
+
border-color: var(--lime);
|
|
794
|
+
color: var(--lime);
|
|
753
795
|
}
|
|
754
796
|
|
|
755
797
|
.us-key-foot {
|
|
@@ -791,20 +833,20 @@
|
|
|
791
833
|
|
|
792
834
|
/* ─── Footer ─── */
|
|
793
835
|
.us-foot {
|
|
794
|
-
border-top: 0.5px solid var(--line-bright
|
|
836
|
+
border-top: 0.5px solid var(--line-bright);
|
|
795
837
|
padding: 10px 18px;
|
|
796
|
-
background: var(--panel-2
|
|
838
|
+
background: var(--panel-2);
|
|
797
839
|
display: flex;
|
|
798
840
|
justify-content: space-between;
|
|
799
841
|
align-items: center;
|
|
800
842
|
font-family: var(--mono);
|
|
801
843
|
font-size: 10px;
|
|
802
|
-
color: var(--text-faint
|
|
844
|
+
color: var(--text-faint);
|
|
803
845
|
letter-spacing: 0.1em;
|
|
804
846
|
text-transform: uppercase;
|
|
805
847
|
flex: 0 0 auto;
|
|
806
848
|
}
|
|
807
|
-
.us-foot .saved { color: var(--lime
|
|
849
|
+
.us-foot .saved { color: var(--lime); font-weight: 700; }
|
|
808
850
|
.us-foot .saved::before { content: "✓ "; }
|
|
809
851
|
.us-foot .us-done {
|
|
810
852
|
font-family: var(--mono);
|
|
@@ -813,13 +855,13 @@
|
|
|
813
855
|
text-transform: uppercase;
|
|
814
856
|
letter-spacing: 0.1em;
|
|
815
857
|
padding: 6px 12px;
|
|
816
|
-
border: 0.5px solid var(--line-strong
|
|
858
|
+
border: 0.5px solid var(--line-strong);
|
|
817
859
|
background: transparent;
|
|
818
|
-
color: var(--text-soft
|
|
860
|
+
color: var(--text-soft);
|
|
819
861
|
cursor: pointer;
|
|
820
862
|
transition: all 0.12s;
|
|
821
863
|
}
|
|
822
|
-
.us-foot .us-done:hover { border-color: var(--lime
|
|
864
|
+
.us-foot .us-done:hover { border-color: var(--lime); color: var(--lime); }
|
|
823
865
|
|
|
824
866
|
/* Right-side cluster · website link + Done button. */
|
|
825
867
|
.us-foot-right {
|
|
@@ -833,11 +875,11 @@
|
|
|
833
875
|
font-weight: 600;
|
|
834
876
|
letter-spacing: 0.1em;
|
|
835
877
|
text-transform: uppercase;
|
|
836
|
-
color: var(--text-soft
|
|
878
|
+
color: var(--text-soft);
|
|
837
879
|
text-decoration: none;
|
|
838
880
|
transition: color 0.12s;
|
|
839
881
|
}
|
|
840
|
-
.us-foot .us-website:hover { color: var(--lime
|
|
882
|
+
.us-foot .us-website:hover { color: var(--lime); }
|
|
841
883
|
|
|
842
884
|
@media (max-width: 600px) {
|
|
843
885
|
.user-settings-overlay { padding: 12px; }
|
|
@@ -855,7 +897,7 @@
|
|
|
855
897
|
font-size: 10px;
|
|
856
898
|
letter-spacing: 0.18em;
|
|
857
899
|
text-transform: uppercase;
|
|
858
|
-
color: var(--text-faint
|
|
900
|
+
color: var(--text-faint);
|
|
859
901
|
padding: 24px 0;
|
|
860
902
|
text-align: center;
|
|
861
903
|
}
|
|
@@ -866,21 +908,21 @@
|
|
|
866
908
|
align-items: center;
|
|
867
909
|
gap: 14px;
|
|
868
910
|
padding: 36px 12px;
|
|
869
|
-
border: 0.5px dashed var(--line-bright
|
|
870
|
-
background: var(--panel-2
|
|
911
|
+
border: 0.5px dashed var(--line-bright);
|
|
912
|
+
background: var(--panel-2);
|
|
871
913
|
}
|
|
872
914
|
.us-usage-empty-num {
|
|
873
915
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
874
916
|
font-size: 56px;
|
|
875
917
|
font-weight: 600;
|
|
876
|
-
color: var(--text-faint
|
|
918
|
+
color: var(--text-faint);
|
|
877
919
|
letter-spacing: -0.02em;
|
|
878
920
|
line-height: 1;
|
|
879
921
|
}
|
|
880
922
|
.us-usage-empty-text {
|
|
881
923
|
font-size: 12px;
|
|
882
924
|
letter-spacing: 0.04em;
|
|
883
|
-
color: var(--text-soft
|
|
925
|
+
color: var(--text-soft);
|
|
884
926
|
text-align: center;
|
|
885
927
|
max-width: 360px;
|
|
886
928
|
line-height: 1.55;
|
|
@@ -899,8 +941,8 @@
|
|
|
899
941
|
.us-day-pill {
|
|
900
942
|
appearance: none;
|
|
901
943
|
background: transparent;
|
|
902
|
-
border: 0.5px solid var(--line-bright
|
|
903
|
-
color: var(--text-soft
|
|
944
|
+
border: 0.5px solid var(--line-bright);
|
|
945
|
+
color: var(--text-soft);
|
|
904
946
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
905
947
|
font-size: 10px;
|
|
906
948
|
letter-spacing: 0.12em;
|
|
@@ -911,13 +953,13 @@
|
|
|
911
953
|
transition: color 0.12s, border-color 0.12s, background 0.12s;
|
|
912
954
|
}
|
|
913
955
|
.us-day-pill:hover {
|
|
914
|
-
color: var(--text
|
|
915
|
-
border-color: var(--text-faint
|
|
956
|
+
color: var(--text);
|
|
957
|
+
border-color: var(--text-faint);
|
|
916
958
|
}
|
|
917
959
|
.us-day-pill.active {
|
|
918
|
-
color: var(--lime
|
|
919
|
-
border-color: var(--lime
|
|
920
|
-
background: var(--panel-2
|
|
960
|
+
color: var(--lime);
|
|
961
|
+
border-color: var(--lime);
|
|
962
|
+
background: var(--panel-2);
|
|
921
963
|
}
|
|
922
964
|
|
|
923
965
|
/* ─── 14-day stacked bar chart ───
|
|
@@ -931,8 +973,8 @@
|
|
|
931
973
|
flex-direction: column;
|
|
932
974
|
gap: 10px;
|
|
933
975
|
padding: 14px 12px 8px;
|
|
934
|
-
border: 0.5px solid var(--line-bright
|
|
935
|
-
background: var(--panel-2
|
|
976
|
+
border: 0.5px solid var(--line-bright);
|
|
977
|
+
background: var(--panel-2);
|
|
936
978
|
}
|
|
937
979
|
.us-chart-meta {
|
|
938
980
|
display: inline-flex;
|
|
@@ -944,12 +986,12 @@
|
|
|
944
986
|
font-size: 10px;
|
|
945
987
|
letter-spacing: 0.18em;
|
|
946
988
|
text-transform: uppercase;
|
|
947
|
-
color: var(--text-faint
|
|
989
|
+
color: var(--text-faint);
|
|
948
990
|
font-weight: 600;
|
|
949
991
|
}
|
|
950
992
|
.us-chart-meta-value {
|
|
951
993
|
font-size: 13px;
|
|
952
|
-
color: var(--text
|
|
994
|
+
color: var(--text);
|
|
953
995
|
font-weight: 700;
|
|
954
996
|
font-variant-numeric: tabular-nums;
|
|
955
997
|
letter-spacing: -0.01em;
|
|
@@ -995,14 +1037,14 @@
|
|
|
995
1037
|
bottom: calc(100% + 6px);
|
|
996
1038
|
left: 50%;
|
|
997
1039
|
transform: translateX(-50%);
|
|
998
|
-
background: var(--bg
|
|
999
|
-
border: 1px solid var(--line-bright
|
|
1040
|
+
background: var(--bg);
|
|
1041
|
+
border: 1px solid var(--line-bright);
|
|
1000
1042
|
padding: 6px 10px;
|
|
1001
1043
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1002
1044
|
font-size: 10px;
|
|
1003
1045
|
line-height: 1.5;
|
|
1004
1046
|
letter-spacing: 0.04em;
|
|
1005
|
-
color: var(--text
|
|
1047
|
+
color: var(--text);
|
|
1006
1048
|
opacity: 0;
|
|
1007
1049
|
pointer-events: none;
|
|
1008
1050
|
transition: opacity 0.12s ease;
|
|
@@ -1011,7 +1053,7 @@
|
|
|
1011
1053
|
.us-chart-bar:not(.empty):hover::before { opacity: 1; }
|
|
1012
1054
|
.us-chart-bar.empty .us-chart-stack {
|
|
1013
1055
|
height: 1px !important;
|
|
1014
|
-
background: var(--line-bright
|
|
1056
|
+
background: var(--line-bright);
|
|
1015
1057
|
}
|
|
1016
1058
|
/* Today / active markers carry only on the tick label below
|
|
1017
1059
|
(color shift) — no perimeter border around the bar slot.
|
|
@@ -1040,12 +1082,12 @@
|
|
|
1040
1082
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1041
1083
|
font-size: 8px;
|
|
1042
1084
|
letter-spacing: 0.06em;
|
|
1043
|
-
color: var(--text-faint
|
|
1085
|
+
color: var(--text-faint);
|
|
1044
1086
|
text-align: center;
|
|
1045
1087
|
font-variant-numeric: tabular-nums;
|
|
1046
1088
|
}
|
|
1047
|
-
.us-chart-bar.today .us-chart-tick { color: var(--text-soft
|
|
1048
|
-
.us-chart-bar.active .us-chart-tick { color: var(--lime
|
|
1089
|
+
.us-chart-bar.today .us-chart-tick { color: var(--text-soft); }
|
|
1090
|
+
.us-chart-bar.active .us-chart-tick { color: var(--lime); }
|
|
1049
1091
|
|
|
1050
1092
|
/* ─── Day-empty placeholder · shown in the drill-down area when the
|
|
1051
1093
|
user clicks a bar with zero tokens. Mirrors `.us-usage-empty`'s
|
|
@@ -1057,19 +1099,19 @@
|
|
|
1057
1099
|
align-items: center;
|
|
1058
1100
|
gap: 10px;
|
|
1059
1101
|
padding: 28px 12px;
|
|
1060
|
-
border: 0.5px dashed var(--line-bright
|
|
1102
|
+
border: 0.5px dashed var(--line-bright);
|
|
1061
1103
|
}
|
|
1062
1104
|
.us-day-empty-tag {
|
|
1063
1105
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1064
1106
|
font-size: 10px;
|
|
1065
1107
|
letter-spacing: 0.18em;
|
|
1066
1108
|
text-transform: uppercase;
|
|
1067
|
-
color: var(--text-soft
|
|
1109
|
+
color: var(--text-soft);
|
|
1068
1110
|
font-weight: 700;
|
|
1069
1111
|
}
|
|
1070
1112
|
.us-day-empty-text {
|
|
1071
1113
|
font-size: 12px;
|
|
1072
|
-
color: var(--text-faint
|
|
1114
|
+
color: var(--text-faint);
|
|
1073
1115
|
}
|
|
1074
1116
|
|
|
1075
1117
|
/* Optional scope tag above the big total · "Cumulative since install"
|
|
@@ -1080,7 +1122,7 @@
|
|
|
1080
1122
|
font-size: 10px;
|
|
1081
1123
|
letter-spacing: 0.18em;
|
|
1082
1124
|
text-transform: uppercase;
|
|
1083
|
-
color: var(--text-faint
|
|
1125
|
+
color: var(--text-faint);
|
|
1084
1126
|
font-weight: 600;
|
|
1085
1127
|
margin-bottom: 8px;
|
|
1086
1128
|
}
|
|
@@ -1092,13 +1134,13 @@
|
|
|
1092
1134
|
gap: 24px;
|
|
1093
1135
|
align-items: end;
|
|
1094
1136
|
padding-bottom: 18px;
|
|
1095
|
-
border-bottom: 0.5px solid var(--line-bright
|
|
1137
|
+
border-bottom: 0.5px solid var(--line-bright);
|
|
1096
1138
|
}
|
|
1097
1139
|
.us-usage-total-num {
|
|
1098
1140
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1099
1141
|
font-size: 44px;
|
|
1100
1142
|
font-weight: 700;
|
|
1101
|
-
color: var(--lime
|
|
1143
|
+
color: var(--lime);
|
|
1102
1144
|
line-height: 1;
|
|
1103
1145
|
letter-spacing: -0.02em;
|
|
1104
1146
|
}
|
|
@@ -1108,7 +1150,7 @@
|
|
|
1108
1150
|
font-size: 10px;
|
|
1109
1151
|
letter-spacing: 0.18em;
|
|
1110
1152
|
text-transform: uppercase;
|
|
1111
|
-
color: var(--text-faint
|
|
1153
|
+
color: var(--text-faint);
|
|
1112
1154
|
font-weight: 600;
|
|
1113
1155
|
}
|
|
1114
1156
|
.us-usage-meta {
|
|
@@ -1126,7 +1168,7 @@
|
|
|
1126
1168
|
font-size: 10px;
|
|
1127
1169
|
}
|
|
1128
1170
|
.us-usage-meta-label {
|
|
1129
|
-
color: var(--text-faint
|
|
1171
|
+
color: var(--text-faint);
|
|
1130
1172
|
letter-spacing: 0.18em;
|
|
1131
1173
|
text-transform: uppercase;
|
|
1132
1174
|
font-weight: 600;
|
|
@@ -1134,7 +1176,7 @@
|
|
|
1134
1176
|
text-align: left;
|
|
1135
1177
|
}
|
|
1136
1178
|
.us-usage-meta-value {
|
|
1137
|
-
color: var(--text
|
|
1179
|
+
color: var(--text);
|
|
1138
1180
|
font-weight: 700;
|
|
1139
1181
|
font-size: 12px;
|
|
1140
1182
|
font-variant-numeric: tabular-nums;
|
|
@@ -1145,8 +1187,8 @@
|
|
|
1145
1187
|
display: flex;
|
|
1146
1188
|
width: 100%;
|
|
1147
1189
|
height: 8px;
|
|
1148
|
-
background: var(--panel-2
|
|
1149
|
-
border: 0.5px solid var(--line-bright
|
|
1190
|
+
background: var(--panel-2);
|
|
1191
|
+
border: 0.5px solid var(--line-bright);
|
|
1150
1192
|
overflow: hidden;
|
|
1151
1193
|
}
|
|
1152
1194
|
.us-usage-seg {
|
|
@@ -1154,7 +1196,7 @@
|
|
|
1154
1196
|
height: 100%;
|
|
1155
1197
|
transition: width 0.2s ease;
|
|
1156
1198
|
}
|
|
1157
|
-
.us-usage-seg + .us-usage-seg { border-left: 1px solid var(--bg
|
|
1199
|
+
.us-usage-seg + .us-usage-seg { border-left: 1px solid var(--bg); }
|
|
1158
1200
|
|
|
1159
1201
|
/* ─── Section header tag ─── */
|
|
1160
1202
|
.us-usage-section { display: flex; flex-direction: column; gap: 10px; }
|
|
@@ -1163,10 +1205,10 @@
|
|
|
1163
1205
|
font-size: 10px;
|
|
1164
1206
|
letter-spacing: 0.22em;
|
|
1165
1207
|
text-transform: uppercase;
|
|
1166
|
-
color: var(--text-faint
|
|
1208
|
+
color: var(--text-faint);
|
|
1167
1209
|
font-weight: 600;
|
|
1168
1210
|
padding-bottom: 6px;
|
|
1169
|
-
border-bottom: 0.5px solid var(--line-bright
|
|
1211
|
+
border-bottom: 0.5px solid var(--line-bright);
|
|
1170
1212
|
}
|
|
1171
1213
|
|
|
1172
1214
|
/* ─── Per-model rows ─── */
|
|
@@ -1177,7 +1219,7 @@
|
|
|
1177
1219
|
gap: 14px;
|
|
1178
1220
|
align-items: center;
|
|
1179
1221
|
padding: 8px 0;
|
|
1180
|
-
border-bottom: 0.5px dashed var(--line
|
|
1222
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1181
1223
|
}
|
|
1182
1224
|
.us-model-row:last-child { border-bottom: none; }
|
|
1183
1225
|
.us-model-info { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
|
|
@@ -1188,7 +1230,7 @@
|
|
|
1188
1230
|
}
|
|
1189
1231
|
.us-model-name {
|
|
1190
1232
|
font-size: 14px;
|
|
1191
|
-
color: var(--text
|
|
1233
|
+
color: var(--text);
|
|
1192
1234
|
font-weight: 600;
|
|
1193
1235
|
letter-spacing: -0.005em;
|
|
1194
1236
|
overflow: hidden;
|
|
@@ -1200,13 +1242,13 @@
|
|
|
1200
1242
|
font-size: 10px;
|
|
1201
1243
|
letter-spacing: 0.18em;
|
|
1202
1244
|
text-transform: uppercase;
|
|
1203
|
-
color: var(--text-faint
|
|
1245
|
+
color: var(--text-faint);
|
|
1204
1246
|
font-weight: 600;
|
|
1205
1247
|
}
|
|
1206
1248
|
.us-model-bar {
|
|
1207
1249
|
height: 4px;
|
|
1208
|
-
background: var(--panel-2
|
|
1209
|
-
border: 0.5px solid var(--line
|
|
1250
|
+
background: var(--panel-2);
|
|
1251
|
+
border: 0.5px solid var(--line);
|
|
1210
1252
|
position: relative;
|
|
1211
1253
|
overflow: hidden;
|
|
1212
1254
|
min-width: 60px;
|
|
@@ -1221,14 +1263,14 @@
|
|
|
1221
1263
|
}
|
|
1222
1264
|
.us-model-tokens {
|
|
1223
1265
|
font-size: 13px;
|
|
1224
|
-
color: var(--text
|
|
1266
|
+
color: var(--text);
|
|
1225
1267
|
font-weight: 700;
|
|
1226
1268
|
font-variant-numeric: tabular-nums;
|
|
1227
1269
|
letter-spacing: -0.01em;
|
|
1228
1270
|
}
|
|
1229
1271
|
.us-model-pct {
|
|
1230
1272
|
font-size: 10px;
|
|
1231
|
-
color: var(--text-soft
|
|
1273
|
+
color: var(--text-soft);
|
|
1232
1274
|
letter-spacing: 0.04em;
|
|
1233
1275
|
font-variant-numeric: tabular-nums;
|
|
1234
1276
|
min-width: 38px;
|
|
@@ -1238,7 +1280,7 @@
|
|
|
1238
1280
|
font-size: 10px;
|
|
1239
1281
|
letter-spacing: 0.18em;
|
|
1240
1282
|
text-transform: uppercase;
|
|
1241
|
-
color: var(--text-faint
|
|
1283
|
+
color: var(--text-faint);
|
|
1242
1284
|
font-weight: 600;
|
|
1243
1285
|
min-width: 56px;
|
|
1244
1286
|
text-align: right;
|
|
@@ -1252,13 +1294,13 @@
|
|
|
1252
1294
|
gap: 14px;
|
|
1253
1295
|
align-items: center;
|
|
1254
1296
|
padding: 7px 0;
|
|
1255
|
-
border-bottom: 0.5px dashed var(--line
|
|
1297
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1256
1298
|
}
|
|
1257
1299
|
.us-agent-row:last-child { border-bottom: none; }
|
|
1258
1300
|
.us-agent-name-col { display: inline-flex; align-items: baseline; gap: 8px; min-width: 0; }
|
|
1259
1301
|
.us-agent-name {
|
|
1260
1302
|
font-size: 14px;
|
|
1261
|
-
color: var(--text
|
|
1303
|
+
color: var(--text);
|
|
1262
1304
|
font-weight: 600;
|
|
1263
1305
|
white-space: nowrap;
|
|
1264
1306
|
overflow: hidden;
|
|
@@ -1269,7 +1311,7 @@
|
|
|
1269
1311
|
font-size: 9px;
|
|
1270
1312
|
letter-spacing: 0.18em;
|
|
1271
1313
|
text-transform: uppercase;
|
|
1272
|
-
color: var(--text-faint
|
|
1314
|
+
color: var(--text-faint);
|
|
1273
1315
|
font-weight: 600;
|
|
1274
1316
|
}
|
|
1275
1317
|
.us-agent-model {
|
|
@@ -1283,8 +1325,8 @@
|
|
|
1283
1325
|
}
|
|
1284
1326
|
.us-agent-bar {
|
|
1285
1327
|
height: 3px;
|
|
1286
|
-
background: var(--panel-2
|
|
1287
|
-
border: 0.5px solid var(--line
|
|
1328
|
+
background: var(--panel-2);
|
|
1329
|
+
border: 0.5px solid var(--line);
|
|
1288
1330
|
position: relative;
|
|
1289
1331
|
overflow: hidden;
|
|
1290
1332
|
}
|
|
@@ -1293,7 +1335,7 @@
|
|
|
1293
1335
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1294
1336
|
font-size: 12px;
|
|
1295
1337
|
font-weight: 700;
|
|
1296
|
-
color: var(--text
|
|
1338
|
+
color: var(--text);
|
|
1297
1339
|
font-variant-numeric: tabular-nums;
|
|
1298
1340
|
text-align: right;
|
|
1299
1341
|
letter-spacing: -0.01em;
|
|
@@ -1304,11 +1346,11 @@
|
|
|
1304
1346
|
font-size: 10px;
|
|
1305
1347
|
letter-spacing: 0.16em;
|
|
1306
1348
|
text-transform: uppercase;
|
|
1307
|
-
color: var(--text-faint
|
|
1349
|
+
color: var(--text-faint);
|
|
1308
1350
|
font-weight: 600;
|
|
1309
1351
|
text-align: center;
|
|
1310
1352
|
padding-top: 6px;
|
|
1311
|
-
border-top: 0.5px dashed var(--line
|
|
1353
|
+
border-top: 0.5px dashed var(--line);
|
|
1312
1354
|
}
|
|
1313
1355
|
|
|
1314
1356
|
/* ─── Responsive · stack columns on narrow viewports ─── */
|
|
@@ -1330,8 +1372,8 @@
|
|
|
1330
1372
|
gap: 10px;
|
|
1331
1373
|
margin-top: 4px;
|
|
1332
1374
|
padding: 12px 14px;
|
|
1333
|
-
background: var(--panel-2
|
|
1334
|
-
border: 0.5px solid var(--line-bright
|
|
1375
|
+
background: var(--panel-2);
|
|
1376
|
+
border: 0.5px solid var(--line-bright);
|
|
1335
1377
|
}
|
|
1336
1378
|
.us-usage-retired-mark {
|
|
1337
1379
|
flex: 0 0 auto;
|
|
@@ -1343,19 +1385,19 @@
|
|
|
1343
1385
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1344
1386
|
font-size: 10px;
|
|
1345
1387
|
font-weight: 700;
|
|
1346
|
-
color: var(--lime
|
|
1347
|
-
border: 0.5px solid var(--lime
|
|
1388
|
+
color: var(--lime);
|
|
1389
|
+
border: 0.5px solid var(--lime);
|
|
1348
1390
|
letter-spacing: 0;
|
|
1349
1391
|
}
|
|
1350
1392
|
.us-usage-retired-text {
|
|
1351
1393
|
flex: 1 1 auto;
|
|
1352
1394
|
font-size: 11px;
|
|
1353
1395
|
line-height: 1.6;
|
|
1354
|
-
color: var(--text-soft
|
|
1396
|
+
color: var(--text-soft);
|
|
1355
1397
|
letter-spacing: 0.02em;
|
|
1356
1398
|
}
|
|
1357
1399
|
.us-usage-retired-text strong {
|
|
1358
|
-
color: var(--text
|
|
1400
|
+
color: var(--text);
|
|
1359
1401
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1360
1402
|
font-weight: 700;
|
|
1361
1403
|
font-variant-numeric: tabular-nums;
|
|
@@ -1366,23 +1408,23 @@
|
|
|
1366
1408
|
.us-key-group + .us-key-group {
|
|
1367
1409
|
margin-top: 14px;
|
|
1368
1410
|
padding-top: 18px;
|
|
1369
|
-
border-top: 0.5px solid var(--line-bright
|
|
1411
|
+
border-top: 0.5px solid var(--line-bright);
|
|
1370
1412
|
}
|
|
1371
1413
|
.us-key-group-tag {
|
|
1372
1414
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1373
1415
|
font-size: 10px;
|
|
1374
1416
|
letter-spacing: 0.28em;
|
|
1375
1417
|
text-transform: uppercase;
|
|
1376
|
-
color: var(--text-faint
|
|
1418
|
+
color: var(--text-faint);
|
|
1377
1419
|
font-weight: 600;
|
|
1378
1420
|
padding-bottom: 6px;
|
|
1379
|
-
border-bottom: 0.5px solid var(--line-bright
|
|
1421
|
+
border-bottom: 0.5px solid var(--line-bright);
|
|
1380
1422
|
margin-bottom: 4px;
|
|
1381
1423
|
}
|
|
1382
1424
|
.us-key-group-deck {
|
|
1383
1425
|
font-size: 11px;
|
|
1384
1426
|
line-height: 1.55;
|
|
1385
|
-
color: var(--text-soft
|
|
1427
|
+
color: var(--text-soft);
|
|
1386
1428
|
letter-spacing: 0.02em;
|
|
1387
1429
|
margin: -4px 0 6px;
|
|
1388
1430
|
}
|
|
@@ -1397,11 +1439,11 @@
|
|
|
1397
1439
|
align-items: center;
|
|
1398
1440
|
gap: 8px;
|
|
1399
1441
|
font-size: 12px;
|
|
1400
|
-
color: var(--text-soft
|
|
1442
|
+
color: var(--text-soft);
|
|
1401
1443
|
cursor: pointer;
|
|
1402
1444
|
}
|
|
1403
1445
|
.us-ws-backend-label span {
|
|
1404
|
-
color: var(--text
|
|
1446
|
+
color: var(--text);
|
|
1405
1447
|
}
|
|
1406
1448
|
|
|
1407
1449
|
/* ─── Available models summary + default picker ───
|
|
@@ -1413,16 +1455,16 @@
|
|
|
1413
1455
|
font-size: 10px;
|
|
1414
1456
|
letter-spacing: 0.06em;
|
|
1415
1457
|
padding: 1px 5px;
|
|
1416
|
-
background: var(--panel-2
|
|
1417
|
-
border: 0.5px solid var(--line
|
|
1418
|
-
color: var(--text-soft
|
|
1458
|
+
background: var(--panel-2);
|
|
1459
|
+
border: 0.5px solid var(--line);
|
|
1460
|
+
color: var(--text-soft);
|
|
1419
1461
|
}
|
|
1420
1462
|
.us-models-loading {
|
|
1421
1463
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1422
1464
|
font-size: 10px;
|
|
1423
1465
|
letter-spacing: 0.18em;
|
|
1424
1466
|
text-transform: uppercase;
|
|
1425
|
-
color: var(--text-faint
|
|
1467
|
+
color: var(--text-faint);
|
|
1426
1468
|
padding: 12px 0;
|
|
1427
1469
|
}
|
|
1428
1470
|
.us-models-list {
|
|
@@ -1435,10 +1477,10 @@
|
|
|
1435
1477
|
font-size: 10px;
|
|
1436
1478
|
letter-spacing: 0.22em;
|
|
1437
1479
|
text-transform: uppercase;
|
|
1438
|
-
color: var(--text-faint
|
|
1480
|
+
color: var(--text-faint);
|
|
1439
1481
|
font-weight: 600;
|
|
1440
1482
|
padding-bottom: 6px;
|
|
1441
|
-
border-bottom: 0.5px dashed var(--line
|
|
1483
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1442
1484
|
margin-bottom: 4px;
|
|
1443
1485
|
}
|
|
1444
1486
|
.us-models-rows { display: flex; flex-direction: column; }
|
|
@@ -1448,20 +1490,20 @@
|
|
|
1448
1490
|
gap: 12px;
|
|
1449
1491
|
align-items: baseline;
|
|
1450
1492
|
padding: 6px 0;
|
|
1451
|
-
border-bottom: 0.5px dashed var(--line
|
|
1493
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1452
1494
|
}
|
|
1453
1495
|
.us-models-row:last-child { border-bottom: none; }
|
|
1454
1496
|
.us-models-name {
|
|
1455
1497
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1456
1498
|
font-size: 14px;
|
|
1457
1499
|
font-weight: 700;
|
|
1458
|
-
color: var(--text
|
|
1500
|
+
color: var(--text);
|
|
1459
1501
|
letter-spacing: -0.005em;
|
|
1460
1502
|
}
|
|
1461
1503
|
.us-models-deck {
|
|
1462
1504
|
font-family: var(--font-human);
|
|
1463
1505
|
font-size: 11px;
|
|
1464
|
-
color: var(--text-soft
|
|
1506
|
+
color: var(--text-soft);
|
|
1465
1507
|
line-height: 1.4;
|
|
1466
1508
|
letter-spacing: 0.005em;
|
|
1467
1509
|
}
|
|
@@ -1470,17 +1512,17 @@
|
|
|
1470
1512
|
font-size: 9px;
|
|
1471
1513
|
letter-spacing: 0.18em;
|
|
1472
1514
|
text-transform: uppercase;
|
|
1473
|
-
color: var(--text-soft
|
|
1515
|
+
color: var(--text-soft);
|
|
1474
1516
|
padding: 2px 7px;
|
|
1475
|
-
border: 0.5px solid var(--line
|
|
1476
|
-
background: var(--panel-2
|
|
1517
|
+
border: 0.5px solid var(--line);
|
|
1518
|
+
background: var(--panel-2);
|
|
1477
1519
|
white-space: nowrap;
|
|
1478
1520
|
}
|
|
1479
1521
|
|
|
1480
1522
|
.us-models-default {
|
|
1481
1523
|
margin-top: 14px;
|
|
1482
1524
|
padding-top: 14px;
|
|
1483
|
-
border-top: 0.5px solid var(--line-bright
|
|
1525
|
+
border-top: 0.5px solid var(--line-bright);
|
|
1484
1526
|
display: flex;
|
|
1485
1527
|
flex-direction: column;
|
|
1486
1528
|
gap: 8px;
|
|
@@ -1490,14 +1532,14 @@
|
|
|
1490
1532
|
font-size: 10px;
|
|
1491
1533
|
letter-spacing: 0.22em;
|
|
1492
1534
|
text-transform: uppercase;
|
|
1493
|
-
color: var(--text-faint
|
|
1535
|
+
color: var(--text-faint);
|
|
1494
1536
|
font-weight: 600;
|
|
1495
1537
|
}
|
|
1496
1538
|
.us-models-default-hint {
|
|
1497
1539
|
font-family: var(--font-human);
|
|
1498
1540
|
font-size: 11px;
|
|
1499
1541
|
line-height: 1.55;
|
|
1500
|
-
color: var(--text-soft
|
|
1542
|
+
color: var(--text-soft);
|
|
1501
1543
|
letter-spacing: 0.005em;
|
|
1502
1544
|
}
|
|
1503
1545
|
.us-models-default-wrap { background: var(--panel); }
|
|
@@ -1510,7 +1552,7 @@
|
|
|
1510
1552
|
font-size: 12px;
|
|
1511
1553
|
font-weight: 600;
|
|
1512
1554
|
letter-spacing: 0.005em;
|
|
1513
|
-
color: var(--text
|
|
1555
|
+
color: var(--text);
|
|
1514
1556
|
background: transparent;
|
|
1515
1557
|
border: none;
|
|
1516
1558
|
outline: none;
|
|
@@ -1524,13 +1566,13 @@
|
|
|
1524
1566
|
gap: 10px;
|
|
1525
1567
|
padding: 8px 12px;
|
|
1526
1568
|
background: var(--panel);
|
|
1527
|
-
border: 0.5px solid var(--line-strong
|
|
1569
|
+
border: 0.5px solid var(--line-strong);
|
|
1528
1570
|
}
|
|
1529
1571
|
.us-models-default-name {
|
|
1530
1572
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1531
1573
|
font-size: 14px;
|
|
1532
1574
|
font-weight: 700;
|
|
1533
|
-
color: var(--text
|
|
1575
|
+
color: var(--text);
|
|
1534
1576
|
letter-spacing: -0.005em;
|
|
1535
1577
|
}
|
|
1536
1578
|
.us-models-default-note {
|
|
@@ -1538,7 +1580,7 @@
|
|
|
1538
1580
|
font-size: 10px;
|
|
1539
1581
|
letter-spacing: 0.18em;
|
|
1540
1582
|
text-transform: uppercase;
|
|
1541
|
-
color: var(--text-faint
|
|
1583
|
+
color: var(--text-faint);
|
|
1542
1584
|
}
|
|
1543
1585
|
|
|
1544
1586
|
@media (max-width: 600px) {
|
|
@@ -1550,7 +1592,7 @@
|
|
|
1550
1592
|
key row (e.g. agent-profile's Web Search "Configure key" link). */
|
|
1551
1593
|
@keyframes us-key-flash {
|
|
1552
1594
|
0%, 100% { background: transparent; }
|
|
1553
|
-
50% { background: var(--lime
|
|
1595
|
+
50% { background: var(--lime); }
|
|
1554
1596
|
}
|
|
1555
1597
|
.us-key-row-flash::before {
|
|
1556
1598
|
content: "";
|
|
@@ -1577,10 +1619,10 @@
|
|
|
1577
1619
|
font-size: 9px;
|
|
1578
1620
|
letter-spacing: 0.22em;
|
|
1579
1621
|
text-transform: uppercase;
|
|
1580
|
-
color: var(--text-faint
|
|
1622
|
+
color: var(--text-faint);
|
|
1581
1623
|
font-weight: 600;
|
|
1582
1624
|
padding-bottom: 6px;
|
|
1583
|
-
border-bottom: 0.5px dashed var(--line
|
|
1625
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1584
1626
|
}
|
|
1585
1627
|
.us-default-rows { display: flex; flex-direction: column; }
|
|
1586
1628
|
.us-default-row {
|
|
@@ -1591,7 +1633,7 @@
|
|
|
1591
1633
|
padding: 9px 8px 9px 6px;
|
|
1592
1634
|
background: transparent;
|
|
1593
1635
|
border: none;
|
|
1594
|
-
border-bottom: 0.5px dashed var(--line
|
|
1636
|
+
border-bottom: 0.5px dashed var(--line);
|
|
1595
1637
|
cursor: pointer;
|
|
1596
1638
|
text-align: left;
|
|
1597
1639
|
font: inherit;
|
|
@@ -1599,35 +1641,35 @@
|
|
|
1599
1641
|
transition: background 120ms ease;
|
|
1600
1642
|
}
|
|
1601
1643
|
.us-default-row:last-child { border-bottom: none; }
|
|
1602
|
-
.us-default-row:hover { background: var(--panel-2
|
|
1603
|
-
.us-default-row.active { background: var(--panel-2
|
|
1644
|
+
.us-default-row:hover { background: var(--panel-2); }
|
|
1645
|
+
.us-default-row.active { background: var(--panel-2); }
|
|
1604
1646
|
.us-default-row-mark {
|
|
1605
1647
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1606
1648
|
font-size: 11px;
|
|
1607
|
-
color: var(--text-faint
|
|
1649
|
+
color: var(--text-faint);
|
|
1608
1650
|
line-height: 1.5;
|
|
1609
1651
|
}
|
|
1610
1652
|
.us-default-row.active .us-default-row-mark {
|
|
1611
|
-
color: var(--lime
|
|
1653
|
+
color: var(--lime);
|
|
1612
1654
|
}
|
|
1613
1655
|
.us-default-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
|
|
1614
1656
|
.us-default-row-name {
|
|
1615
1657
|
font-family: var(--mono, "Inter", system-ui, sans-serif);
|
|
1616
1658
|
font-size: 14px;
|
|
1617
1659
|
font-weight: 700;
|
|
1618
|
-
color: var(--text
|
|
1660
|
+
color: var(--text);
|
|
1619
1661
|
letter-spacing: -0.005em;
|
|
1620
1662
|
}
|
|
1621
|
-
.us-default-row.active .us-default-row-name { color: var(--text-bright
|
|
1663
|
+
.us-default-row.active .us-default-row-name { color: var(--text-bright); }
|
|
1622
1664
|
.us-default-row-deck {
|
|
1623
1665
|
font-family: var(--font-human);
|
|
1624
1666
|
font-size: 11px;
|
|
1625
|
-
color: var(--text-soft
|
|
1667
|
+
color: var(--text-soft);
|
|
1626
1668
|
line-height: 1.4;
|
|
1627
1669
|
letter-spacing: 0.005em;
|
|
1628
1670
|
}
|
|
1629
1671
|
.us-link {
|
|
1630
|
-
color: var(--lime
|
|
1672
|
+
color: var(--lime);
|
|
1631
1673
|
text-decoration: underline;
|
|
1632
1674
|
text-decoration-style: dotted;
|
|
1633
1675
|
cursor: pointer;
|