nexus-admin 1.0.1
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/USER-GUIDE.md +166 -0
- package/dist/index.cjs +3000 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +975 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +1010 -0
- package/dist/index.d.ts +1010 -0
- package/dist/index.js +2854 -0
- package/dist/index.js.map +1 -0
- package/package.json +55 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,975 @@
|
|
|
1
|
+
/* src/styles/nexus.animation.css */
|
|
2
|
+
:root {
|
|
3
|
+
--ANIM_SPD: 300ms;
|
|
4
|
+
--anim-ease: cubic-bezier(0.33, 1, 0.68, 1);
|
|
5
|
+
--anim-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
|
|
6
|
+
--anim-ease-in: cubic-bezier(0.32, 0, 0.67, 0);
|
|
7
|
+
--ANIM: all var(--ANIM_SPD);
|
|
8
|
+
--SPIN_BOX_SIZE: 3.5rem;
|
|
9
|
+
--SPIN_BOX_BORDER_SIZE: 0.45rem;
|
|
10
|
+
}
|
|
11
|
+
.an-fa,
|
|
12
|
+
.an-fo,
|
|
13
|
+
.an-fio,
|
|
14
|
+
.an-pi,
|
|
15
|
+
.an-po {
|
|
16
|
+
animation-duration: var(--ANIM_SPD);
|
|
17
|
+
animation-timing-function: var(--anim-ease-out);
|
|
18
|
+
animation-fill-mode: both;
|
|
19
|
+
}
|
|
20
|
+
.an-fa {
|
|
21
|
+
animation-name: fadeIn;
|
|
22
|
+
}
|
|
23
|
+
.an-fo {
|
|
24
|
+
animation-name: fadeOut;
|
|
25
|
+
animation-timing-function: var(--anim-ease-in);
|
|
26
|
+
animation-fill-mode: forwards;
|
|
27
|
+
}
|
|
28
|
+
.an-fio {
|
|
29
|
+
animation-name: fadeInOut;
|
|
30
|
+
animation-duration: calc(var(--ANIM_SPD) * 2);
|
|
31
|
+
animation-timing-function: var(--anim-ease);
|
|
32
|
+
animation-iteration-count: 1;
|
|
33
|
+
animation-fill-mode: both;
|
|
34
|
+
animation: fadeInOut calc(var(--ANIM_SPD) * 6) ease-in-out infinite;
|
|
35
|
+
}
|
|
36
|
+
.an-pi {
|
|
37
|
+
animation-name: pulseIn;
|
|
38
|
+
}
|
|
39
|
+
.an-po {
|
|
40
|
+
animation-name: pulseOut;
|
|
41
|
+
animation-timing-function: var(--anim-ease-in);
|
|
42
|
+
animation-fill-mode: forwards;
|
|
43
|
+
}
|
|
44
|
+
.an-pio {
|
|
45
|
+
animation-name: pulseInOut;
|
|
46
|
+
animation-duration: calc(var(--ANIM_SPD) * 2);
|
|
47
|
+
animation-iteration-count: infinite;
|
|
48
|
+
animation-direction: alternate;
|
|
49
|
+
animation-timing-function: var(--anim-ease);
|
|
50
|
+
animation-fill-mode: none;
|
|
51
|
+
}
|
|
52
|
+
.an-bounce {
|
|
53
|
+
animation-name: bounce;
|
|
54
|
+
animation-duration: calc(var(--ANIM_SPD) * 4);
|
|
55
|
+
animation-timing-function: linear;
|
|
56
|
+
animation-iteration-count: infinite;
|
|
57
|
+
}
|
|
58
|
+
.an-spin {
|
|
59
|
+
display: inline-block;
|
|
60
|
+
box-sizing: border-box;
|
|
61
|
+
width: var(--SPIN_BOX_SIZE);
|
|
62
|
+
height: var(--SPIN_BOX_SIZE);
|
|
63
|
+
vertical-align: middle;
|
|
64
|
+
border-radius: 50%;
|
|
65
|
+
border-style: solid;
|
|
66
|
+
border-width: var(--SPIN_BOX_BORDER_SIZE);
|
|
67
|
+
border-color: var(--B30);
|
|
68
|
+
border-top-color: var(--B20);
|
|
69
|
+
animation-name: spin;
|
|
70
|
+
animation-duration: calc(var(--ANIM_SPD) * 5);
|
|
71
|
+
animation-timing-function: linear;
|
|
72
|
+
animation-iteration-count: infinite;
|
|
73
|
+
}
|
|
74
|
+
.an-sbar {
|
|
75
|
+
position: relative;
|
|
76
|
+
display: block;
|
|
77
|
+
width: 100%;
|
|
78
|
+
max-width: 14rem;
|
|
79
|
+
height: 0.28rem;
|
|
80
|
+
min-height: 0.28rem;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
border-radius: 999px;
|
|
83
|
+
background-color: var(--B30);
|
|
84
|
+
}
|
|
85
|
+
.an-sbar::after {
|
|
86
|
+
content: "";
|
|
87
|
+
position: absolute;
|
|
88
|
+
top: 0;
|
|
89
|
+
left: -45%;
|
|
90
|
+
width: 45%;
|
|
91
|
+
height: 100%;
|
|
92
|
+
border-radius: inherit;
|
|
93
|
+
background:
|
|
94
|
+
linear-gradient(
|
|
95
|
+
90deg,
|
|
96
|
+
var(--B400),
|
|
97
|
+
var(--B20),
|
|
98
|
+
var(--B600),
|
|
99
|
+
var(--B400));
|
|
100
|
+
background-size: 200% 100%;
|
|
101
|
+
animation: slideBarSweep calc(var(--ANIM_SPD) * 5) ease-in-out infinite;
|
|
102
|
+
}
|
|
103
|
+
.an-bbar {
|
|
104
|
+
position: relative;
|
|
105
|
+
display: block;
|
|
106
|
+
width: 100%;
|
|
107
|
+
max-width: 14rem;
|
|
108
|
+
height: 0.28rem;
|
|
109
|
+
min-height: 0.28rem;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
border-radius: 999px;
|
|
112
|
+
background-color: var(--B30);
|
|
113
|
+
--bbar-ball-pct: 40;
|
|
114
|
+
--bbar-dur: 1s;
|
|
115
|
+
--bbar-ease: cubic-bezier(0.45, 0.1, 0.55, 0.9);
|
|
116
|
+
}
|
|
117
|
+
.an-bbar::after {
|
|
118
|
+
content: "";
|
|
119
|
+
position: absolute;
|
|
120
|
+
top: 0;
|
|
121
|
+
left: 0;
|
|
122
|
+
width: calc(var(--bbar-ball-pct) * 1%);
|
|
123
|
+
height: 100%;
|
|
124
|
+
border-radius: inherit;
|
|
125
|
+
background:
|
|
126
|
+
linear-gradient(
|
|
127
|
+
90deg,
|
|
128
|
+
var(--B400),
|
|
129
|
+
var(--B20),
|
|
130
|
+
var(--B600),
|
|
131
|
+
var(--B400));
|
|
132
|
+
background-size: 200% 100%;
|
|
133
|
+
will-change: transform;
|
|
134
|
+
animation-name: bounceBarBall;
|
|
135
|
+
animation-duration: var(--bbar-dur);
|
|
136
|
+
animation-timing-function: var(--bbar-ease);
|
|
137
|
+
animation-iteration-count: infinite;
|
|
138
|
+
animation-direction: alternate;
|
|
139
|
+
}
|
|
140
|
+
@keyframes fadeIn {
|
|
141
|
+
from {
|
|
142
|
+
opacity: 0;
|
|
143
|
+
}
|
|
144
|
+
to {
|
|
145
|
+
opacity: 1;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
@keyframes fadeOut {
|
|
149
|
+
from {
|
|
150
|
+
opacity: 1;
|
|
151
|
+
}
|
|
152
|
+
to {
|
|
153
|
+
opacity: 0;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
@keyframes fadeInOut {
|
|
157
|
+
0% {
|
|
158
|
+
opacity: 1;
|
|
159
|
+
}
|
|
160
|
+
50% {
|
|
161
|
+
opacity: 0.6;
|
|
162
|
+
}
|
|
163
|
+
100% {
|
|
164
|
+
opacity: 1;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
@keyframes pulseInOut {
|
|
168
|
+
from {
|
|
169
|
+
transform: scale3d(1, 1, 1);
|
|
170
|
+
}
|
|
171
|
+
to {
|
|
172
|
+
transform: scale3d(1.04, 1.04, 1);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
@keyframes bounce {
|
|
176
|
+
0%, 20%, 50%, 80%, 100% {
|
|
177
|
+
transform: translate3d(0, 0, 0);
|
|
178
|
+
}
|
|
179
|
+
40% {
|
|
180
|
+
transform: translate3d(0, -0.5rem, 0);
|
|
181
|
+
}
|
|
182
|
+
60% {
|
|
183
|
+
transform: translate3d(0, -0.25rem, 0);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
@keyframes spin {
|
|
187
|
+
0% {
|
|
188
|
+
transform: rotate3d(0, 0, 1, 0deg);
|
|
189
|
+
border-top-color: var(--B20);
|
|
190
|
+
}
|
|
191
|
+
50% {
|
|
192
|
+
border-top-color: var(--B400);
|
|
193
|
+
}
|
|
194
|
+
75% {
|
|
195
|
+
border-top-color: var(--B600);
|
|
196
|
+
}
|
|
197
|
+
100% {
|
|
198
|
+
transform: rotate3d(0, 0, 1, 360deg);
|
|
199
|
+
border-top-color: var(--B20);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
@keyframes slideBarSweep {
|
|
203
|
+
0% {
|
|
204
|
+
transform: translate3d(0, 0, 0);
|
|
205
|
+
background-position: 0% 50%;
|
|
206
|
+
opacity: 0.85;
|
|
207
|
+
}
|
|
208
|
+
50% {
|
|
209
|
+
opacity: 1;
|
|
210
|
+
}
|
|
211
|
+
100% {
|
|
212
|
+
transform: translate3d(320%, 0, 0);
|
|
213
|
+
background-position: 100% 50%;
|
|
214
|
+
opacity: 0.9;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
@keyframes bounceBarBall {
|
|
218
|
+
0% {
|
|
219
|
+
transform: translate3d(0, 0, 0);
|
|
220
|
+
background-position: 0% 50%;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
transform: translate3d(calc((100 - var(--bbar-ball-pct)) / var(--bbar-ball-pct) * 100%), 0, 0);
|
|
224
|
+
background-position: 100% 50%;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* src/styles/nexus.core.css */
|
|
229
|
+
:root {
|
|
230
|
+
--BR1: 0.3rem;
|
|
231
|
+
--BR2: 0.6rem;
|
|
232
|
+
--MW: 90vw;
|
|
233
|
+
--SLBW: 0.6rem;
|
|
234
|
+
--BS0: 0px 0px 1.95rem var(--B41);
|
|
235
|
+
--BS1: 0px 0px 1.45rem var(--B41);
|
|
236
|
+
--BS2: 0px 0px 1.1rem var(--B41);
|
|
237
|
+
--BS3: 0px 0px 0.8rem var(--B41);
|
|
238
|
+
--BS4: 0px 0px 0.55rem var(--B41);
|
|
239
|
+
--BS5: 0px 0px 0.4rem var(--B41);
|
|
240
|
+
--BS6: 0px 0px 0.25rem var(--B41);
|
|
241
|
+
--BS7: 0px 0px 0.15rem var(--B41);
|
|
242
|
+
--IEM: 2rem;
|
|
243
|
+
--IH: 2.8rem;
|
|
244
|
+
--BRD1: 0.0625rem;
|
|
245
|
+
--BRD2: calc(var(--BRD1) * 2);
|
|
246
|
+
--BRD3: calc(var(--BRD1) * 3);
|
|
247
|
+
--ACTIVE_BORDER_COLOR: var(--B950);
|
|
248
|
+
--ACTIVE_BACKGROUND_COLOR: var(--B3);
|
|
249
|
+
}
|
|
250
|
+
* {
|
|
251
|
+
padding: 0;
|
|
252
|
+
margin: 0;
|
|
253
|
+
list-style: none;
|
|
254
|
+
text-decoration: none;
|
|
255
|
+
box-sizing: border-box;
|
|
256
|
+
letter-spacing: 0.02rem;
|
|
257
|
+
}
|
|
258
|
+
body {
|
|
259
|
+
font-weight: 400;
|
|
260
|
+
font-family: "Inter", sans-serif;
|
|
261
|
+
}
|
|
262
|
+
@media (max-width: 4000px) {
|
|
263
|
+
* {
|
|
264
|
+
font-size: 20px;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
@media (max-width: 3000px) {
|
|
268
|
+
* {
|
|
269
|
+
font-size: 19px;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
@media (max-width: 2600px) {
|
|
273
|
+
* {
|
|
274
|
+
font-size: 18px;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
@media (max-width: 2300px) {
|
|
278
|
+
* {
|
|
279
|
+
font-size: 17px;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
@media (max-width: 1800px) {
|
|
283
|
+
* {
|
|
284
|
+
font-size: 16px;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
@media (max-width: 1500px) {
|
|
288
|
+
* {
|
|
289
|
+
font-size: 15px;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
@media (max-width: 768px) {
|
|
293
|
+
* {
|
|
294
|
+
font-size: 16px;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
@media (max-width: 450px) {
|
|
298
|
+
* {
|
|
299
|
+
font-size: 15px;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
@media (max-width: 400px) {
|
|
303
|
+
* {
|
|
304
|
+
font-size: 14px;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
@media (max-width: 350px) {
|
|
308
|
+
* {
|
|
309
|
+
font-size: 13px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
@media (max-width: 300px) {
|
|
313
|
+
* {
|
|
314
|
+
font-size: 12px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
@media (max-width: 250px) {
|
|
318
|
+
* {
|
|
319
|
+
font-size: 11px;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
body {
|
|
323
|
+
background-color: var(--C1);
|
|
324
|
+
color: var(--C950);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* src/styles/nexus.dialog.css */
|
|
328
|
+
:root {
|
|
329
|
+
--BFC: var(--C1);
|
|
330
|
+
--BG_TITLE: rgb(100, 100, 100);
|
|
331
|
+
--DB_SIZE: 1.1rem;
|
|
332
|
+
}
|
|
333
|
+
.dialog {
|
|
334
|
+
z-index: 100 !important;
|
|
335
|
+
cursor: default;
|
|
336
|
+
}
|
|
337
|
+
.dialog.left::before,
|
|
338
|
+
.dialog.right::before,
|
|
339
|
+
.dialog.center::before,
|
|
340
|
+
.dialog.left::after,
|
|
341
|
+
.dialog.right::after,
|
|
342
|
+
.dialog.center::after {
|
|
343
|
+
content: "";
|
|
344
|
+
position: absolute;
|
|
345
|
+
width: var(--DB_SIZE);
|
|
346
|
+
height: var(--DB_SIZE);
|
|
347
|
+
background: inherit;
|
|
348
|
+
transform: rotate(45deg) translateX(calc(0rem - var(--DB_SIZE) / 2.5)) translateY(calc(var(--DB_SIZE) / 2));
|
|
349
|
+
top: calc(0rem - var(--DB_SIZE) / 1.54);
|
|
350
|
+
border-radius: 0.05rem;
|
|
351
|
+
border-left: var(--BRD1) solid var(--B30);
|
|
352
|
+
border-top: var(--BRD1) solid var(--B30);
|
|
353
|
+
}
|
|
354
|
+
.dialog.left::before,
|
|
355
|
+
.dialog.right::before,
|
|
356
|
+
.dialog.center::before {
|
|
357
|
+
box-shadow: -0.3rem -0.3rem 0.4rem var(--B41);
|
|
358
|
+
z-index: -1 !important;
|
|
359
|
+
opacity: 0.7;
|
|
360
|
+
}
|
|
361
|
+
.dialog.right::after,
|
|
362
|
+
.dialog.right::before {
|
|
363
|
+
left: var(--arrow-left, 0rem);
|
|
364
|
+
}
|
|
365
|
+
.dialog.left::after,
|
|
366
|
+
.dialog.left::before {
|
|
367
|
+
left: var(--arrow-left, 1.2rem);
|
|
368
|
+
}
|
|
369
|
+
.dialog.center::after,
|
|
370
|
+
.dialog.center::before {
|
|
371
|
+
left: var(--arrow-left, 50%);
|
|
372
|
+
}
|
|
373
|
+
.dialog.T::after,
|
|
374
|
+
.dialog.T::before,
|
|
375
|
+
.dialog.T.center::after,
|
|
376
|
+
.dialog.T.center::before {
|
|
377
|
+
top: unset;
|
|
378
|
+
bottom: -0.55rem !important;
|
|
379
|
+
transform: scale(1, -1);
|
|
380
|
+
transform: translateX(-50%) scale(1, -1);
|
|
381
|
+
}
|
|
382
|
+
.dialog.input-dialog::before,
|
|
383
|
+
.dialog.input-dialog::after {
|
|
384
|
+
display: none !important;
|
|
385
|
+
}
|
|
386
|
+
.dlg-box {
|
|
387
|
+
width: 100%;
|
|
388
|
+
height: 100%;
|
|
389
|
+
position: fixed;
|
|
390
|
+
z-index: 1000;
|
|
391
|
+
background-color: var(--C12);
|
|
392
|
+
overflow: hidden;
|
|
393
|
+
}
|
|
394
|
+
.dlg-box.minimized {
|
|
395
|
+
z-index: 98;
|
|
396
|
+
}
|
|
397
|
+
.dlg-box.minimized .model {
|
|
398
|
+
max-height: 2rem !important;
|
|
399
|
+
}
|
|
400
|
+
.dlg-box .model {
|
|
401
|
+
width: 40rem;
|
|
402
|
+
max-width: 95%;
|
|
403
|
+
max-height: 85vh;
|
|
404
|
+
}
|
|
405
|
+
.dlg-box.minimized .model {
|
|
406
|
+
max-width: none !important;
|
|
407
|
+
width: 100% !important;
|
|
408
|
+
}
|
|
409
|
+
.model.XS {
|
|
410
|
+
width: 25rem;
|
|
411
|
+
}
|
|
412
|
+
.model.sm {
|
|
413
|
+
width: 30rem;
|
|
414
|
+
}
|
|
415
|
+
.model.nr {
|
|
416
|
+
width: 37rem;
|
|
417
|
+
}
|
|
418
|
+
.model.med {
|
|
419
|
+
width: 45rem;
|
|
420
|
+
}
|
|
421
|
+
.model.lg {
|
|
422
|
+
width: 70rem;
|
|
423
|
+
}
|
|
424
|
+
.model.xl {
|
|
425
|
+
width: 80rem;
|
|
426
|
+
}
|
|
427
|
+
.model.xxl {
|
|
428
|
+
width: 95%;
|
|
429
|
+
max-width: 95%;
|
|
430
|
+
max-height: 95%;
|
|
431
|
+
}
|
|
432
|
+
.model.fs {
|
|
433
|
+
width: 100% !important;
|
|
434
|
+
height: 100vh !important;
|
|
435
|
+
max-width: 100%;
|
|
436
|
+
max-height: 100%;
|
|
437
|
+
border-radius: 0;
|
|
438
|
+
}
|
|
439
|
+
.dlg-box {
|
|
440
|
+
container-type: size;
|
|
441
|
+
}
|
|
442
|
+
@media (max-width: 768px) {
|
|
443
|
+
.model {
|
|
444
|
+
max-height: 90vh !important;
|
|
445
|
+
}
|
|
446
|
+
.dlg-box.ac {
|
|
447
|
+
align-items: flex-start !important;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
.dlg-box.minimized:hover {
|
|
451
|
+
animation: none !important;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
/* src/styles/nexus.icon.css */
|
|
455
|
+
:root {
|
|
456
|
+
--IW: var(--IH);
|
|
457
|
+
--IS: 1.6rem;
|
|
458
|
+
}
|
|
459
|
+
.ib {
|
|
460
|
+
min-width: var(--IW);
|
|
461
|
+
min-height: var(--IW);
|
|
462
|
+
max-width: var(--IW);
|
|
463
|
+
max-height: var(--IW);
|
|
464
|
+
display: flex;
|
|
465
|
+
align-items: center;
|
|
466
|
+
justify-content: center;
|
|
467
|
+
box-sizing: border-box;
|
|
468
|
+
}
|
|
469
|
+
.icon {
|
|
470
|
+
pointer-events: none;
|
|
471
|
+
transition: var(--ANIM);
|
|
472
|
+
font-size: var(--IS);
|
|
473
|
+
pointer-events: none !important;
|
|
474
|
+
}
|
|
475
|
+
.ib.h:hover > .icon {
|
|
476
|
+
opacity: 1;
|
|
477
|
+
}
|
|
478
|
+
.img {
|
|
479
|
+
width: 100%;
|
|
480
|
+
height: 100%;
|
|
481
|
+
object-fit: cover !important;
|
|
482
|
+
}
|
|
483
|
+
.image-viewer {
|
|
484
|
+
width: 100%;
|
|
485
|
+
height: 100%;
|
|
486
|
+
object-fit: cover !important;
|
|
487
|
+
transition: transform 0.1s ease;
|
|
488
|
+
transform-origin: center;
|
|
489
|
+
transition: var(--ANIM);
|
|
490
|
+
}
|
|
491
|
+
.bg-img {
|
|
492
|
+
background-size: cover;
|
|
493
|
+
background-position: center;
|
|
494
|
+
background-repeat: no-repeat;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/* src/styles/nexus.input.css */
|
|
498
|
+
:root {
|
|
499
|
+
--IRCH: 1.5rem;
|
|
500
|
+
}
|
|
501
|
+
.ipt-bx {
|
|
502
|
+
z-index: 0;
|
|
503
|
+
}
|
|
504
|
+
.ipt-wp .smb {
|
|
505
|
+
min-height: calc(var(--IEM) / 1.3) !important;
|
|
506
|
+
}
|
|
507
|
+
.ipt-bx,
|
|
508
|
+
.ipt-bxh {
|
|
509
|
+
height: var(--IH);
|
|
510
|
+
}
|
|
511
|
+
.textarea-box {
|
|
512
|
+
height: unset !important;
|
|
513
|
+
display: flex;
|
|
514
|
+
flex-direction: column;
|
|
515
|
+
padding-top: 0.5rem;
|
|
516
|
+
box-sizing: border-box;
|
|
517
|
+
}
|
|
518
|
+
.ipt {
|
|
519
|
+
color: var(--T1);
|
|
520
|
+
}
|
|
521
|
+
input.ipt,
|
|
522
|
+
select.ipt {
|
|
523
|
+
height: 100%;
|
|
524
|
+
}
|
|
525
|
+
.ipt,
|
|
526
|
+
.ipth {
|
|
527
|
+
width: 100%;
|
|
528
|
+
padding: 0rem 0.5rem;
|
|
529
|
+
font-weight: 400;
|
|
530
|
+
font-family: inherit;
|
|
531
|
+
}
|
|
532
|
+
.ipth,
|
|
533
|
+
input.ipt,
|
|
534
|
+
select.ipt {
|
|
535
|
+
min-height: calc(var(--IH) - var(--B1));
|
|
536
|
+
}
|
|
537
|
+
.ipt:-webkit-autofill,
|
|
538
|
+
.ipt:autofill {
|
|
539
|
+
-webkit-box-shadow: 0 0 0px 50px var(--B1) inset !important;
|
|
540
|
+
-webkit-text-fill-color: var(--T1) !important;
|
|
541
|
+
border-radius: var(--BR1);
|
|
542
|
+
}
|
|
543
|
+
.ipt-bx .ilb {
|
|
544
|
+
padding: 0rem 0.2rem;
|
|
545
|
+
margin-left: 0.3rem;
|
|
546
|
+
font-weight: 400;
|
|
547
|
+
font-size: 1rem;
|
|
548
|
+
opacity: 0.7;
|
|
549
|
+
transition: all var(--ANIM_SPD) ease-in-out;
|
|
550
|
+
}
|
|
551
|
+
.ipt.txhv + .ilb,
|
|
552
|
+
.ipt:focus-within + .ilb {
|
|
553
|
+
opacity: 1;
|
|
554
|
+
top: -0.05rem !important;
|
|
555
|
+
font-size: 0.8rem !important;
|
|
556
|
+
font-weight: 500 !important;
|
|
557
|
+
}
|
|
558
|
+
.ipt.txhv + .ilb,
|
|
559
|
+
.ipt:focus-within + .ilb {
|
|
560
|
+
background:
|
|
561
|
+
linear-gradient(
|
|
562
|
+
to bottom,
|
|
563
|
+
transparent 35%,
|
|
564
|
+
var(--B2) 0,
|
|
565
|
+
var(--B2) 55%,
|
|
566
|
+
transparent 50%);
|
|
567
|
+
opacity: 1 !important;
|
|
568
|
+
}
|
|
569
|
+
.h:focus-within,
|
|
570
|
+
.ipt-bx:focus-within {
|
|
571
|
+
box-shadow: 0 0 0.3rem var(--B20);
|
|
572
|
+
border-color: var(--B12) !important;
|
|
573
|
+
z-index: 1;
|
|
574
|
+
}
|
|
575
|
+
.ipt-bx .ib {
|
|
576
|
+
min-height: calc(var(--IH) - var(--BR1)) !important;
|
|
577
|
+
min-width: calc(var(--IH) - var(--BR1)) !important;
|
|
578
|
+
}
|
|
579
|
+
.ipt-bx.error:focus-within {
|
|
580
|
+
box-shadow: 0 0 0.3rem var(--B13) !important;
|
|
581
|
+
}
|
|
582
|
+
.ipt-bx.error {
|
|
583
|
+
border-color: var(--B13) !important;
|
|
584
|
+
}
|
|
585
|
+
.ipt-bx.error .ilb,
|
|
586
|
+
.ipt-bx.error .ipt,
|
|
587
|
+
.ipt-bx.error .icon {
|
|
588
|
+
color: var(--B13) !important;
|
|
589
|
+
}
|
|
590
|
+
.ipt-bxh input[type=checkbox]:checked + .ilb,
|
|
591
|
+
.ipt-bxh input[type=radio].checkbox:checked + .ilb {
|
|
592
|
+
opacity: 1 !important;
|
|
593
|
+
font-weight: 500;
|
|
594
|
+
}
|
|
595
|
+
input[type=radio],
|
|
596
|
+
input[type=checkbox],
|
|
597
|
+
.checkbox {
|
|
598
|
+
border: none;
|
|
599
|
+
outline: none;
|
|
600
|
+
appearance: none;
|
|
601
|
+
-webkit-appearance: none;
|
|
602
|
+
display: flex;
|
|
603
|
+
align-items: center;
|
|
604
|
+
transition: var(--ANIM);
|
|
605
|
+
position: relative;
|
|
606
|
+
cursor: pointer;
|
|
607
|
+
}
|
|
608
|
+
input[type=radio]::before,
|
|
609
|
+
input[type=checkbox]::before,
|
|
610
|
+
.checkbox::before {
|
|
611
|
+
content: "";
|
|
612
|
+
width: var(--IRCH) !important;
|
|
613
|
+
height: var(--IRCH) !important;
|
|
614
|
+
border: 0.22rem solid var(--B30);
|
|
615
|
+
box-sizing: border-box;
|
|
616
|
+
transition: var(--ANIM);
|
|
617
|
+
}
|
|
618
|
+
input[type=radio]:not(.checkbox)::before {
|
|
619
|
+
border-radius: 50%;
|
|
620
|
+
background-color: transparent;
|
|
621
|
+
}
|
|
622
|
+
input[type=radio]:not(.checkbox):checked::before {
|
|
623
|
+
box-shadow: 0 0 0 0.22rem var(--B1) inset;
|
|
624
|
+
background-color: var(--B400);
|
|
625
|
+
border-color: var(--B400);
|
|
626
|
+
}
|
|
627
|
+
input[type=checkbox]::before,
|
|
628
|
+
input[type=radio].checkbox::before {
|
|
629
|
+
border-radius: var(--BR1);
|
|
630
|
+
}
|
|
631
|
+
input[type=checkbox]:checked::before,
|
|
632
|
+
input[type=radio].checkbox:checked::before,
|
|
633
|
+
.checkbox.checked::before {
|
|
634
|
+
border-color: var(--B400);
|
|
635
|
+
box-shadow: none;
|
|
636
|
+
background-color: transparent;
|
|
637
|
+
}
|
|
638
|
+
input[type=checkbox]:checked::after,
|
|
639
|
+
input[type=radio].checkbox:checked::after,
|
|
640
|
+
.checkbox.checked::after {
|
|
641
|
+
content: "";
|
|
642
|
+
position: absolute;
|
|
643
|
+
top: 47%;
|
|
644
|
+
left: 49%;
|
|
645
|
+
width: 0.7rem;
|
|
646
|
+
height: 0.35rem;
|
|
647
|
+
border-bottom: 0.2rem solid var(--B400);
|
|
648
|
+
border-left: 0.2rem solid var(--B400);
|
|
649
|
+
transform: translate(-50%, -50%) rotate(-50deg);
|
|
650
|
+
}
|
|
651
|
+
input[type=radio]:checked + .ilb,
|
|
652
|
+
input[type=radio].checkbox:checked + .ilb {
|
|
653
|
+
opacity: 1 !important;
|
|
654
|
+
}
|
|
655
|
+
textarea.ipt {
|
|
656
|
+
display: block;
|
|
657
|
+
flex: 1 1 auto;
|
|
658
|
+
resize: vertical;
|
|
659
|
+
user-select: text;
|
|
660
|
+
box-sizing: border-box;
|
|
661
|
+
padding-bottom: 0.5rem;
|
|
662
|
+
}
|
|
663
|
+
select.ipt {
|
|
664
|
+
-webkit-appearance: none;
|
|
665
|
+
}
|
|
666
|
+
select.ipt:disabled {
|
|
667
|
+
opacity: 0.6;
|
|
668
|
+
cursor: not-allowed;
|
|
669
|
+
}
|
|
670
|
+
select.ipt option {
|
|
671
|
+
background: var(--B2);
|
|
672
|
+
color: var(--T2);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/* src/styles/nexus.loader.css */
|
|
676
|
+
.nexus-container {
|
|
677
|
+
position: absolute;
|
|
678
|
+
top: 0;
|
|
679
|
+
left: 0;
|
|
680
|
+
z-index: 1000000;
|
|
681
|
+
width: 100%;
|
|
682
|
+
height: 100%;
|
|
683
|
+
display: flex;
|
|
684
|
+
justify-content: center;
|
|
685
|
+
align-items: center;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
/* src/styles/nexus.logic.css */
|
|
689
|
+
.ho1:hover {
|
|
690
|
+
opacity: 1;
|
|
691
|
+
}
|
|
692
|
+
.btn.active {
|
|
693
|
+
font-weight: 500;
|
|
694
|
+
}
|
|
695
|
+
.btn.active {
|
|
696
|
+
background-color: var(--ACTIVE_BACKGROUND_COLOR) !important;
|
|
697
|
+
pointer-events: none;
|
|
698
|
+
}
|
|
699
|
+
.btn.active::after {
|
|
700
|
+
content: " ";
|
|
701
|
+
position: absolute;
|
|
702
|
+
width: 100%;
|
|
703
|
+
height: var(--BRD2);
|
|
704
|
+
bottom: 0;
|
|
705
|
+
background-color: var(--ACTIVE_BORDER_COLOR);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
/* src/styles/nexus.utility.css */
|
|
709
|
+
.sb,
|
|
710
|
+
.sbh,
|
|
711
|
+
textarea {
|
|
712
|
+
overflow: auto;
|
|
713
|
+
scrollbar-width: thin;
|
|
714
|
+
scrollbar-color: var(--B30) var(--B2);
|
|
715
|
+
}
|
|
716
|
+
.sbh {
|
|
717
|
+
scrollbar-width: none;
|
|
718
|
+
}
|
|
719
|
+
.sb::-webkit-scrollbar {
|
|
720
|
+
width: var(--SLBW);
|
|
721
|
+
height: var(--SLBW);
|
|
722
|
+
}
|
|
723
|
+
.sb.sm,
|
|
724
|
+
textarea {
|
|
725
|
+
scrollbar-width: thin;
|
|
726
|
+
}
|
|
727
|
+
.sb.sm::-webkit-scrollbar-thumb,
|
|
728
|
+
textarea::-webkit-scrollbar-thumb {
|
|
729
|
+
border-width: 0.08rem;
|
|
730
|
+
}
|
|
731
|
+
.sb::-webkit-scrollbar-track,
|
|
732
|
+
textarea::-webkit-scrollbar-track {
|
|
733
|
+
background: var(--B3);
|
|
734
|
+
}
|
|
735
|
+
.sb::-webkit-scrollbar-thumb,
|
|
736
|
+
textarea::-webkit-scrollbar-thumb {
|
|
737
|
+
background-color: var(--B30);
|
|
738
|
+
border-radius: var(--BR2);
|
|
739
|
+
border: 0.12rem solid var(--B3);
|
|
740
|
+
}
|
|
741
|
+
.sb::-webkit-scrollbar-thumb:hover,
|
|
742
|
+
textarea::-webkit-scrollbar-thumb:hover {
|
|
743
|
+
background-color: var(--B40);
|
|
744
|
+
}
|
|
745
|
+
.sb::-webkit-scrollbar-button,
|
|
746
|
+
textarea::-webkit-scrollbar-button {
|
|
747
|
+
background-color: var(--B3);
|
|
748
|
+
}
|
|
749
|
+
.sb::-webkit-scrollbar-button:hover,
|
|
750
|
+
textarea::-webkit-scrollbar-button:hover {
|
|
751
|
+
background-color: var(--B3);
|
|
752
|
+
}
|
|
753
|
+
.sb::-webkit-scrollbar-corner,
|
|
754
|
+
textarea::-webkit-scrollbar-corner {
|
|
755
|
+
background: var(--B3);
|
|
756
|
+
}
|
|
757
|
+
.sbh::-webkit-scrollbar {
|
|
758
|
+
width: 0;
|
|
759
|
+
height: 0;
|
|
760
|
+
}
|
|
761
|
+
.usn,
|
|
762
|
+
body {
|
|
763
|
+
user-select: none !important;
|
|
764
|
+
}
|
|
765
|
+
.usa {
|
|
766
|
+
user-select: all !important;
|
|
767
|
+
}
|
|
768
|
+
.en {
|
|
769
|
+
pointer-events: none;
|
|
770
|
+
}
|
|
771
|
+
.no-drag {
|
|
772
|
+
user-select: none;
|
|
773
|
+
-webkit-user-drag: none;
|
|
774
|
+
pointer-events: auto;
|
|
775
|
+
}
|
|
776
|
+
.ea {
|
|
777
|
+
pointer-events: all;
|
|
778
|
+
}
|
|
779
|
+
.d {
|
|
780
|
+
pointer-events: none;
|
|
781
|
+
cursor: not-allowed;
|
|
782
|
+
opacity: 0.7;
|
|
783
|
+
}
|
|
784
|
+
.db {
|
|
785
|
+
display: block;
|
|
786
|
+
}
|
|
787
|
+
.dn {
|
|
788
|
+
display: none !important;
|
|
789
|
+
}
|
|
790
|
+
.vv {
|
|
791
|
+
visibility: visible;
|
|
792
|
+
}
|
|
793
|
+
.vh {
|
|
794
|
+
visibility: hidden;
|
|
795
|
+
}
|
|
796
|
+
.dif {
|
|
797
|
+
display: inline-flex;
|
|
798
|
+
}
|
|
799
|
+
.df {
|
|
800
|
+
display: flex;
|
|
801
|
+
}
|
|
802
|
+
.ddc {
|
|
803
|
+
flex-direction: column;
|
|
804
|
+
}
|
|
805
|
+
.fg {
|
|
806
|
+
flex-grow: 1;
|
|
807
|
+
}
|
|
808
|
+
.fw {
|
|
809
|
+
flex-wrap: wrap;
|
|
810
|
+
}
|
|
811
|
+
.ac {
|
|
812
|
+
align-items: center;
|
|
813
|
+
}
|
|
814
|
+
.acc {
|
|
815
|
+
align-content: center;
|
|
816
|
+
}
|
|
817
|
+
.jc {
|
|
818
|
+
justify-content: center;
|
|
819
|
+
}
|
|
820
|
+
.ae {
|
|
821
|
+
align-items: flex-end;
|
|
822
|
+
}
|
|
823
|
+
.jr {
|
|
824
|
+
justify-content: right;
|
|
825
|
+
}
|
|
826
|
+
.jl {
|
|
827
|
+
justify-content: left;
|
|
828
|
+
}
|
|
829
|
+
.sn {
|
|
830
|
+
outline: none;
|
|
831
|
+
border: none;
|
|
832
|
+
background-color: unset;
|
|
833
|
+
}
|
|
834
|
+
.o0 {
|
|
835
|
+
opacity: 0;
|
|
836
|
+
}
|
|
837
|
+
.o1 {
|
|
838
|
+
opacity: 1;
|
|
839
|
+
}
|
|
840
|
+
.oh {
|
|
841
|
+
overflow: hidden;
|
|
842
|
+
}
|
|
843
|
+
.bb {
|
|
844
|
+
box-sizing: border-box;
|
|
845
|
+
}
|
|
846
|
+
.w100 {
|
|
847
|
+
width: 100%;
|
|
848
|
+
}
|
|
849
|
+
.h100 {
|
|
850
|
+
height: 100%;
|
|
851
|
+
}
|
|
852
|
+
.ps {
|
|
853
|
+
position: sticky;
|
|
854
|
+
}
|
|
855
|
+
.pa {
|
|
856
|
+
position: absolute;
|
|
857
|
+
}
|
|
858
|
+
.pf {
|
|
859
|
+
position: fixed;
|
|
860
|
+
}
|
|
861
|
+
.pr {
|
|
862
|
+
position: relative;
|
|
863
|
+
}
|
|
864
|
+
.ty50 {
|
|
865
|
+
transform: translateY(-50%);
|
|
866
|
+
}
|
|
867
|
+
.tx50 {
|
|
868
|
+
transform: translateX(-50%);
|
|
869
|
+
}
|
|
870
|
+
.txy50 {
|
|
871
|
+
transform: translate(-50%, -50%);
|
|
872
|
+
}
|
|
873
|
+
.t50 {
|
|
874
|
+
top: 50%;
|
|
875
|
+
}
|
|
876
|
+
.l50 {
|
|
877
|
+
left: 50%;
|
|
878
|
+
}
|
|
879
|
+
.left {
|
|
880
|
+
left: 0;
|
|
881
|
+
}
|
|
882
|
+
.right {
|
|
883
|
+
right: 0;
|
|
884
|
+
}
|
|
885
|
+
.top {
|
|
886
|
+
top: 0;
|
|
887
|
+
}
|
|
888
|
+
.bottom {
|
|
889
|
+
bottom: 0;
|
|
890
|
+
}
|
|
891
|
+
.r {
|
|
892
|
+
border-radius: var(--BR1);
|
|
893
|
+
}
|
|
894
|
+
.r2 {
|
|
895
|
+
border-radius: var(--BR2);
|
|
896
|
+
}
|
|
897
|
+
.rr {
|
|
898
|
+
border-radius: 50%;
|
|
899
|
+
}
|
|
900
|
+
.anim,
|
|
901
|
+
.h {
|
|
902
|
+
transition: var(--ANIM);
|
|
903
|
+
}
|
|
904
|
+
.no-anim {
|
|
905
|
+
transition: none !important;
|
|
906
|
+
}
|
|
907
|
+
.h,
|
|
908
|
+
.hc {
|
|
909
|
+
cursor: pointer;
|
|
910
|
+
}
|
|
911
|
+
.rs {
|
|
912
|
+
resize: both !important;
|
|
913
|
+
position: relative;
|
|
914
|
+
}
|
|
915
|
+
.cur-move {
|
|
916
|
+
cursor: move !important;
|
|
917
|
+
}
|
|
918
|
+
.nw {
|
|
919
|
+
white-space: nowrap;
|
|
920
|
+
}
|
|
921
|
+
.toh {
|
|
922
|
+
white-space: nowrap !important;
|
|
923
|
+
overflow: hidden !important;
|
|
924
|
+
text-overflow: ellipsis !important;
|
|
925
|
+
}
|
|
926
|
+
.tl {
|
|
927
|
+
text-align: left !important;
|
|
928
|
+
}
|
|
929
|
+
.tr {
|
|
930
|
+
text-align: right !important;
|
|
931
|
+
}
|
|
932
|
+
.tj {
|
|
933
|
+
text-align: justify !important;
|
|
934
|
+
}
|
|
935
|
+
.tc {
|
|
936
|
+
text-align: center !important;
|
|
937
|
+
}
|
|
938
|
+
del {
|
|
939
|
+
position: relative;
|
|
940
|
+
}
|
|
941
|
+
.l-bb {
|
|
942
|
+
text-decoration: underline;
|
|
943
|
+
}
|
|
944
|
+
del:after {
|
|
945
|
+
content: "";
|
|
946
|
+
width: 100%;
|
|
947
|
+
top: 50%;
|
|
948
|
+
left: 0;
|
|
949
|
+
border-bottom: 0.15rem solid red;
|
|
950
|
+
position: absolute;
|
|
951
|
+
}
|
|
952
|
+
.u {
|
|
953
|
+
text-decoration: underline;
|
|
954
|
+
}
|
|
955
|
+
.ma {
|
|
956
|
+
margin: auto;
|
|
957
|
+
}
|
|
958
|
+
.mw {
|
|
959
|
+
width: var(--MW);
|
|
960
|
+
max-width: var(--MW);
|
|
961
|
+
}
|
|
962
|
+
@media (max-width: 1150px) {
|
|
963
|
+
:root {
|
|
964
|
+
--MW: 95vw;
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
@media (max-width: 950px) {
|
|
968
|
+
:root {
|
|
969
|
+
--MW: 98vw;
|
|
970
|
+
}
|
|
971
|
+
.client-menu .utilities {
|
|
972
|
+
width: 100% !important;
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
/*# sourceMappingURL=index.css.map */
|