9remote 2.0.26 → 2.0.31
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/cli.cjs +47 -47
- package/dist/install.cjs +1 -1
- package/dist/server.cjs +57 -57
- package/dist/ui/assets/index-Casn8c07.css +1798 -0
- package/dist/ui/assets/index-CzK2QQU8.js +18430 -0
- package/dist/ui/index.html +2 -2
- package/package.json +3 -2
- package/dist/ui/assets/index-BZm3GUhX.js +0 -47
- package/dist/ui/assets/index-UgZubVKT.css +0 -32
|
@@ -0,0 +1,1798 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");/**
|
|
2
|
+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
|
|
3
|
+
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
|
|
4
|
+
* https://github.com/chjj/term.js
|
|
5
|
+
* @license MIT
|
|
6
|
+
*
|
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
* in the Software without restriction, including without limitation the rights
|
|
10
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
* furnished to do so, subject to the following conditions:
|
|
13
|
+
*
|
|
14
|
+
* The above copyright notice and this permission notice shall be included in
|
|
15
|
+
* all copies or substantial portions of the Software.
|
|
16
|
+
*
|
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
|
+
* THE SOFTWARE.
|
|
24
|
+
*
|
|
25
|
+
* Originally forked from (with the author's permission):
|
|
26
|
+
* Fabrice Bellard's javascript vt100 for jslinux:
|
|
27
|
+
* http://bellard.org/jslinux/
|
|
28
|
+
* Copyright (c) 2011 Fabrice Bellard
|
|
29
|
+
* The original design remains. The terminal itself
|
|
30
|
+
* has been extended to include xterm CSI codes, among
|
|
31
|
+
* other features.
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Default styles for xterm.js
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
.xterm {
|
|
39
|
+
cursor: text;
|
|
40
|
+
position: relative;
|
|
41
|
+
-moz-user-select: none;
|
|
42
|
+
user-select: none;
|
|
43
|
+
-ms-user-select: none;
|
|
44
|
+
-webkit-user-select: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.xterm.focus,
|
|
48
|
+
.xterm:focus {
|
|
49
|
+
outline: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.xterm .xterm-helpers {
|
|
53
|
+
position: absolute;
|
|
54
|
+
top: 0;
|
|
55
|
+
/**
|
|
56
|
+
* The z-index of the helpers must be higher than the canvases in order for
|
|
57
|
+
* IMEs to appear on top.
|
|
58
|
+
*/
|
|
59
|
+
z-index: 5;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.xterm .xterm-helper-textarea {
|
|
63
|
+
padding: 0;
|
|
64
|
+
border: 0;
|
|
65
|
+
margin: 0;
|
|
66
|
+
/* Move textarea out of the screen to the far left, so that the cursor is not visible */
|
|
67
|
+
position: absolute;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
left: -9999em;
|
|
70
|
+
top: 0;
|
|
71
|
+
width: 0;
|
|
72
|
+
height: 0;
|
|
73
|
+
z-index: -5;
|
|
74
|
+
/** Prevent wrapping so the IME appears against the textarea at the correct position */
|
|
75
|
+
white-space: nowrap;
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
resize: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.xterm .composition-view {
|
|
81
|
+
/* TODO: Composition position got messed up somewhere */
|
|
82
|
+
background: #000;
|
|
83
|
+
color: #FFF;
|
|
84
|
+
display: none;
|
|
85
|
+
position: absolute;
|
|
86
|
+
white-space: nowrap;
|
|
87
|
+
z-index: 1;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.xterm .composition-view.active {
|
|
91
|
+
display: block;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.xterm .xterm-viewport {
|
|
95
|
+
/* On OS X this is required in order for the scroll bar to appear fully opaque */
|
|
96
|
+
background-color: #000;
|
|
97
|
+
overflow-y: scroll;
|
|
98
|
+
cursor: default;
|
|
99
|
+
position: absolute;
|
|
100
|
+
right: 0;
|
|
101
|
+
left: 0;
|
|
102
|
+
top: 0;
|
|
103
|
+
bottom: 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.xterm .xterm-screen {
|
|
107
|
+
position: relative;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.xterm .xterm-screen canvas {
|
|
111
|
+
position: absolute;
|
|
112
|
+
left: 0;
|
|
113
|
+
top: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.xterm-char-measure-element {
|
|
117
|
+
display: inline-block;
|
|
118
|
+
visibility: hidden;
|
|
119
|
+
position: absolute;
|
|
120
|
+
top: 0;
|
|
121
|
+
left: -9999em;
|
|
122
|
+
line-height: normal;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.xterm.enable-mouse-events {
|
|
126
|
+
/* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
|
|
127
|
+
cursor: default;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.xterm.xterm-cursor-pointer,
|
|
131
|
+
.xterm .xterm-cursor-pointer {
|
|
132
|
+
cursor: pointer;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.xterm.column-select.focus {
|
|
136
|
+
/* Column selection mode */
|
|
137
|
+
cursor: crosshair;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.xterm .xterm-accessibility:not(.debug),
|
|
141
|
+
.xterm .xterm-message {
|
|
142
|
+
position: absolute;
|
|
143
|
+
left: 0;
|
|
144
|
+
top: 0;
|
|
145
|
+
bottom: 0;
|
|
146
|
+
right: 0;
|
|
147
|
+
z-index: 10;
|
|
148
|
+
color: transparent;
|
|
149
|
+
pointer-events: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.xterm .xterm-accessibility-tree:not(.debug) *::-moz-selection {
|
|
153
|
+
color: transparent;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.xterm .xterm-accessibility-tree:not(.debug) *::selection {
|
|
157
|
+
color: transparent;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.xterm .xterm-accessibility-tree {
|
|
161
|
+
font-family: monospace;
|
|
162
|
+
-webkit-user-select: text;
|
|
163
|
+
-moz-user-select: text;
|
|
164
|
+
user-select: text;
|
|
165
|
+
white-space: pre;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.xterm .xterm-accessibility-tree > div {
|
|
169
|
+
transform-origin: left;
|
|
170
|
+
width: -moz-fit-content;
|
|
171
|
+
width: fit-content;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.xterm .live-region {
|
|
175
|
+
position: absolute;
|
|
176
|
+
left: -9999px;
|
|
177
|
+
width: 1px;
|
|
178
|
+
height: 1px;
|
|
179
|
+
overflow: hidden;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.xterm-dim {
|
|
183
|
+
/* Dim should not apply to background, so the opacity of the foreground color is applied
|
|
184
|
+
* explicitly in the generated class and reset to 1 here */
|
|
185
|
+
opacity: 1 !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.xterm-underline-1 { text-decoration: underline; }
|
|
189
|
+
.xterm-underline-2 { -webkit-text-decoration: double underline; text-decoration: double underline; }
|
|
190
|
+
.xterm-underline-3 { -webkit-text-decoration: wavy underline; text-decoration: wavy underline; }
|
|
191
|
+
.xterm-underline-4 { -webkit-text-decoration: dotted underline; text-decoration: dotted underline; }
|
|
192
|
+
.xterm-underline-5 { -webkit-text-decoration: dashed underline; text-decoration: dashed underline; }
|
|
193
|
+
|
|
194
|
+
.xterm-overline {
|
|
195
|
+
text-decoration: overline;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.xterm-overline.xterm-underline-1 { text-decoration: overline underline; }
|
|
199
|
+
.xterm-overline.xterm-underline-2 { -webkit-text-decoration: overline double underline; text-decoration: overline double underline; }
|
|
200
|
+
.xterm-overline.xterm-underline-3 { -webkit-text-decoration: overline wavy underline; text-decoration: overline wavy underline; }
|
|
201
|
+
.xterm-overline.xterm-underline-4 { -webkit-text-decoration: overline dotted underline; text-decoration: overline dotted underline; }
|
|
202
|
+
.xterm-overline.xterm-underline-5 { -webkit-text-decoration: overline dashed underline; text-decoration: overline dashed underline; }
|
|
203
|
+
|
|
204
|
+
.xterm-strikethrough {
|
|
205
|
+
text-decoration: line-through;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration {
|
|
209
|
+
z-index: 6;
|
|
210
|
+
position: absolute;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
|
|
214
|
+
z-index: 7;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.xterm-decoration-overview-ruler {
|
|
218
|
+
z-index: 8;
|
|
219
|
+
position: absolute;
|
|
220
|
+
top: 0;
|
|
221
|
+
right: 0;
|
|
222
|
+
pointer-events: none;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.xterm-decoration-top {
|
|
226
|
+
z-index: 2;
|
|
227
|
+
position: relative;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
/* Derived from vs/base/browser/ui/scrollbar/media/scrollbar.css */
|
|
233
|
+
|
|
234
|
+
/* xterm.js customization: Override xterm's cursor style */
|
|
235
|
+
.xterm .xterm-scrollable-element > .scrollbar {
|
|
236
|
+
cursor: default;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* Arrows */
|
|
240
|
+
.xterm .xterm-scrollable-element > .scrollbar > .scra {
|
|
241
|
+
cursor: pointer;
|
|
242
|
+
font-size: 11px !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.xterm .xterm-scrollable-element > .visible {
|
|
246
|
+
opacity: 1;
|
|
247
|
+
|
|
248
|
+
/* Background rule added for IE9 - to allow clicks on dom node */
|
|
249
|
+
background:rgba(0,0,0,0);
|
|
250
|
+
|
|
251
|
+
transition: opacity 100ms linear;
|
|
252
|
+
/* In front of peek view */
|
|
253
|
+
z-index: 11;
|
|
254
|
+
}
|
|
255
|
+
.xterm .xterm-scrollable-element > .invisible {
|
|
256
|
+
opacity: 0;
|
|
257
|
+
pointer-events: none;
|
|
258
|
+
}
|
|
259
|
+
.xterm .xterm-scrollable-element > .invisible.fade {
|
|
260
|
+
transition: opacity 800ms linear;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/* Scrollable Content Inset Shadow */
|
|
264
|
+
.xterm .xterm-scrollable-element > .shadow {
|
|
265
|
+
position: absolute;
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
.xterm .xterm-scrollable-element > .shadow.top {
|
|
269
|
+
display: block;
|
|
270
|
+
top: 0;
|
|
271
|
+
left: 3px;
|
|
272
|
+
height: 3px;
|
|
273
|
+
width: 100%;
|
|
274
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 0 6px 6px -6px inset;
|
|
275
|
+
}
|
|
276
|
+
.xterm .xterm-scrollable-element > .shadow.left {
|
|
277
|
+
display: block;
|
|
278
|
+
top: 3px;
|
|
279
|
+
left: 0;
|
|
280
|
+
height: 100%;
|
|
281
|
+
width: 3px;
|
|
282
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
|
|
283
|
+
}
|
|
284
|
+
.xterm .xterm-scrollable-element > .shadow.top-left-corner {
|
|
285
|
+
display: block;
|
|
286
|
+
top: 0;
|
|
287
|
+
left: 0;
|
|
288
|
+
height: 3px;
|
|
289
|
+
width: 3px;
|
|
290
|
+
}
|
|
291
|
+
.xterm .xterm-scrollable-element > .shadow.top.left {
|
|
292
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
*, ::before, ::after{
|
|
298
|
+
--tw-border-spacing-x: 0;
|
|
299
|
+
--tw-border-spacing-y: 0;
|
|
300
|
+
--tw-translate-x: 0;
|
|
301
|
+
--tw-translate-y: 0;
|
|
302
|
+
--tw-rotate: 0;
|
|
303
|
+
--tw-skew-x: 0;
|
|
304
|
+
--tw-skew-y: 0;
|
|
305
|
+
--tw-scale-x: 1;
|
|
306
|
+
--tw-scale-y: 1;
|
|
307
|
+
--tw-pan-x: ;
|
|
308
|
+
--tw-pan-y: ;
|
|
309
|
+
--tw-pinch-zoom: ;
|
|
310
|
+
--tw-scroll-snap-strictness: proximity;
|
|
311
|
+
--tw-gradient-from-position: ;
|
|
312
|
+
--tw-gradient-via-position: ;
|
|
313
|
+
--tw-gradient-to-position: ;
|
|
314
|
+
--tw-ordinal: ;
|
|
315
|
+
--tw-slashed-zero: ;
|
|
316
|
+
--tw-numeric-figure: ;
|
|
317
|
+
--tw-numeric-spacing: ;
|
|
318
|
+
--tw-numeric-fraction: ;
|
|
319
|
+
--tw-ring-inset: ;
|
|
320
|
+
--tw-ring-offset-width: 0px;
|
|
321
|
+
--tw-ring-offset-color: #fff;
|
|
322
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
323
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
324
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
325
|
+
--tw-shadow: 0 0 #0000;
|
|
326
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
327
|
+
--tw-blur: ;
|
|
328
|
+
--tw-brightness: ;
|
|
329
|
+
--tw-contrast: ;
|
|
330
|
+
--tw-grayscale: ;
|
|
331
|
+
--tw-hue-rotate: ;
|
|
332
|
+
--tw-invert: ;
|
|
333
|
+
--tw-saturate: ;
|
|
334
|
+
--tw-sepia: ;
|
|
335
|
+
--tw-drop-shadow: ;
|
|
336
|
+
--tw-backdrop-blur: ;
|
|
337
|
+
--tw-backdrop-brightness: ;
|
|
338
|
+
--tw-backdrop-contrast: ;
|
|
339
|
+
--tw-backdrop-grayscale: ;
|
|
340
|
+
--tw-backdrop-hue-rotate: ;
|
|
341
|
+
--tw-backdrop-invert: ;
|
|
342
|
+
--tw-backdrop-opacity: ;
|
|
343
|
+
--tw-backdrop-saturate: ;
|
|
344
|
+
--tw-backdrop-sepia: ;
|
|
345
|
+
--tw-contain-size: ;
|
|
346
|
+
--tw-contain-layout: ;
|
|
347
|
+
--tw-contain-paint: ;
|
|
348
|
+
--tw-contain-style: ;
|
|
349
|
+
}
|
|
350
|
+
::backdrop{
|
|
351
|
+
--tw-border-spacing-x: 0;
|
|
352
|
+
--tw-border-spacing-y: 0;
|
|
353
|
+
--tw-translate-x: 0;
|
|
354
|
+
--tw-translate-y: 0;
|
|
355
|
+
--tw-rotate: 0;
|
|
356
|
+
--tw-skew-x: 0;
|
|
357
|
+
--tw-skew-y: 0;
|
|
358
|
+
--tw-scale-x: 1;
|
|
359
|
+
--tw-scale-y: 1;
|
|
360
|
+
--tw-pan-x: ;
|
|
361
|
+
--tw-pan-y: ;
|
|
362
|
+
--tw-pinch-zoom: ;
|
|
363
|
+
--tw-scroll-snap-strictness: proximity;
|
|
364
|
+
--tw-gradient-from-position: ;
|
|
365
|
+
--tw-gradient-via-position: ;
|
|
366
|
+
--tw-gradient-to-position: ;
|
|
367
|
+
--tw-ordinal: ;
|
|
368
|
+
--tw-slashed-zero: ;
|
|
369
|
+
--tw-numeric-figure: ;
|
|
370
|
+
--tw-numeric-spacing: ;
|
|
371
|
+
--tw-numeric-fraction: ;
|
|
372
|
+
--tw-ring-inset: ;
|
|
373
|
+
--tw-ring-offset-width: 0px;
|
|
374
|
+
--tw-ring-offset-color: #fff;
|
|
375
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
376
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
377
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
378
|
+
--tw-shadow: 0 0 #0000;
|
|
379
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
380
|
+
--tw-blur: ;
|
|
381
|
+
--tw-brightness: ;
|
|
382
|
+
--tw-contrast: ;
|
|
383
|
+
--tw-grayscale: ;
|
|
384
|
+
--tw-hue-rotate: ;
|
|
385
|
+
--tw-invert: ;
|
|
386
|
+
--tw-saturate: ;
|
|
387
|
+
--tw-sepia: ;
|
|
388
|
+
--tw-drop-shadow: ;
|
|
389
|
+
--tw-backdrop-blur: ;
|
|
390
|
+
--tw-backdrop-brightness: ;
|
|
391
|
+
--tw-backdrop-contrast: ;
|
|
392
|
+
--tw-backdrop-grayscale: ;
|
|
393
|
+
--tw-backdrop-hue-rotate: ;
|
|
394
|
+
--tw-backdrop-invert: ;
|
|
395
|
+
--tw-backdrop-opacity: ;
|
|
396
|
+
--tw-backdrop-saturate: ;
|
|
397
|
+
--tw-backdrop-sepia: ;
|
|
398
|
+
--tw-contain-size: ;
|
|
399
|
+
--tw-contain-layout: ;
|
|
400
|
+
--tw-contain-paint: ;
|
|
401
|
+
--tw-contain-style: ;
|
|
402
|
+
}
|
|
403
|
+
/*
|
|
404
|
+
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
|
|
405
|
+
*/
|
|
406
|
+
/*
|
|
407
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
408
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
409
|
+
*/
|
|
410
|
+
*,
|
|
411
|
+
::before,
|
|
412
|
+
::after {
|
|
413
|
+
box-sizing: border-box; /* 1 */
|
|
414
|
+
border-width: 0; /* 2 */
|
|
415
|
+
border-style: solid; /* 2 */
|
|
416
|
+
border-color: #e5e7eb; /* 2 */
|
|
417
|
+
}
|
|
418
|
+
::before,
|
|
419
|
+
::after {
|
|
420
|
+
--tw-content: '';
|
|
421
|
+
}
|
|
422
|
+
/*
|
|
423
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
424
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
425
|
+
3. Use a more readable tab size.
|
|
426
|
+
4. Use the user's configured `sans` font-family by default.
|
|
427
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
428
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
|
429
|
+
7. Disable tap highlights on iOS
|
|
430
|
+
*/
|
|
431
|
+
html,
|
|
432
|
+
:host {
|
|
433
|
+
line-height: 1.5; /* 1 */
|
|
434
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
435
|
+
-moz-tab-size: 4; /* 3 */
|
|
436
|
+
-o-tab-size: 4;
|
|
437
|
+
tab-size: 4; /* 3 */
|
|
438
|
+
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
|
|
439
|
+
font-feature-settings: normal; /* 5 */
|
|
440
|
+
font-variation-settings: normal; /* 6 */
|
|
441
|
+
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
442
|
+
}
|
|
443
|
+
/*
|
|
444
|
+
1. Remove the margin in all browsers.
|
|
445
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
446
|
+
*/
|
|
447
|
+
body {
|
|
448
|
+
margin: 0; /* 1 */
|
|
449
|
+
line-height: inherit; /* 2 */
|
|
450
|
+
}
|
|
451
|
+
/*
|
|
452
|
+
1. Add the correct height in Firefox.
|
|
453
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
454
|
+
3. Ensure horizontal rules are visible by default.
|
|
455
|
+
*/
|
|
456
|
+
hr {
|
|
457
|
+
height: 0; /* 1 */
|
|
458
|
+
color: inherit; /* 2 */
|
|
459
|
+
border-top-width: 1px; /* 3 */
|
|
460
|
+
}
|
|
461
|
+
/*
|
|
462
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
463
|
+
*/
|
|
464
|
+
abbr:where([title]) {
|
|
465
|
+
-webkit-text-decoration: underline dotted;
|
|
466
|
+
text-decoration: underline dotted;
|
|
467
|
+
}
|
|
468
|
+
/*
|
|
469
|
+
Remove the default font size and weight for headings.
|
|
470
|
+
*/
|
|
471
|
+
h1,
|
|
472
|
+
h2,
|
|
473
|
+
h3,
|
|
474
|
+
h4,
|
|
475
|
+
h5,
|
|
476
|
+
h6 {
|
|
477
|
+
font-size: inherit;
|
|
478
|
+
font-weight: inherit;
|
|
479
|
+
}
|
|
480
|
+
/*
|
|
481
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
|
482
|
+
*/
|
|
483
|
+
a {
|
|
484
|
+
color: inherit;
|
|
485
|
+
text-decoration: inherit;
|
|
486
|
+
}
|
|
487
|
+
/*
|
|
488
|
+
Add the correct font weight in Edge and Safari.
|
|
489
|
+
*/
|
|
490
|
+
b,
|
|
491
|
+
strong {
|
|
492
|
+
font-weight: bolder;
|
|
493
|
+
}
|
|
494
|
+
/*
|
|
495
|
+
1. Use the user's configured `mono` font-family by default.
|
|
496
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
|
497
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
|
498
|
+
4. Correct the odd `em` font sizing in all browsers.
|
|
499
|
+
*/
|
|
500
|
+
code,
|
|
501
|
+
kbd,
|
|
502
|
+
samp,
|
|
503
|
+
pre {
|
|
504
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
505
|
+
font-feature-settings: normal; /* 2 */
|
|
506
|
+
font-variation-settings: normal; /* 3 */
|
|
507
|
+
font-size: 1em; /* 4 */
|
|
508
|
+
}
|
|
509
|
+
/*
|
|
510
|
+
Add the correct font size in all browsers.
|
|
511
|
+
*/
|
|
512
|
+
small {
|
|
513
|
+
font-size: 80%;
|
|
514
|
+
}
|
|
515
|
+
/*
|
|
516
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
517
|
+
*/
|
|
518
|
+
sub,
|
|
519
|
+
sup {
|
|
520
|
+
font-size: 75%;
|
|
521
|
+
line-height: 0;
|
|
522
|
+
position: relative;
|
|
523
|
+
vertical-align: baseline;
|
|
524
|
+
}
|
|
525
|
+
sub {
|
|
526
|
+
bottom: -0.25em;
|
|
527
|
+
}
|
|
528
|
+
sup {
|
|
529
|
+
top: -0.5em;
|
|
530
|
+
}
|
|
531
|
+
/*
|
|
532
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
533
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
534
|
+
3. Remove gaps between table borders by default.
|
|
535
|
+
*/
|
|
536
|
+
table {
|
|
537
|
+
text-indent: 0; /* 1 */
|
|
538
|
+
border-color: inherit; /* 2 */
|
|
539
|
+
border-collapse: collapse; /* 3 */
|
|
540
|
+
}
|
|
541
|
+
/*
|
|
542
|
+
1. Change the font styles in all browsers.
|
|
543
|
+
2. Remove the margin in Firefox and Safari.
|
|
544
|
+
3. Remove default padding in all browsers.
|
|
545
|
+
*/
|
|
546
|
+
button,
|
|
547
|
+
input,
|
|
548
|
+
optgroup,
|
|
549
|
+
select,
|
|
550
|
+
textarea {
|
|
551
|
+
font-family: inherit; /* 1 */
|
|
552
|
+
font-feature-settings: inherit; /* 1 */
|
|
553
|
+
font-variation-settings: inherit; /* 1 */
|
|
554
|
+
font-size: 100%; /* 1 */
|
|
555
|
+
font-weight: inherit; /* 1 */
|
|
556
|
+
line-height: inherit; /* 1 */
|
|
557
|
+
letter-spacing: inherit; /* 1 */
|
|
558
|
+
color: inherit; /* 1 */
|
|
559
|
+
margin: 0; /* 2 */
|
|
560
|
+
padding: 0; /* 3 */
|
|
561
|
+
}
|
|
562
|
+
/*
|
|
563
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
564
|
+
*/
|
|
565
|
+
button,
|
|
566
|
+
select {
|
|
567
|
+
text-transform: none;
|
|
568
|
+
}
|
|
569
|
+
/*
|
|
570
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
571
|
+
2. Remove default button styles.
|
|
572
|
+
*/
|
|
573
|
+
button,
|
|
574
|
+
input:where([type='button']),
|
|
575
|
+
input:where([type='reset']),
|
|
576
|
+
input:where([type='submit']) {
|
|
577
|
+
-webkit-appearance: button; /* 1 */
|
|
578
|
+
background-color: transparent; /* 2 */
|
|
579
|
+
background-image: none; /* 2 */
|
|
580
|
+
}
|
|
581
|
+
/*
|
|
582
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
583
|
+
*/
|
|
584
|
+
:-moz-focusring {
|
|
585
|
+
outline: auto;
|
|
586
|
+
}
|
|
587
|
+
/*
|
|
588
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
589
|
+
*/
|
|
590
|
+
:-moz-ui-invalid {
|
|
591
|
+
box-shadow: none;
|
|
592
|
+
}
|
|
593
|
+
/*
|
|
594
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
595
|
+
*/
|
|
596
|
+
progress {
|
|
597
|
+
vertical-align: baseline;
|
|
598
|
+
}
|
|
599
|
+
/*
|
|
600
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
601
|
+
*/
|
|
602
|
+
::-webkit-inner-spin-button,
|
|
603
|
+
::-webkit-outer-spin-button {
|
|
604
|
+
height: auto;
|
|
605
|
+
}
|
|
606
|
+
/*
|
|
607
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
608
|
+
2. Correct the outline style in Safari.
|
|
609
|
+
*/
|
|
610
|
+
[type='search'] {
|
|
611
|
+
-webkit-appearance: textfield; /* 1 */
|
|
612
|
+
outline-offset: -2px; /* 2 */
|
|
613
|
+
}
|
|
614
|
+
/*
|
|
615
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
616
|
+
*/
|
|
617
|
+
::-webkit-search-decoration {
|
|
618
|
+
-webkit-appearance: none;
|
|
619
|
+
}
|
|
620
|
+
/*
|
|
621
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
622
|
+
2. Change font properties to `inherit` in Safari.
|
|
623
|
+
*/
|
|
624
|
+
::-webkit-file-upload-button {
|
|
625
|
+
-webkit-appearance: button; /* 1 */
|
|
626
|
+
font: inherit; /* 2 */
|
|
627
|
+
}
|
|
628
|
+
/*
|
|
629
|
+
Add the correct display in Chrome and Safari.
|
|
630
|
+
*/
|
|
631
|
+
summary {
|
|
632
|
+
display: list-item;
|
|
633
|
+
}
|
|
634
|
+
/*
|
|
635
|
+
Removes the default spacing and border for appropriate elements.
|
|
636
|
+
*/
|
|
637
|
+
blockquote,
|
|
638
|
+
dl,
|
|
639
|
+
dd,
|
|
640
|
+
h1,
|
|
641
|
+
h2,
|
|
642
|
+
h3,
|
|
643
|
+
h4,
|
|
644
|
+
h5,
|
|
645
|
+
h6,
|
|
646
|
+
hr,
|
|
647
|
+
figure,
|
|
648
|
+
p,
|
|
649
|
+
pre {
|
|
650
|
+
margin: 0;
|
|
651
|
+
}
|
|
652
|
+
fieldset {
|
|
653
|
+
margin: 0;
|
|
654
|
+
padding: 0;
|
|
655
|
+
}
|
|
656
|
+
legend {
|
|
657
|
+
padding: 0;
|
|
658
|
+
}
|
|
659
|
+
ol,
|
|
660
|
+
ul,
|
|
661
|
+
menu {
|
|
662
|
+
list-style: none;
|
|
663
|
+
margin: 0;
|
|
664
|
+
padding: 0;
|
|
665
|
+
}
|
|
666
|
+
/*
|
|
667
|
+
Reset default styling for dialogs.
|
|
668
|
+
*/
|
|
669
|
+
dialog {
|
|
670
|
+
padding: 0;
|
|
671
|
+
}
|
|
672
|
+
/*
|
|
673
|
+
Prevent resizing textareas horizontally by default.
|
|
674
|
+
*/
|
|
675
|
+
textarea {
|
|
676
|
+
resize: vertical;
|
|
677
|
+
}
|
|
678
|
+
/*
|
|
679
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
680
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
681
|
+
*/
|
|
682
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
683
|
+
opacity: 1; /* 1 */
|
|
684
|
+
color: #9ca3af; /* 2 */
|
|
685
|
+
}
|
|
686
|
+
input::placeholder,
|
|
687
|
+
textarea::placeholder {
|
|
688
|
+
opacity: 1; /* 1 */
|
|
689
|
+
color: #9ca3af; /* 2 */
|
|
690
|
+
}
|
|
691
|
+
/*
|
|
692
|
+
Set the default cursor for buttons.
|
|
693
|
+
*/
|
|
694
|
+
button,
|
|
695
|
+
[role="button"] {
|
|
696
|
+
cursor: pointer;
|
|
697
|
+
}
|
|
698
|
+
/*
|
|
699
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
700
|
+
*/
|
|
701
|
+
:disabled {
|
|
702
|
+
cursor: default;
|
|
703
|
+
}
|
|
704
|
+
/*
|
|
705
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
706
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
707
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
708
|
+
*/
|
|
709
|
+
img,
|
|
710
|
+
svg,
|
|
711
|
+
video,
|
|
712
|
+
canvas,
|
|
713
|
+
audio,
|
|
714
|
+
iframe,
|
|
715
|
+
embed,
|
|
716
|
+
object {
|
|
717
|
+
display: block; /* 1 */
|
|
718
|
+
vertical-align: middle; /* 2 */
|
|
719
|
+
}
|
|
720
|
+
/*
|
|
721
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
722
|
+
*/
|
|
723
|
+
img,
|
|
724
|
+
video {
|
|
725
|
+
max-width: 100%;
|
|
726
|
+
height: auto;
|
|
727
|
+
}
|
|
728
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
729
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
730
|
+
display: none;
|
|
731
|
+
}
|
|
732
|
+
* {
|
|
733
|
+
box-sizing: border-box;
|
|
734
|
+
margin: 0;
|
|
735
|
+
padding: 0;
|
|
736
|
+
}
|
|
737
|
+
html,
|
|
738
|
+
body,
|
|
739
|
+
#root {
|
|
740
|
+
height: 100%;
|
|
741
|
+
width: 100%;
|
|
742
|
+
overflow: hidden;
|
|
743
|
+
}
|
|
744
|
+
body {
|
|
745
|
+
font-family: "Inter", sans-serif;
|
|
746
|
+
background-color: var(--bg-main);
|
|
747
|
+
color: var(--text-main);
|
|
748
|
+
-webkit-font-smoothing: antialiased;
|
|
749
|
+
-webkit-user-select: text;
|
|
750
|
+
-moz-user-select: text;
|
|
751
|
+
user-select: text;
|
|
752
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
753
|
+
}
|
|
754
|
+
input, textarea {
|
|
755
|
+
accent-color: var(--brand-500);
|
|
756
|
+
}
|
|
757
|
+
button {
|
|
758
|
+
-webkit-user-select: none;
|
|
759
|
+
-moz-user-select: none;
|
|
760
|
+
user-select: none;
|
|
761
|
+
}
|
|
762
|
+
.\!container{
|
|
763
|
+
width: 100% !important;
|
|
764
|
+
}
|
|
765
|
+
.container{
|
|
766
|
+
width: 100%;
|
|
767
|
+
}
|
|
768
|
+
@media (min-width: 640px){
|
|
769
|
+
.\!container{
|
|
770
|
+
max-width: 640px !important;
|
|
771
|
+
}
|
|
772
|
+
.container{
|
|
773
|
+
max-width: 640px;
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
@media (min-width: 768px){
|
|
777
|
+
.\!container{
|
|
778
|
+
max-width: 768px !important;
|
|
779
|
+
}
|
|
780
|
+
.container{
|
|
781
|
+
max-width: 768px;
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
@media (min-width: 1024px){
|
|
785
|
+
.\!container{
|
|
786
|
+
max-width: 1024px !important;
|
|
787
|
+
}
|
|
788
|
+
.container{
|
|
789
|
+
max-width: 1024px;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
@media (min-width: 1280px){
|
|
793
|
+
.\!container{
|
|
794
|
+
max-width: 1280px !important;
|
|
795
|
+
}
|
|
796
|
+
.container{
|
|
797
|
+
max-width: 1280px;
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
@media (min-width: 1536px){
|
|
801
|
+
.\!container{
|
|
802
|
+
max-width: 1536px !important;
|
|
803
|
+
}
|
|
804
|
+
.container{
|
|
805
|
+
max-width: 1536px;
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
/* Clean background */
|
|
809
|
+
.dot-grid-bg {
|
|
810
|
+
background: var(--bg-main);
|
|
811
|
+
transition: background-color 0.3s ease;
|
|
812
|
+
}
|
|
813
|
+
/* Faint grid overlay — synced with web landing grid (absolute inside relative parent) */
|
|
814
|
+
.landing-grid {
|
|
815
|
+
background-image:
|
|
816
|
+
linear-gradient(to right, var(--brand-500) 1px, transparent 1px),
|
|
817
|
+
linear-gradient(to bottom, var(--brand-500) 1px, transparent 1px);
|
|
818
|
+
background-size: 40px 40px;
|
|
819
|
+
opacity: var(--grid-opacity, 0.05);
|
|
820
|
+
}
|
|
821
|
+
/* Dark card — synced with web login card */
|
|
822
|
+
.dark-card {
|
|
823
|
+
background: var(--surface);
|
|
824
|
+
border: 1px solid var(--border);
|
|
825
|
+
border-radius: var(--radius-brand);
|
|
826
|
+
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
827
|
+
}
|
|
828
|
+
/* Glass card — kept for backward compat */
|
|
829
|
+
.glass-card {
|
|
830
|
+
background: var(--glass-bg);
|
|
831
|
+
border: 1px solid var(--glass-border);
|
|
832
|
+
border-radius: var(--radius-brand);
|
|
833
|
+
backdrop-filter: blur(10px);
|
|
834
|
+
transition: all 0.3s ease;
|
|
835
|
+
}
|
|
836
|
+
.glass-btn {
|
|
837
|
+
background: var(--glass-bg);
|
|
838
|
+
border: 1px solid var(--glass-border);
|
|
839
|
+
border-radius: 8px;
|
|
840
|
+
transition: all 0.2s ease;
|
|
841
|
+
}
|
|
842
|
+
.glass-btn:hover {
|
|
843
|
+
background: var(--glass-hover);
|
|
844
|
+
border-color: var(--border);
|
|
845
|
+
}
|
|
846
|
+
.btn-primary {
|
|
847
|
+
background: var(--brand-500);
|
|
848
|
+
border-radius: var(--radius-brand);
|
|
849
|
+
color: #fff;
|
|
850
|
+
font-weight: 600;
|
|
851
|
+
transition: all 0.2s ease;
|
|
852
|
+
box-shadow: 0 4px 16px rgba(229, 106, 74, 0.2);
|
|
853
|
+
}
|
|
854
|
+
.btn-primary:hover {
|
|
855
|
+
background: var(--brand-600);
|
|
856
|
+
transform: scale(1.02);
|
|
857
|
+
}
|
|
858
|
+
.btn-primary:disabled {
|
|
859
|
+
background: rgba(229, 106, 74, 0.3);
|
|
860
|
+
cursor: not-allowed;
|
|
861
|
+
transform: none;
|
|
862
|
+
box-shadow: none;
|
|
863
|
+
}
|
|
864
|
+
.btn-danger {
|
|
865
|
+
background: rgba(220, 53, 69, 0.12);
|
|
866
|
+
border: 1px solid rgba(220, 53, 69, 0.25);
|
|
867
|
+
border-radius: var(--radius-brand);
|
|
868
|
+
color: #ff6b7a;
|
|
869
|
+
font-weight: 600;
|
|
870
|
+
transition: all 0.2s ease;
|
|
871
|
+
}
|
|
872
|
+
.btn-danger:hover {
|
|
873
|
+
background: rgba(220, 53, 69, 0.22);
|
|
874
|
+
border-color: rgba(220, 53, 69, 0.4);
|
|
875
|
+
}
|
|
876
|
+
/* Sidebar — 9router pattern: vibrancy bg + right border */
|
|
877
|
+
.sidebar {
|
|
878
|
+
background: var(--sidebar);
|
|
879
|
+
border-right: 1px solid var(--border-subtle);
|
|
880
|
+
backdrop-filter: blur(20px);
|
|
881
|
+
}
|
|
882
|
+
.brand-text {
|
|
883
|
+
font-family: "Press Start 2P", monospace;
|
|
884
|
+
color: var(--brand-500);
|
|
885
|
+
letter-spacing: 0.05em;
|
|
886
|
+
}
|
|
887
|
+
.material-symbols-outlined {
|
|
888
|
+
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
|
|
889
|
+
}
|
|
890
|
+
/* Filled icon variant for active nav (9router) */
|
|
891
|
+
.fill-1 {
|
|
892
|
+
font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
|
|
893
|
+
}
|
|
894
|
+
.pointer-events-none{
|
|
895
|
+
pointer-events: none;
|
|
896
|
+
}
|
|
897
|
+
.visible{
|
|
898
|
+
visibility: visible;
|
|
899
|
+
}
|
|
900
|
+
.collapse{
|
|
901
|
+
visibility: collapse;
|
|
902
|
+
}
|
|
903
|
+
.static{
|
|
904
|
+
position: static;
|
|
905
|
+
}
|
|
906
|
+
.fixed{
|
|
907
|
+
position: fixed;
|
|
908
|
+
}
|
|
909
|
+
.absolute{
|
|
910
|
+
position: absolute;
|
|
911
|
+
}
|
|
912
|
+
.relative{
|
|
913
|
+
position: relative;
|
|
914
|
+
}
|
|
915
|
+
.sticky{
|
|
916
|
+
position: sticky;
|
|
917
|
+
}
|
|
918
|
+
.inset-0{
|
|
919
|
+
inset: 0px;
|
|
920
|
+
}
|
|
921
|
+
.inset-y-0{
|
|
922
|
+
top: 0px;
|
|
923
|
+
bottom: 0px;
|
|
924
|
+
}
|
|
925
|
+
.bottom-5{
|
|
926
|
+
bottom: 1.25rem;
|
|
927
|
+
}
|
|
928
|
+
.left-0{
|
|
929
|
+
left: 0px;
|
|
930
|
+
}
|
|
931
|
+
.right-0{
|
|
932
|
+
right: 0px;
|
|
933
|
+
}
|
|
934
|
+
.right-2{
|
|
935
|
+
right: 0.5rem;
|
|
936
|
+
}
|
|
937
|
+
.right-7{
|
|
938
|
+
right: 1.75rem;
|
|
939
|
+
}
|
|
940
|
+
.top-0{
|
|
941
|
+
top: 0px;
|
|
942
|
+
}
|
|
943
|
+
.top-0\.5{
|
|
944
|
+
top: 0.125rem;
|
|
945
|
+
}
|
|
946
|
+
.top-1\/2{
|
|
947
|
+
top: 50%;
|
|
948
|
+
}
|
|
949
|
+
.top-full{
|
|
950
|
+
top: 100%;
|
|
951
|
+
}
|
|
952
|
+
.isolate{
|
|
953
|
+
isolation: isolate;
|
|
954
|
+
}
|
|
955
|
+
.-z-10{
|
|
956
|
+
z-index: -10;
|
|
957
|
+
}
|
|
958
|
+
.z-0{
|
|
959
|
+
z-index: 0;
|
|
960
|
+
}
|
|
961
|
+
.z-10{
|
|
962
|
+
z-index: 10;
|
|
963
|
+
}
|
|
964
|
+
.z-20{
|
|
965
|
+
z-index: 20;
|
|
966
|
+
}
|
|
967
|
+
.z-30{
|
|
968
|
+
z-index: 30;
|
|
969
|
+
}
|
|
970
|
+
.z-40{
|
|
971
|
+
z-index: 40;
|
|
972
|
+
}
|
|
973
|
+
.z-50{
|
|
974
|
+
z-index: 50;
|
|
975
|
+
}
|
|
976
|
+
.z-\[60\]{
|
|
977
|
+
z-index: 60;
|
|
978
|
+
}
|
|
979
|
+
.mx-auto{
|
|
980
|
+
margin-left: auto;
|
|
981
|
+
margin-right: auto;
|
|
982
|
+
}
|
|
983
|
+
.mb-1{
|
|
984
|
+
margin-bottom: 0.25rem;
|
|
985
|
+
}
|
|
986
|
+
.mb-2{
|
|
987
|
+
margin-bottom: 0.5rem;
|
|
988
|
+
}
|
|
989
|
+
.mb-3{
|
|
990
|
+
margin-bottom: 0.75rem;
|
|
991
|
+
}
|
|
992
|
+
.mb-4{
|
|
993
|
+
margin-bottom: 1rem;
|
|
994
|
+
}
|
|
995
|
+
.ml-1{
|
|
996
|
+
margin-left: 0.25rem;
|
|
997
|
+
}
|
|
998
|
+
.mt-0\.5{
|
|
999
|
+
margin-top: 0.125rem;
|
|
1000
|
+
}
|
|
1001
|
+
.mt-1{
|
|
1002
|
+
margin-top: 0.25rem;
|
|
1003
|
+
}
|
|
1004
|
+
.mt-8{
|
|
1005
|
+
margin-top: 2rem;
|
|
1006
|
+
}
|
|
1007
|
+
.block{
|
|
1008
|
+
display: block;
|
|
1009
|
+
}
|
|
1010
|
+
.inline{
|
|
1011
|
+
display: inline;
|
|
1012
|
+
}
|
|
1013
|
+
.flex{
|
|
1014
|
+
display: flex;
|
|
1015
|
+
}
|
|
1016
|
+
.inline-flex{
|
|
1017
|
+
display: inline-flex;
|
|
1018
|
+
}
|
|
1019
|
+
.grid{
|
|
1020
|
+
display: grid;
|
|
1021
|
+
}
|
|
1022
|
+
.hidden{
|
|
1023
|
+
display: none;
|
|
1024
|
+
}
|
|
1025
|
+
.h-1{
|
|
1026
|
+
height: 0.25rem;
|
|
1027
|
+
}
|
|
1028
|
+
.h-1\.5{
|
|
1029
|
+
height: 0.375rem;
|
|
1030
|
+
}
|
|
1031
|
+
.h-16{
|
|
1032
|
+
height: 4rem;
|
|
1033
|
+
}
|
|
1034
|
+
.h-2{
|
|
1035
|
+
height: 0.5rem;
|
|
1036
|
+
}
|
|
1037
|
+
.h-44{
|
|
1038
|
+
height: 11rem;
|
|
1039
|
+
}
|
|
1040
|
+
.h-5{
|
|
1041
|
+
height: 1.25rem;
|
|
1042
|
+
}
|
|
1043
|
+
.h-6{
|
|
1044
|
+
height: 1.5rem;
|
|
1045
|
+
}
|
|
1046
|
+
.h-7{
|
|
1047
|
+
height: 1.75rem;
|
|
1048
|
+
}
|
|
1049
|
+
.h-8{
|
|
1050
|
+
height: 2rem;
|
|
1051
|
+
}
|
|
1052
|
+
.h-9{
|
|
1053
|
+
height: 2.25rem;
|
|
1054
|
+
}
|
|
1055
|
+
.h-full{
|
|
1056
|
+
height: 100%;
|
|
1057
|
+
}
|
|
1058
|
+
.h-px{
|
|
1059
|
+
height: 1px;
|
|
1060
|
+
}
|
|
1061
|
+
.max-h-\[90vh\]{
|
|
1062
|
+
max-height: 90vh;
|
|
1063
|
+
}
|
|
1064
|
+
.min-h-0{
|
|
1065
|
+
min-height: 0px;
|
|
1066
|
+
}
|
|
1067
|
+
.min-h-\[58px\]{
|
|
1068
|
+
min-height: 58px;
|
|
1069
|
+
}
|
|
1070
|
+
.w-1{
|
|
1071
|
+
width: 0.25rem;
|
|
1072
|
+
}
|
|
1073
|
+
.w-1\.5{
|
|
1074
|
+
width: 0.375rem;
|
|
1075
|
+
}
|
|
1076
|
+
.w-11{
|
|
1077
|
+
width: 2.75rem;
|
|
1078
|
+
}
|
|
1079
|
+
.w-16{
|
|
1080
|
+
width: 4rem;
|
|
1081
|
+
}
|
|
1082
|
+
.w-2{
|
|
1083
|
+
width: 0.5rem;
|
|
1084
|
+
}
|
|
1085
|
+
.w-44{
|
|
1086
|
+
width: 11rem;
|
|
1087
|
+
}
|
|
1088
|
+
.w-5{
|
|
1089
|
+
width: 1.25rem;
|
|
1090
|
+
}
|
|
1091
|
+
.w-64{
|
|
1092
|
+
width: 16rem;
|
|
1093
|
+
}
|
|
1094
|
+
.w-7{
|
|
1095
|
+
width: 1.75rem;
|
|
1096
|
+
}
|
|
1097
|
+
.w-72{
|
|
1098
|
+
width: 18rem;
|
|
1099
|
+
}
|
|
1100
|
+
.w-8{
|
|
1101
|
+
width: 2rem;
|
|
1102
|
+
}
|
|
1103
|
+
.w-80{
|
|
1104
|
+
width: 20rem;
|
|
1105
|
+
}
|
|
1106
|
+
.w-9{
|
|
1107
|
+
width: 2.25rem;
|
|
1108
|
+
}
|
|
1109
|
+
.w-full{
|
|
1110
|
+
width: 100%;
|
|
1111
|
+
}
|
|
1112
|
+
.min-w-0{
|
|
1113
|
+
min-width: 0px;
|
|
1114
|
+
}
|
|
1115
|
+
.min-w-\[140px\]{
|
|
1116
|
+
min-width: 140px;
|
|
1117
|
+
}
|
|
1118
|
+
.min-w-\[160px\]{
|
|
1119
|
+
min-width: 160px;
|
|
1120
|
+
}
|
|
1121
|
+
.min-w-\[200px\]{
|
|
1122
|
+
min-width: 200px;
|
|
1123
|
+
}
|
|
1124
|
+
.min-w-\[72px\]{
|
|
1125
|
+
min-width: 72px;
|
|
1126
|
+
}
|
|
1127
|
+
.min-w-max{
|
|
1128
|
+
min-width: -moz-max-content;
|
|
1129
|
+
min-width: max-content;
|
|
1130
|
+
}
|
|
1131
|
+
.max-w-2xl{
|
|
1132
|
+
max-width: 42rem;
|
|
1133
|
+
}
|
|
1134
|
+
.max-w-7xl{
|
|
1135
|
+
max-width: 80rem;
|
|
1136
|
+
}
|
|
1137
|
+
.max-w-\[120px\]{
|
|
1138
|
+
max-width: 120px;
|
|
1139
|
+
}
|
|
1140
|
+
.max-w-\[160px\]{
|
|
1141
|
+
max-width: 160px;
|
|
1142
|
+
}
|
|
1143
|
+
.max-w-lg{
|
|
1144
|
+
max-width: 32rem;
|
|
1145
|
+
}
|
|
1146
|
+
.max-w-md{
|
|
1147
|
+
max-width: 28rem;
|
|
1148
|
+
}
|
|
1149
|
+
.flex-1{
|
|
1150
|
+
flex: 1 1 0%;
|
|
1151
|
+
}
|
|
1152
|
+
.flex-shrink-0{
|
|
1153
|
+
flex-shrink: 0;
|
|
1154
|
+
}
|
|
1155
|
+
.shrink-0{
|
|
1156
|
+
flex-shrink: 0;
|
|
1157
|
+
}
|
|
1158
|
+
.-translate-x-full{
|
|
1159
|
+
--tw-translate-x: -100%;
|
|
1160
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1161
|
+
}
|
|
1162
|
+
.-translate-y-1\/2{
|
|
1163
|
+
--tw-translate-y: -50%;
|
|
1164
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1165
|
+
}
|
|
1166
|
+
.translate-x-0{
|
|
1167
|
+
--tw-translate-x: 0px;
|
|
1168
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1169
|
+
}
|
|
1170
|
+
.rotate-45{
|
|
1171
|
+
--tw-rotate: 45deg;
|
|
1172
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1173
|
+
}
|
|
1174
|
+
.transform{
|
|
1175
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1176
|
+
}
|
|
1177
|
+
.cursor-pointer{
|
|
1178
|
+
cursor: pointer;
|
|
1179
|
+
}
|
|
1180
|
+
.select-none{
|
|
1181
|
+
-webkit-user-select: none;
|
|
1182
|
+
-moz-user-select: none;
|
|
1183
|
+
user-select: none;
|
|
1184
|
+
}
|
|
1185
|
+
.resize-none{
|
|
1186
|
+
resize: none;
|
|
1187
|
+
}
|
|
1188
|
+
.resize{
|
|
1189
|
+
resize: both;
|
|
1190
|
+
}
|
|
1191
|
+
.grid-cols-1{
|
|
1192
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1193
|
+
}
|
|
1194
|
+
.grid-cols-2{
|
|
1195
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1196
|
+
}
|
|
1197
|
+
.grid-cols-3{
|
|
1198
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1199
|
+
}
|
|
1200
|
+
.flex-row{
|
|
1201
|
+
flex-direction: row;
|
|
1202
|
+
}
|
|
1203
|
+
.flex-col{
|
|
1204
|
+
flex-direction: column;
|
|
1205
|
+
}
|
|
1206
|
+
.items-center{
|
|
1207
|
+
align-items: center;
|
|
1208
|
+
}
|
|
1209
|
+
.items-stretch{
|
|
1210
|
+
align-items: stretch;
|
|
1211
|
+
}
|
|
1212
|
+
.justify-end{
|
|
1213
|
+
justify-content: flex-end;
|
|
1214
|
+
}
|
|
1215
|
+
.justify-center{
|
|
1216
|
+
justify-content: center;
|
|
1217
|
+
}
|
|
1218
|
+
.justify-between{
|
|
1219
|
+
justify-content: space-between;
|
|
1220
|
+
}
|
|
1221
|
+
.gap-0\.5{
|
|
1222
|
+
gap: 0.125rem;
|
|
1223
|
+
}
|
|
1224
|
+
.gap-1{
|
|
1225
|
+
gap: 0.25rem;
|
|
1226
|
+
}
|
|
1227
|
+
.gap-1\.5{
|
|
1228
|
+
gap: 0.375rem;
|
|
1229
|
+
}
|
|
1230
|
+
.gap-2{
|
|
1231
|
+
gap: 0.5rem;
|
|
1232
|
+
}
|
|
1233
|
+
.gap-3{
|
|
1234
|
+
gap: 0.75rem;
|
|
1235
|
+
}
|
|
1236
|
+
.gap-4{
|
|
1237
|
+
gap: 1rem;
|
|
1238
|
+
}
|
|
1239
|
+
.gap-5{
|
|
1240
|
+
gap: 1.25rem;
|
|
1241
|
+
}
|
|
1242
|
+
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
|
|
1243
|
+
--tw-space-y-reverse: 0;
|
|
1244
|
+
margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1245
|
+
margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
|
|
1246
|
+
}
|
|
1247
|
+
.space-y-8 > :not([hidden]) ~ :not([hidden]){
|
|
1248
|
+
--tw-space-y-reverse: 0;
|
|
1249
|
+
margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1250
|
+
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
|
1251
|
+
}
|
|
1252
|
+
.overflow-hidden{
|
|
1253
|
+
overflow: hidden;
|
|
1254
|
+
}
|
|
1255
|
+
.overflow-x-auto{
|
|
1256
|
+
overflow-x: auto;
|
|
1257
|
+
}
|
|
1258
|
+
.overflow-y-auto{
|
|
1259
|
+
overflow-y: auto;
|
|
1260
|
+
}
|
|
1261
|
+
.overflow-y-hidden{
|
|
1262
|
+
overflow-y: hidden;
|
|
1263
|
+
}
|
|
1264
|
+
.truncate{
|
|
1265
|
+
overflow: hidden;
|
|
1266
|
+
text-overflow: ellipsis;
|
|
1267
|
+
white-space: nowrap;
|
|
1268
|
+
}
|
|
1269
|
+
.whitespace-nowrap{
|
|
1270
|
+
white-space: nowrap;
|
|
1271
|
+
}
|
|
1272
|
+
.break-all{
|
|
1273
|
+
word-break: break-all;
|
|
1274
|
+
}
|
|
1275
|
+
.rounded{
|
|
1276
|
+
border-radius: 0.25rem;
|
|
1277
|
+
}
|
|
1278
|
+
.rounded-2xl{
|
|
1279
|
+
border-radius: 1rem;
|
|
1280
|
+
}
|
|
1281
|
+
.rounded-full{
|
|
1282
|
+
border-radius: 9999px;
|
|
1283
|
+
}
|
|
1284
|
+
.rounded-lg{
|
|
1285
|
+
border-radius: 0.5rem;
|
|
1286
|
+
}
|
|
1287
|
+
.rounded-xl{
|
|
1288
|
+
border-radius: 0.75rem;
|
|
1289
|
+
}
|
|
1290
|
+
.border{
|
|
1291
|
+
border-width: 1px;
|
|
1292
|
+
}
|
|
1293
|
+
.border-b{
|
|
1294
|
+
border-bottom-width: 1px;
|
|
1295
|
+
}
|
|
1296
|
+
.border-r{
|
|
1297
|
+
border-right-width: 1px;
|
|
1298
|
+
}
|
|
1299
|
+
.border-t{
|
|
1300
|
+
border-top-width: 1px;
|
|
1301
|
+
}
|
|
1302
|
+
.bg-black\/40{
|
|
1303
|
+
background-color: rgb(0 0 0 / 0.4);
|
|
1304
|
+
}
|
|
1305
|
+
.bg-gray-400{
|
|
1306
|
+
--tw-bg-opacity: 1;
|
|
1307
|
+
background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
|
|
1308
|
+
}
|
|
1309
|
+
.bg-green-400{
|
|
1310
|
+
--tw-bg-opacity: 1;
|
|
1311
|
+
background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
|
|
1312
|
+
}
|
|
1313
|
+
.bg-orange-400{
|
|
1314
|
+
--tw-bg-opacity: 1;
|
|
1315
|
+
background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
|
|
1316
|
+
}
|
|
1317
|
+
.bg-red-500{
|
|
1318
|
+
--tw-bg-opacity: 1;
|
|
1319
|
+
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
|
|
1320
|
+
}
|
|
1321
|
+
.bg-transparent{
|
|
1322
|
+
background-color: transparent;
|
|
1323
|
+
}
|
|
1324
|
+
.bg-white{
|
|
1325
|
+
--tw-bg-opacity: 1;
|
|
1326
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1327
|
+
}
|
|
1328
|
+
.p-1{
|
|
1329
|
+
padding: 0.25rem;
|
|
1330
|
+
}
|
|
1331
|
+
.p-1\.5{
|
|
1332
|
+
padding: 0.375rem;
|
|
1333
|
+
}
|
|
1334
|
+
.p-2{
|
|
1335
|
+
padding: 0.5rem;
|
|
1336
|
+
}
|
|
1337
|
+
.p-3{
|
|
1338
|
+
padding: 0.75rem;
|
|
1339
|
+
}
|
|
1340
|
+
.p-4{
|
|
1341
|
+
padding: 1rem;
|
|
1342
|
+
}
|
|
1343
|
+
.p-5{
|
|
1344
|
+
padding: 1.25rem;
|
|
1345
|
+
}
|
|
1346
|
+
.p-6{
|
|
1347
|
+
padding: 1.5rem;
|
|
1348
|
+
}
|
|
1349
|
+
.px-0\.5{
|
|
1350
|
+
padding-left: 0.125rem;
|
|
1351
|
+
padding-right: 0.125rem;
|
|
1352
|
+
}
|
|
1353
|
+
.px-1{
|
|
1354
|
+
padding-left: 0.25rem;
|
|
1355
|
+
padding-right: 0.25rem;
|
|
1356
|
+
}
|
|
1357
|
+
.px-2{
|
|
1358
|
+
padding-left: 0.5rem;
|
|
1359
|
+
padding-right: 0.5rem;
|
|
1360
|
+
}
|
|
1361
|
+
.px-2\.5{
|
|
1362
|
+
padding-left: 0.625rem;
|
|
1363
|
+
padding-right: 0.625rem;
|
|
1364
|
+
}
|
|
1365
|
+
.px-3{
|
|
1366
|
+
padding-left: 0.75rem;
|
|
1367
|
+
padding-right: 0.75rem;
|
|
1368
|
+
}
|
|
1369
|
+
.px-4{
|
|
1370
|
+
padding-left: 1rem;
|
|
1371
|
+
padding-right: 1rem;
|
|
1372
|
+
}
|
|
1373
|
+
.px-5{
|
|
1374
|
+
padding-left: 1.25rem;
|
|
1375
|
+
padding-right: 1.25rem;
|
|
1376
|
+
}
|
|
1377
|
+
.px-6{
|
|
1378
|
+
padding-left: 1.5rem;
|
|
1379
|
+
padding-right: 1.5rem;
|
|
1380
|
+
}
|
|
1381
|
+
.py-0\.5{
|
|
1382
|
+
padding-top: 0.125rem;
|
|
1383
|
+
padding-bottom: 0.125rem;
|
|
1384
|
+
}
|
|
1385
|
+
.py-1{
|
|
1386
|
+
padding-top: 0.25rem;
|
|
1387
|
+
padding-bottom: 0.25rem;
|
|
1388
|
+
}
|
|
1389
|
+
.py-1\.5{
|
|
1390
|
+
padding-top: 0.375rem;
|
|
1391
|
+
padding-bottom: 0.375rem;
|
|
1392
|
+
}
|
|
1393
|
+
.py-2{
|
|
1394
|
+
padding-top: 0.5rem;
|
|
1395
|
+
padding-bottom: 0.5rem;
|
|
1396
|
+
}
|
|
1397
|
+
.py-2\.5{
|
|
1398
|
+
padding-top: 0.625rem;
|
|
1399
|
+
padding-bottom: 0.625rem;
|
|
1400
|
+
}
|
|
1401
|
+
.py-3{
|
|
1402
|
+
padding-top: 0.75rem;
|
|
1403
|
+
padding-bottom: 0.75rem;
|
|
1404
|
+
}
|
|
1405
|
+
.py-4{
|
|
1406
|
+
padding-top: 1rem;
|
|
1407
|
+
padding-bottom: 1rem;
|
|
1408
|
+
}
|
|
1409
|
+
.py-8{
|
|
1410
|
+
padding-top: 2rem;
|
|
1411
|
+
padding-bottom: 2rem;
|
|
1412
|
+
}
|
|
1413
|
+
.pb-1{
|
|
1414
|
+
padding-bottom: 0.25rem;
|
|
1415
|
+
}
|
|
1416
|
+
.pb-3{
|
|
1417
|
+
padding-bottom: 0.75rem;
|
|
1418
|
+
}
|
|
1419
|
+
.pl-12{
|
|
1420
|
+
padding-left: 3rem;
|
|
1421
|
+
}
|
|
1422
|
+
.pr-8{
|
|
1423
|
+
padding-right: 2rem;
|
|
1424
|
+
}
|
|
1425
|
+
.pt-2{
|
|
1426
|
+
padding-top: 0.5rem;
|
|
1427
|
+
}
|
|
1428
|
+
.pt-4{
|
|
1429
|
+
padding-top: 1rem;
|
|
1430
|
+
}
|
|
1431
|
+
.pt-5{
|
|
1432
|
+
padding-top: 1.25rem;
|
|
1433
|
+
}
|
|
1434
|
+
.text-left{
|
|
1435
|
+
text-align: left;
|
|
1436
|
+
}
|
|
1437
|
+
.text-center{
|
|
1438
|
+
text-align: center;
|
|
1439
|
+
}
|
|
1440
|
+
.font-mono{
|
|
1441
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1442
|
+
}
|
|
1443
|
+
.text-6xl{
|
|
1444
|
+
font-size: 3.75rem;
|
|
1445
|
+
line-height: 1;
|
|
1446
|
+
}
|
|
1447
|
+
.text-\[10px\]{
|
|
1448
|
+
font-size: 10px;
|
|
1449
|
+
}
|
|
1450
|
+
.text-\[11px\]{
|
|
1451
|
+
font-size: 11px;
|
|
1452
|
+
}
|
|
1453
|
+
.text-\[13px\]{
|
|
1454
|
+
font-size: 13px;
|
|
1455
|
+
}
|
|
1456
|
+
.text-\[18px\]{
|
|
1457
|
+
font-size: 18px;
|
|
1458
|
+
}
|
|
1459
|
+
.text-base{
|
|
1460
|
+
font-size: 1rem;
|
|
1461
|
+
line-height: 1.5rem;
|
|
1462
|
+
}
|
|
1463
|
+
.text-lg{
|
|
1464
|
+
font-size: 1.125rem;
|
|
1465
|
+
line-height: 1.75rem;
|
|
1466
|
+
}
|
|
1467
|
+
.text-sm{
|
|
1468
|
+
font-size: 0.875rem;
|
|
1469
|
+
line-height: 1.25rem;
|
|
1470
|
+
}
|
|
1471
|
+
.text-xl{
|
|
1472
|
+
font-size: 1.25rem;
|
|
1473
|
+
line-height: 1.75rem;
|
|
1474
|
+
}
|
|
1475
|
+
.text-xs{
|
|
1476
|
+
font-size: 0.75rem;
|
|
1477
|
+
line-height: 1rem;
|
|
1478
|
+
}
|
|
1479
|
+
.font-bold{
|
|
1480
|
+
font-weight: 700;
|
|
1481
|
+
}
|
|
1482
|
+
.font-medium{
|
|
1483
|
+
font-weight: 500;
|
|
1484
|
+
}
|
|
1485
|
+
.font-semibold{
|
|
1486
|
+
font-weight: 600;
|
|
1487
|
+
}
|
|
1488
|
+
.uppercase{
|
|
1489
|
+
text-transform: uppercase;
|
|
1490
|
+
}
|
|
1491
|
+
.leading-4{
|
|
1492
|
+
line-height: 1rem;
|
|
1493
|
+
}
|
|
1494
|
+
.leading-5{
|
|
1495
|
+
line-height: 1.25rem;
|
|
1496
|
+
}
|
|
1497
|
+
.leading-tight{
|
|
1498
|
+
line-height: 1.25;
|
|
1499
|
+
}
|
|
1500
|
+
.tracking-\[0\.18em\]{
|
|
1501
|
+
letter-spacing: 0.18em;
|
|
1502
|
+
}
|
|
1503
|
+
.tracking-tight{
|
|
1504
|
+
letter-spacing: -0.025em;
|
|
1505
|
+
}
|
|
1506
|
+
.tracking-wider{
|
|
1507
|
+
letter-spacing: 0.05em;
|
|
1508
|
+
}
|
|
1509
|
+
.text-gray-300{
|
|
1510
|
+
--tw-text-opacity: 1;
|
|
1511
|
+
color: rgb(209 213 219 / var(--tw-text-opacity, 1));
|
|
1512
|
+
}
|
|
1513
|
+
.text-green-400{
|
|
1514
|
+
--tw-text-opacity: 1;
|
|
1515
|
+
color: rgb(74 222 128 / var(--tw-text-opacity, 1));
|
|
1516
|
+
}
|
|
1517
|
+
.text-red-400{
|
|
1518
|
+
--tw-text-opacity: 1;
|
|
1519
|
+
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
1520
|
+
}
|
|
1521
|
+
.text-white{
|
|
1522
|
+
--tw-text-opacity: 1;
|
|
1523
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
1524
|
+
}
|
|
1525
|
+
.opacity-0{
|
|
1526
|
+
opacity: 0;
|
|
1527
|
+
}
|
|
1528
|
+
.opacity-100{
|
|
1529
|
+
opacity: 1;
|
|
1530
|
+
}
|
|
1531
|
+
.shadow-lg{
|
|
1532
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1533
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1534
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1535
|
+
}
|
|
1536
|
+
.shadow-md{
|
|
1537
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
1538
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
1539
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1540
|
+
}
|
|
1541
|
+
.outline-none{
|
|
1542
|
+
outline: 2px solid transparent;
|
|
1543
|
+
outline-offset: 2px;
|
|
1544
|
+
}
|
|
1545
|
+
.filter{
|
|
1546
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1547
|
+
}
|
|
1548
|
+
.transition{
|
|
1549
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1550
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1551
|
+
transition-duration: 150ms;
|
|
1552
|
+
}
|
|
1553
|
+
.transition-all{
|
|
1554
|
+
transition-property: all;
|
|
1555
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1556
|
+
transition-duration: 150ms;
|
|
1557
|
+
}
|
|
1558
|
+
.transition-opacity{
|
|
1559
|
+
transition-property: opacity;
|
|
1560
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1561
|
+
transition-duration: 150ms;
|
|
1562
|
+
}
|
|
1563
|
+
.transition-transform{
|
|
1564
|
+
transition-property: transform;
|
|
1565
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1566
|
+
transition-duration: 150ms;
|
|
1567
|
+
}
|
|
1568
|
+
.duration-150{
|
|
1569
|
+
transition-duration: 150ms;
|
|
1570
|
+
}
|
|
1571
|
+
.duration-300{
|
|
1572
|
+
transition-duration: 300ms;
|
|
1573
|
+
}
|
|
1574
|
+
.ease-out{
|
|
1575
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1576
|
+
}
|
|
1577
|
+
/* Design tokens — synced with web/app/globals.css */
|
|
1578
|
+
:root {
|
|
1579
|
+
--radius-brand: 10px;
|
|
1580
|
+
--radius-brand-lg: 14px;
|
|
1581
|
+
}
|
|
1582
|
+
/* Light theme — GitBook-style softer brand (web light) */
|
|
1583
|
+
:root[data-theme="light"] {
|
|
1584
|
+
--brand-500: #E68A6E;
|
|
1585
|
+
--brand-600: #d77459;
|
|
1586
|
+
--brand-400: #ea9577;
|
|
1587
|
+
--brand-tint: rgba(230, 138, 110, 0.12);
|
|
1588
|
+
--brand-rgb: 230, 138, 110;
|
|
1589
|
+
--bg-body: #FCFBF9;
|
|
1590
|
+
--bg-main: #FCFBF9;
|
|
1591
|
+
--bg-alt: #F4F4F5;
|
|
1592
|
+
--surface: #FFFFFF;
|
|
1593
|
+
--surface-2: #F4F4F5;
|
|
1594
|
+
--sidebar: var(--surface);
|
|
1595
|
+
--border: #E5E7EB;
|
|
1596
|
+
--border-subtle: #F1F1F3;
|
|
1597
|
+
--text-main: #0A0A0A;
|
|
1598
|
+
--text-muted: #6B7280;
|
|
1599
|
+
--glass-bg: rgba(255, 255, 255, 0.6);
|
|
1600
|
+
--glass-border: rgba(0, 0, 0, 0.08);
|
|
1601
|
+
--glass-hover: rgba(255, 255, 255, 0.8);
|
|
1602
|
+
--grid-opacity: 0.08;
|
|
1603
|
+
--header-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
|
|
1604
|
+
}
|
|
1605
|
+
/* Dark theme — Claude-like neutral warm dark (web default) */
|
|
1606
|
+
:root[data-theme="dark"] {
|
|
1607
|
+
--brand-500: #E56A4A;
|
|
1608
|
+
--brand-600: #cc5236;
|
|
1609
|
+
--brand-400: #ea7855;
|
|
1610
|
+
--brand-tint: rgba(229, 106, 74, 0.12);
|
|
1611
|
+
--brand-rgb: 229, 106, 74;
|
|
1612
|
+
--bg-body: #1A1A1A;
|
|
1613
|
+
--bg-main: #1A1A1A;
|
|
1614
|
+
--bg-alt: #303030;
|
|
1615
|
+
--surface: #262626;
|
|
1616
|
+
--surface-2: #303030;
|
|
1617
|
+
--sidebar: var(--surface);
|
|
1618
|
+
--border: #333333;
|
|
1619
|
+
--border-subtle: #2A2A2A;
|
|
1620
|
+
--text-main: #EDEDED;
|
|
1621
|
+
--text-muted: #9CA3AF;
|
|
1622
|
+
--glass-bg: rgba(38, 38, 38, 0.6);
|
|
1623
|
+
--glass-border: rgba(255, 255, 255, 0.08);
|
|
1624
|
+
--glass-hover: rgba(48, 48, 48, 0.8);
|
|
1625
|
+
--grid-opacity: 0.04;
|
|
1626
|
+
--header-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
1627
|
+
}
|
|
1628
|
+
/* Brand-tinted text selection (9router) */
|
|
1629
|
+
::-moz-selection {
|
|
1630
|
+
background-color: rgba(229, 106, 74, 0.25);
|
|
1631
|
+
color: var(--brand-500);
|
|
1632
|
+
}
|
|
1633
|
+
::selection {
|
|
1634
|
+
background-color: rgba(229, 106, 74, 0.25);
|
|
1635
|
+
color: var(--brand-500);
|
|
1636
|
+
}
|
|
1637
|
+
@keyframes pulse-ring {
|
|
1638
|
+
0% { transform: scale(0.8); opacity: 1; }
|
|
1639
|
+
100% { transform: scale(1.6); opacity: 0; }
|
|
1640
|
+
}
|
|
1641
|
+
.pulse-ring {
|
|
1642
|
+
animation: pulse-ring 1.4s ease-out infinite;
|
|
1643
|
+
}
|
|
1644
|
+
@keyframes spin {
|
|
1645
|
+
from { transform: rotate(0deg); }
|
|
1646
|
+
to { transform: rotate(360deg); }
|
|
1647
|
+
}
|
|
1648
|
+
.spin {
|
|
1649
|
+
animation: spin 1s linear infinite;
|
|
1650
|
+
}
|
|
1651
|
+
@keyframes dot-bounce {
|
|
1652
|
+
0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
|
|
1653
|
+
40% { transform: scale(1); opacity: 1; }
|
|
1654
|
+
}
|
|
1655
|
+
.dot-bounce {
|
|
1656
|
+
animation: dot-bounce 1s ease-in-out infinite;
|
|
1657
|
+
}
|
|
1658
|
+
/* Terminal pane — fix xterm helpers overlay + focus glow (synced with web) */
|
|
1659
|
+
.terminal-wrapper { overflow: hidden !important; }
|
|
1660
|
+
.terminal-wrapper .xterm-viewport {
|
|
1661
|
+
overflow-y: auto !important;
|
|
1662
|
+
scrollbar-width: thin;
|
|
1663
|
+
scrollbar-color: rgba(var(--brand-rgb), 0.5) transparent;
|
|
1664
|
+
}
|
|
1665
|
+
.terminal-wrapper .xterm-viewport::-webkit-scrollbar { width: 6px; }
|
|
1666
|
+
.terminal-wrapper .xterm-viewport::-webkit-scrollbar-track { background: transparent; }
|
|
1667
|
+
.terminal-wrapper .xterm-viewport::-webkit-scrollbar-thumb {
|
|
1668
|
+
background: rgba(var(--brand-rgb), 0.5);
|
|
1669
|
+
border-radius: 3px;
|
|
1670
|
+
}
|
|
1671
|
+
.terminal-wrapper .xterm-viewport::-webkit-scrollbar-thumb:hover {
|
|
1672
|
+
background: rgba(var(--brand-rgb), 0.8);
|
|
1673
|
+
}
|
|
1674
|
+
/* XTerm custom overlay scrollbar (JS-rendered div, not native) — thin only, keep default color */
|
|
1675
|
+
.terminal-wrapper .xterm .scrollbar { width: 6px !important; }
|
|
1676
|
+
.terminal-wrapper .xterm .scrollbar .slider { width: 6px !important; border-radius: 3px !important; }
|
|
1677
|
+
.terminal-wrapper .xterm-screen { touch-action: pan-y !important; }
|
|
1678
|
+
.xterm .xterm-helpers { z-index: 0 !important; }
|
|
1679
|
+
.xterm-helper-textarea { opacity: 0 !important; }
|
|
1680
|
+
/* Thin continuous brand glow ring around focused pane */
|
|
1681
|
+
.terminal-focus-glow::after {
|
|
1682
|
+
content: "";
|
|
1683
|
+
position: absolute;
|
|
1684
|
+
inset: 0;
|
|
1685
|
+
border: 1px solid var(--brand-500);
|
|
1686
|
+
box-shadow: 0 0 6px rgba(var(--brand-rgb), 0.7);
|
|
1687
|
+
pointer-events: none;
|
|
1688
|
+
z-index: 2;
|
|
1689
|
+
}
|
|
1690
|
+
/* Finished-terminal highlight — animated gradient bottom border (cleared on focus) */
|
|
1691
|
+
/* Finished-terminal badge styles — KEEP IN SYNC with web/app/globals.css (separate build) */
|
|
1692
|
+
.terminal-done-border::after {
|
|
1693
|
+
content: "";
|
|
1694
|
+
position: absolute;
|
|
1695
|
+
top: 0;
|
|
1696
|
+
left: 0;
|
|
1697
|
+
right: 0;
|
|
1698
|
+
height: 2px;
|
|
1699
|
+
background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6, #3b82f6, #10b981, #f59e0b);
|
|
1700
|
+
background-size: 200% 100%;
|
|
1701
|
+
animation: borderFlow 3s linear infinite;
|
|
1702
|
+
pointer-events: none;
|
|
1703
|
+
}
|
|
1704
|
+
@keyframes borderFlow {
|
|
1705
|
+
from { background-position: 0% 0; }
|
|
1706
|
+
to { background-position: 200% 0; }
|
|
1707
|
+
}
|
|
1708
|
+
.term-tab-done-dot { animation: tabDonePulse 1.2s ease-in-out infinite; }
|
|
1709
|
+
@keyframes tabDonePulse {
|
|
1710
|
+
0%, 100% { opacity: 1; }
|
|
1711
|
+
50% { opacity: 0.3; }
|
|
1712
|
+
}
|
|
1713
|
+
/* Overlay slide-in (web parity) */
|
|
1714
|
+
@keyframes slide-in-right { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
|
|
1715
|
+
.slide-in-right { animation: slide-in-right 0.3s ease-out; }
|
|
1716
|
+
/* Terminal header hover (web parity) */
|
|
1717
|
+
.term-btn:hover { background: var(--surface-2); filter: brightness(0.95); }
|
|
1718
|
+
.term-tab:not(.term-tab-active):hover { color: var(--text-main) !important; }
|
|
1719
|
+
.term-group-item:hover { background: var(--surface-2); }
|
|
1720
|
+
/* Connection cards — borderless on dark, subtle border on light (session parity) */
|
|
1721
|
+
.conn-card { border: none; }
|
|
1722
|
+
:root[data-theme="light"] .conn-card { border: 1px solid var(--border-subtle); }
|
|
1723
|
+
/* Session cards (web parity) */
|
|
1724
|
+
.session-card { background: var(--surface); border: 1px solid var(--border-subtle); transition: background-color 0.15s ease; }
|
|
1725
|
+
.session-card:hover { background: var(--surface-2); }
|
|
1726
|
+
.card-act { color: var(--text-muted); transition: all 0.15s ease; }
|
|
1727
|
+
.card-act:hover { background: var(--surface-2); color: var(--text-main); }
|
|
1728
|
+
.card-del { color: var(--text-muted); transition: all 0.15s ease; }
|
|
1729
|
+
.card-del:hover { background: rgba(239,68,68,0.15); color: #ef4444; }
|
|
1730
|
+
.dashed-card { border: 1px dashed var(--border); color: var(--text-muted); transition: all 0.15s ease; }
|
|
1731
|
+
.dashed-card:hover { border-color: var(--brand-500); color: var(--brand-500); background: var(--brand-tint); }
|
|
1732
|
+
/* Terminal input — brand focus ring (web parity; tailwind brand color unavailable here) */
|
|
1733
|
+
.term-input:focus { box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.4); }
|
|
1734
|
+
.last\:border-0:last-child{
|
|
1735
|
+
border-width: 0px;
|
|
1736
|
+
}
|
|
1737
|
+
.hover\:underline:hover{
|
|
1738
|
+
text-decoration-line: underline;
|
|
1739
|
+
}
|
|
1740
|
+
.focus\:outline-none:focus{
|
|
1741
|
+
outline: 2px solid transparent;
|
|
1742
|
+
outline-offset: 2px;
|
|
1743
|
+
}
|
|
1744
|
+
.active\:scale-\[0\.94\]:active{
|
|
1745
|
+
--tw-scale-x: 0.94;
|
|
1746
|
+
--tw-scale-y: 0.94;
|
|
1747
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1748
|
+
}
|
|
1749
|
+
@media (min-width: 640px){
|
|
1750
|
+
.sm\:grid-cols-2{
|
|
1751
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1752
|
+
}
|
|
1753
|
+
.sm\:px-4{
|
|
1754
|
+
padding-left: 1rem;
|
|
1755
|
+
padding-right: 1rem;
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
@media (min-width: 768px){
|
|
1759
|
+
.md\:col-span-1{
|
|
1760
|
+
grid-column: span 1 / span 1;
|
|
1761
|
+
}
|
|
1762
|
+
.md\:col-span-2{
|
|
1763
|
+
grid-column: span 2 / span 2;
|
|
1764
|
+
}
|
|
1765
|
+
.md\:flex{
|
|
1766
|
+
display: flex;
|
|
1767
|
+
}
|
|
1768
|
+
.md\:hidden{
|
|
1769
|
+
display: none;
|
|
1770
|
+
}
|
|
1771
|
+
.md\:grid-cols-3{
|
|
1772
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
@media (min-width: 1024px){
|
|
1776
|
+
.lg\:block{
|
|
1777
|
+
display: block;
|
|
1778
|
+
}
|
|
1779
|
+
.lg\:grid-cols-3{
|
|
1780
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1781
|
+
}
|
|
1782
|
+
.lg\:p-10{
|
|
1783
|
+
padding: 2.5rem;
|
|
1784
|
+
}
|
|
1785
|
+
.lg\:px-10{
|
|
1786
|
+
padding-left: 2.5rem;
|
|
1787
|
+
padding-right: 2.5rem;
|
|
1788
|
+
}
|
|
1789
|
+
.lg\:text-xl{
|
|
1790
|
+
font-size: 1.25rem;
|
|
1791
|
+
line-height: 1.75rem;
|
|
1792
|
+
}
|
|
1793
|
+
}
|
|
1794
|
+
@media (min-width: 1280px){
|
|
1795
|
+
.xl\:grid-cols-4{
|
|
1796
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1797
|
+
}
|
|
1798
|
+
}
|