@seeqdev/qomponents 0.0.0 → 0.0.2
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/README.md +33 -13
- package/dist/Button/Button.d.ts +5 -0
- package/dist/Button/Button.js +71 -0
- package/dist/Button/Button.js.map +1 -0
- package/dist/Button/Button.stories.d.ts +3 -5
- package/dist/Button/Button.stories.js +58 -0
- package/dist/Button/Button.stories.js.map +1 -0
- package/dist/Button/Button.test.js +49 -0
- package/dist/Button/Button.test.js.map +1 -0
- package/dist/Button/Button.types.d.ts +19 -4
- package/dist/Button/Button.types.js +4 -0
- package/dist/Button/Button.types.js.map +1 -0
- package/dist/Button/index.js +2 -0
- package/dist/Button/index.js.map +1 -0
- package/dist/FontCustom.woff +0 -0
- package/dist/FontCustom.woff2 +0 -0
- package/dist/Icon/Icon.d.ts +10 -0
- package/dist/Icon/Icon.js +54 -0
- package/dist/Icon/Icon.js.map +1 -0
- package/dist/Icon/Icon.stories.d.ts +5 -0
- package/dist/Icon/Icon.stories.js +40 -0
- package/dist/Icon/Icon.stories.js.map +1 -0
- package/dist/Icon/Icon.test.d.ts +1 -0
- package/dist/Icon/Icon.test.js +55 -0
- package/dist/Icon/Icon.test.js.map +1 -0
- package/dist/Icon/Icon.types.d.ts +38 -0
- package/dist/Icon/Icon.types.js +16 -0
- package/dist/Icon/Icon.types.js.map +1 -0
- package/dist/Icon/index.d.ts +1 -0
- package/dist/Icon/index.js +2 -0
- package/dist/Icon/index.js.map +1 -0
- package/dist/TextField/TextField.d.ts +7 -0
- package/dist/TextField/TextField.js +47 -0
- package/dist/TextField/TextField.js.map +1 -0
- package/dist/TextField/TextField.stories.d.ts +5 -0
- package/dist/TextField/TextField.stories.js +33 -0
- package/dist/TextField/TextField.stories.js.map +1 -0
- package/dist/TextField/TextField.test.d.ts +1 -0
- package/dist/TextField/TextField.test.js +35 -0
- package/dist/TextField/TextField.test.js.map +1 -0
- package/dist/TextField/TextField.types.d.ts +16 -0
- package/dist/TextField/TextField.types.js +2 -0
- package/dist/TextField/TextField.types.js.map +1 -0
- package/dist/TextField/index.d.ts +1 -0
- package/dist/TextField/index.js +2 -0
- package/dist/TextField/index.js.map +1 -0
- package/dist/Tooltip/Tooltip.d.ts +7 -0
- package/dist/Tooltip/Tooltip.js +30 -0
- package/dist/Tooltip/Tooltip.js.map +1 -0
- package/dist/Tooltip/Tooltip.stories.d.ts +5 -0
- package/dist/Tooltip/Tooltip.stories.js +32 -0
- package/dist/Tooltip/Tooltip.stories.js.map +1 -0
- package/dist/Tooltip/Tooltip.types.d.ts +9 -0
- package/dist/Tooltip/Tooltip.types.js +3 -0
- package/dist/Tooltip/Tooltip.types.js.map +1 -0
- package/dist/Tooltip/index.d.ts +1 -0
- package/dist/Tooltip/index.js +2 -0
- package/dist/Tooltip/index.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +182 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +183 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1732 -181
- package/dist/utils/browserId.js +29 -0
- package/dist/utils/browserId.js.map +1 -0
- package/package.json +3 -1
package/dist/styles.css
CHANGED
|
@@ -1,6 +1,1084 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'fontCustom';
|
|
3
|
+
src: url('FontCustom.woff2') format('woff2'),
|
|
4
|
+
url('FontCustom.woff') format('woff');
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.fc {
|
|
10
|
+
font: normal normal normal 14px/1 fontCustom;
|
|
11
|
+
font-family: fontCustom !important;
|
|
12
|
+
speak: none;
|
|
13
|
+
text-transform: none;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/* Better Font Rendering =========== */
|
|
18
|
+
-webkit-font-smoothing: antialiased;
|
|
19
|
+
-moz-osx-font-smoothing: grayscale;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fa-1x {
|
|
23
|
+
font-size: 1em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fa-2x {
|
|
27
|
+
font-size: 2em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fa-3x {
|
|
31
|
+
font-size: 3em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fa-4x {
|
|
35
|
+
font-size: 4em;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.fa-5x {
|
|
39
|
+
font-size: 5em;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.fa-6x {
|
|
43
|
+
font-size: 6em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.fa-7x {
|
|
47
|
+
font-size: 7em;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.fa-8x {
|
|
51
|
+
font-size: 8em;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.fa-9x {
|
|
55
|
+
font-size: 9em;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.fa-10x {
|
|
59
|
+
font-size: 10em;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.fa-2xs {
|
|
63
|
+
font-size: 0.625em;
|
|
64
|
+
line-height: 0.1em;
|
|
65
|
+
vertical-align: 0.225em;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.fa-xs {
|
|
69
|
+
font-size: 0.75em;
|
|
70
|
+
line-height: 0.08333em;
|
|
71
|
+
vertical-align: 0.125em;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.fa-sm {
|
|
75
|
+
font-size: 0.875em;
|
|
76
|
+
line-height: 0.07143em;
|
|
77
|
+
vertical-align: 0.05357em;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.fa-lg {
|
|
81
|
+
font-size: 1.25em;
|
|
82
|
+
line-height: 0.05em;
|
|
83
|
+
vertical-align: -0.075em;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.fa-xl {
|
|
87
|
+
font-size: 1.5em;
|
|
88
|
+
line-height: 0.04167em;
|
|
89
|
+
vertical-align: -0.125em;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.fa-2xl {
|
|
93
|
+
font-size: 2em;
|
|
94
|
+
line-height: 0.03125em;
|
|
95
|
+
vertical-align: -0.1875em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.fa-fw {
|
|
99
|
+
text-align: center;
|
|
100
|
+
width: 1.25em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.fc-bell-regular:before {
|
|
104
|
+
content: '\e9a0';
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.fc-bell-solid:before {
|
|
108
|
+
content: '\e99f';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.fc-copy-date-2:before {
|
|
112
|
+
content: '\e99e';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.fc-copy-date:before {
|
|
116
|
+
content: '\e99d';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.fc-bell-cog:before {
|
|
120
|
+
content: '\e99c';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.fc-announcements:before {
|
|
124
|
+
content: '\e99b';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.fc-sun:before {
|
|
128
|
+
content: '\e99a';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.fc-marker:before {
|
|
132
|
+
content: '\a961';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.fc-display-range-unused:before {
|
|
136
|
+
content: '\a96e';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.fc-series-new:before {
|
|
140
|
+
content: '\a979';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.fc-scatterplot-line:before {
|
|
144
|
+
content: '\e900';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.fc-annotate:before {
|
|
148
|
+
content: '\e901';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.fc-capsule:before {
|
|
152
|
+
content: '\e902';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.fc-search-limit:before {
|
|
156
|
+
content: '\e903';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.fc-search-logic:before {
|
|
160
|
+
content: '\e904';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.fc-search-pattern:before {
|
|
164
|
+
content: '\e905';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.fc-search-power:before {
|
|
168
|
+
content: '\e906';
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.fc-home:before {
|
|
172
|
+
content: '\e907';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.fc-capsule-set:before {
|
|
176
|
+
content: '\e908';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.fc-scatterplot:before {
|
|
180
|
+
content: '\e909';
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.fc-series:before {
|
|
184
|
+
content: '\e90a';
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.fc-group:before {
|
|
188
|
+
content: '\e90b';
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.fc-boundary-alert:before {
|
|
192
|
+
content: '\e90c';
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.fc-chart-alert:before {
|
|
196
|
+
content: '\e90d';
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.fc-seeq-datalab:before {
|
|
200
|
+
content: '\e90e';
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.fc-seeq-datalab-lock:before {
|
|
204
|
+
content: '\e90f';
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.fc-all-items:before {
|
|
208
|
+
content: '\e910';
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.fc-asset-tree:before {
|
|
212
|
+
content: '\e911';
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.fc-trend:before {
|
|
216
|
+
content: '\e912';
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.fc-flag:before {
|
|
220
|
+
content: '\e913';
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.fc-capsules:before {
|
|
224
|
+
content: '\e914';
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.fc-connect:before {
|
|
228
|
+
content: '\e915';
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.fc-display-range:before {
|
|
232
|
+
content: '\e916';
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.fc-statistics:before {
|
|
236
|
+
content: '\e917';
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.fc-eye:before {
|
|
240
|
+
content: '\e918';
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.fc-eye-o:before {
|
|
244
|
+
content: '\e919';
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.fc-data-file:before {
|
|
248
|
+
content: '\e91a';
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.fc-gridline:before {
|
|
252
|
+
content: '\e91b';
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.fc-model-and-predict:before {
|
|
256
|
+
content: '\e91c';
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.fc-cleanse:before {
|
|
260
|
+
content: '\e91d';
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.fc-identify:before {
|
|
264
|
+
content: '\e91e';
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.fc-quantify:before {
|
|
268
|
+
content: '\e91f';
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.fc-treemap:before {
|
|
272
|
+
content: '\e920';
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.fc-series-dim:before {
|
|
276
|
+
content: '\e921';
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.fc-series-gen:before {
|
|
280
|
+
content: '\e922';
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.fc-formula:before {
|
|
284
|
+
content: '\e923';
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.fc-alignment:before {
|
|
288
|
+
content: '\e924';
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.fc-delete:before {
|
|
292
|
+
content: '\e925';
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.fc-list:before {
|
|
296
|
+
content: '\e926';
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.fc-tile:before {
|
|
300
|
+
content: '\e927';
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.fc-arrow_down:before {
|
|
304
|
+
content: '\e928';
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.fc-arrow_up:before {
|
|
308
|
+
content: '\e929';
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.fc-user-community:before {
|
|
312
|
+
content: '\e92a';
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.fc-certificate:before {
|
|
316
|
+
content: '\e92b';
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.fc-training:before {
|
|
320
|
+
content: '\e92c';
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.fc-knowledge-base:before {
|
|
324
|
+
content: '\e92d';
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.fc-causality:before {
|
|
328
|
+
content: '\e92e';
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.fc-parallel-coordinate:before {
|
|
332
|
+
content: '\e92f';
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.fc-arrow_updown:before {
|
|
336
|
+
content: '\e930';
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.fc-circle_warning:before {
|
|
340
|
+
content: '\e931';
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.fc-circle_info:before {
|
|
344
|
+
content: '\e932';
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.fc-warning:before {
|
|
348
|
+
content: '\e933';
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.fc-grab-window:before {
|
|
352
|
+
content: '\e934';
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.fc-magnify:before {
|
|
356
|
+
content: '\e935';
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.fc-box-empty:before {
|
|
360
|
+
content: '\e936';
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.fc-box-check:before {
|
|
364
|
+
content: '\e937';
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.fc-circle-empty:before {
|
|
368
|
+
content: '\e938';
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.fc-circle-check:before {
|
|
372
|
+
content: '\e939';
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.fc-q_search:before {
|
|
376
|
+
content: '\e93a';
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.fc-scatterplot-select:before {
|
|
380
|
+
content: '\e93b';
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.fc-redo:before {
|
|
384
|
+
content: '\e93c';
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.fc-digital-filter:before {
|
|
388
|
+
content: '\e93d';
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.fc-support:before {
|
|
392
|
+
content: '\e93e';
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.fc-binoculars:before {
|
|
396
|
+
content: '\e93f';
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.fc-check:before {
|
|
400
|
+
content: '\e940';
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.fc-filter:before {
|
|
404
|
+
content: '\e941';
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.fc-trash:before {
|
|
408
|
+
content: '\e942';
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.fc-gear:before {
|
|
412
|
+
content: '\e943';
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.fc-lock:before {
|
|
416
|
+
content: '\e944';
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.fc-lock-open:before {
|
|
420
|
+
content: '\e945';
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.fc-arrow-dropdown:before {
|
|
424
|
+
content: '\e946';
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.fc-mag-glass-empty:before {
|
|
428
|
+
content: '\e947';
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.fc-globe:before {
|
|
432
|
+
content: '\e948';
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.fc-edit:before {
|
|
436
|
+
content: '\e949';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.fc-add-column:before {
|
|
440
|
+
content: '\e94a';
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.fc-add-row:before {
|
|
444
|
+
content: '\e94b';
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.fc-border-style:before {
|
|
448
|
+
content: '\e94c';
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.fc-clock-density:before {
|
|
452
|
+
content: '\e94d';
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.fc-plus-assets:before {
|
|
456
|
+
content: '\e94e';
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.fc-plus-selected:before {
|
|
460
|
+
content: '\e94f';
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.fc-comment:before {
|
|
464
|
+
content: '\e950';
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.fc-user:before {
|
|
468
|
+
content: '\e951';
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.fc-engineer:before {
|
|
472
|
+
content: '\e952';
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.fc-pricing:before {
|
|
476
|
+
content: '\e953';
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.fc-free-trial:before {
|
|
480
|
+
content: '\e954';
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.fc-partners:before {
|
|
484
|
+
content: '\e955';
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.fc-meter:before {
|
|
488
|
+
content: '\e956';
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.fc-beaker:before {
|
|
492
|
+
content: '\e957';
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.fc-lightbulb:before {
|
|
496
|
+
content: '\e958';
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.fc-pdf:before {
|
|
500
|
+
content: '\e959';
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.fc-add-column-2:before {
|
|
504
|
+
content: '\e95a';
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.fc-add-row-2:before {
|
|
508
|
+
content: '\e95b';
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.fc-eraser:before {
|
|
512
|
+
content: '\e95c';
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.fc-paintbrush:before {
|
|
516
|
+
content: '\e95d';
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.fc-rows:before {
|
|
520
|
+
content: '\e95e';
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.fc-quick-start:before {
|
|
524
|
+
content: '\e95f';
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.fc-video:before {
|
|
528
|
+
content: '\e960';
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.fc-wireless2:before {
|
|
532
|
+
content: '\e961';
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.fc-wireless:before {
|
|
536
|
+
content: '\e962';
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.fc-mag-glass:before {
|
|
540
|
+
content: '\e963';
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.fc-data:before {
|
|
544
|
+
content: '\e964';
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.fc-annotation:before {
|
|
548
|
+
content: '\e965';
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.fc-briefcase:before {
|
|
552
|
+
content: '\e966';
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.fc-investigate:before {
|
|
556
|
+
content: '\e967';
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.fc-monitor:before {
|
|
560
|
+
content: '\e968';
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.fc-clipboard:before {
|
|
564
|
+
content: '\e969';
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.fc-share-access:before {
|
|
568
|
+
content: '\e96a';
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.fc-bar-chart-horizontal:before {
|
|
572
|
+
content: '\e96b';
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.fc-stacked-bar-chart:before {
|
|
576
|
+
content: '\e96c';
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.fc-stacked-bar-horizontal:before {
|
|
580
|
+
content: '\e96d';
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.fc-excel:before {
|
|
584
|
+
content: '\e96e';
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.fc-Asset1:before {
|
|
588
|
+
content: '\e96f';
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.fc-gears-2:before {
|
|
592
|
+
content: '\e970';
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.fc-pharma:before {
|
|
596
|
+
content: '\e971';
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.fc-water:before {
|
|
600
|
+
content: '\e972';
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.fc-chemical:before {
|
|
604
|
+
content: '\e973';
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.fc-oil:before {
|
|
608
|
+
content: '\e974';
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.fc-beverage:before {
|
|
612
|
+
content: '\e975';
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.fc-utilities:before {
|
|
616
|
+
content: '\e976';
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.fc-manufacturing:before {
|
|
620
|
+
content: '\e977';
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.fc-industry:before {
|
|
624
|
+
content: '\e978';
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.fc-viz-normal:before {
|
|
628
|
+
content: '\e979';
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.fc-compare:before {
|
|
632
|
+
content: '\e97a';
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.fc-diamond:before {
|
|
636
|
+
content: '\e97b';
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.fc-square:before {
|
|
640
|
+
content: '\e97c';
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.fc-triangle:before {
|
|
644
|
+
content: '\e97d';
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.fc-rectangle:before {
|
|
648
|
+
content: '\e97e';
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.fc-strip:before {
|
|
652
|
+
content: '\e97f';
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.fc-viz-overlay:before {
|
|
656
|
+
content: '\e980';
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.fc-viz-chain:before {
|
|
660
|
+
content: '\e981';
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.fc-graph:before {
|
|
664
|
+
content: '\e982';
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.fc-pin:before {
|
|
668
|
+
content: '\e983';
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.fc-y-axis:before {
|
|
672
|
+
content: '\e984';
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.fc-capsule-bar:before {
|
|
676
|
+
content: '\e985';
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.fc-copy:before {
|
|
680
|
+
content: '\e986';
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.fc-link:before {
|
|
684
|
+
content: '\e987';
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.fc-unlink:before {
|
|
688
|
+
content: '\e988';
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.fc-step-back-full:before {
|
|
692
|
+
content: '\e989';
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.fc-displays:before {
|
|
696
|
+
content: '\e98a';
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.fc-overwrite:before {
|
|
700
|
+
content: '\e98b';
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.fc-rename:before {
|
|
704
|
+
content: '\e98c';
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.fc-parallel-boundary:before {
|
|
708
|
+
content: '\e98d';
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.fc-loading-notch:before {
|
|
712
|
+
content: '\e98e';
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.fc-skill-explorer:before {
|
|
716
|
+
content: '\e98f';
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.fc-step-fore-full:before {
|
|
720
|
+
content: '\e990';
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.fc-step-back-half:before {
|
|
724
|
+
content: '\e991';
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.fc-step-fore-half:before {
|
|
728
|
+
content: '\e992';
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.fc-arrow-down:before {
|
|
732
|
+
content: '\e993';
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.fc-arrow-up:before {
|
|
736
|
+
content: '\e994';
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.fc-expand-close:before {
|
|
740
|
+
content: '\e995';
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.fc-expand-open:before {
|
|
744
|
+
content: '\e996';
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.fc-axis:before {
|
|
748
|
+
content: '\e997';
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.fc-axis-o:before {
|
|
752
|
+
content: '\e998';
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.fc-solid:before {
|
|
756
|
+
content: '\e999';
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.fc-short-dash:before {
|
|
760
|
+
content: '\f901';
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.fc-short-dot:before {
|
|
764
|
+
content: '\f902';
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.fc-short-dash-dot:before {
|
|
768
|
+
content: '\f903';
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.fc-short-dash-dot-dot:before {
|
|
772
|
+
content: '\f904';
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.fc-dot:before {
|
|
776
|
+
content: '\f905';
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.fc-dash:before {
|
|
780
|
+
content: '\f906';
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.fc-long-dash:before {
|
|
784
|
+
content: '\f907';
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.fc-dash-dot:before {
|
|
788
|
+
content: '\f908';
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.fc-long-dash-dot:before {
|
|
792
|
+
content: '\f909';
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.fc-long-dash-dot-dot:before {
|
|
796
|
+
content: '\f910';
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.fc-scalar:before {
|
|
800
|
+
content: '\f911';
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.fc-detail-columns:before {
|
|
804
|
+
content: '\f912';
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.fc-workbook:before {
|
|
808
|
+
content: '\f913';
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.fc-workbook-user:before {
|
|
812
|
+
content: '\f914';
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.fc-workbook-lock:before {
|
|
816
|
+
content: '\f915';
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.fc-workbook-globe:before {
|
|
820
|
+
content: '\f916';
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.fc-arrow-circle:before {
|
|
824
|
+
content: '\f917';
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.fc-condition-define:before {
|
|
828
|
+
content: '\f918';
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.fc-condition-combine:before {
|
|
832
|
+
content: '\f919';
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.fc-series-modify:before {
|
|
836
|
+
content: '\f920';
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.fc-boundary:before {
|
|
840
|
+
content: '\f923';
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.fc-condition-digital:before {
|
|
844
|
+
content: '\f924';
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.fc-timing:before {
|
|
848
|
+
content: '\f925';
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.fc-series-properties:before {
|
|
852
|
+
content: '\f926';
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.fc-import:before {
|
|
856
|
+
content: '\f927';
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.fc-export:before {
|
|
860
|
+
content: '\f928';
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.fc-pivision:before {
|
|
864
|
+
content: '\f929';
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.fc-samples-and-line:before {
|
|
868
|
+
content: '\f930';
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.fc-samples-only:before {
|
|
872
|
+
content: '\f931';
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.fc-prediction:before {
|
|
876
|
+
content: '\f932';
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.fc-lowpass:before {
|
|
880
|
+
content: '\f933';
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.fc-bar-chart:before {
|
|
884
|
+
content: '\f934';
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.fc-ancillaries:before {
|
|
888
|
+
content: '\f935';
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.fc-deviation:before {
|
|
892
|
+
content: '\f936';
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.fc-journal:before {
|
|
896
|
+
content: '\f937';
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.fc-journal-edit:before {
|
|
900
|
+
content: '\f938';
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.fc-line-bars:before {
|
|
904
|
+
content: '\f939';
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.fc-reference:before {
|
|
908
|
+
content: '\f940';
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.fc-powerpoint:before {
|
|
912
|
+
content: '\f941';
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.fc-link-seeq:before {
|
|
916
|
+
content: '\f942';
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.fc-journal-blank:before {
|
|
920
|
+
content: '\f943';
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.fc-more:before {
|
|
924
|
+
content: '\f944';
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.fc-share:before {
|
|
928
|
+
content: '\f945';
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.fc-periodic-condition:before {
|
|
932
|
+
content: '\f946';
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.fc-report:before {
|
|
936
|
+
content: '\f947';
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.fc-seeq-content:before {
|
|
940
|
+
content: '\f948';
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.fc-table:before {
|
|
944
|
+
content: '\f949';
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.fc-unit:before {
|
|
948
|
+
content: '\f950';
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.fc-metric:before {
|
|
952
|
+
content: '\f951';
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.fc-pdf-export:before {
|
|
956
|
+
content: '\f952';
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.fc-x-circle:before {
|
|
960
|
+
content: '\f953';
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.fc-stop:before {
|
|
964
|
+
content: '\f954';
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.fc-report-lock:before {
|
|
968
|
+
content: '\f955';
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.fc-analysis:before {
|
|
972
|
+
content: '\f956';
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.fc-analysis-lock:before {
|
|
976
|
+
content: '\f957';
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.fc-requests:before {
|
|
980
|
+
content: '\f958';
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.fc-folder:before {
|
|
984
|
+
content: '\f959';
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.fc-folder-move:before {
|
|
988
|
+
content: '\f960';
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.fc-folder-new:before {
|
|
992
|
+
content: '\f961';
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.fc-folder-lock:before {
|
|
996
|
+
content: '\f962';
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.fc-pin-o:before {
|
|
1000
|
+
content: '\f963';
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.fc-refresh:before {
|
|
1004
|
+
content: '\f964';
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.fc-arrow-right-right:before {
|
|
1008
|
+
content: '\f965';
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.fc-arrow-left-left:before {
|
|
1012
|
+
content: '\f966';
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.fc-refresh-on:before {
|
|
1016
|
+
content: '\f967';
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.fc-refresh-off:before {
|
|
1020
|
+
content: '\f968';
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.fc-box-plus:before {
|
|
1024
|
+
content: '\f969';
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.fc-box-minus:before {
|
|
1028
|
+
content: '\f970';
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.fc-circle_plus:before {
|
|
1032
|
+
content: '\f971';
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.fc-circle_minus:before {
|
|
1036
|
+
content: '\f972';
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.fc-page-break:before {
|
|
1040
|
+
content: '\f973';
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.fc-restore:before {
|
|
1044
|
+
content: '\f974';
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.fc-subscription:before {
|
|
1048
|
+
content: '\f975';
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.fc-jobs:before {
|
|
1052
|
+
content: '\f976';
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.fc-trash_info:before {
|
|
1056
|
+
content: '\f977';
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.fc-trash_info2:before {
|
|
1060
|
+
content: '\f978';
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.fc-bell-curve:before {
|
|
1064
|
+
content: '\f979';
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.fc-facebook:before {
|
|
1068
|
+
content: '\ea90';
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.fc-facebook2:before {
|
|
1072
|
+
content: '\ea91';
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.fc-youtube:before {
|
|
1076
|
+
content: '\ea9d';
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
/* ! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com */
|
|
1080
|
+
|
|
1
1081
|
/*
|
|
2
|
-
! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com
|
|
3
|
-
*//*
|
|
4
1082
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
1083
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
6
1084
|
*/
|
|
@@ -338,6 +1416,7 @@ button,
|
|
|
338
1416
|
/*
|
|
339
1417
|
Make sure disabled buttons don't get the pointer cursor.
|
|
340
1418
|
*/
|
|
1419
|
+
|
|
341
1420
|
:disabled {
|
|
342
1421
|
cursor: default;
|
|
343
1422
|
}
|
|
@@ -371,223 +1450,695 @@ video {
|
|
|
371
1450
|
}
|
|
372
1451
|
|
|
373
1452
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
1453
|
+
|
|
374
1454
|
[hidden] {
|
|
375
1455
|
display: none;
|
|
376
1456
|
}
|
|
377
|
-
|
|
1457
|
+
|
|
1458
|
+
:root {
|
|
378
1459
|
--sq-color-dark: 42, 92, 132;
|
|
1460
|
+
--sq-color-dark-dark: 145, 180, 203;
|
|
379
1461
|
--sq-white: 255, 255, 255;
|
|
380
1462
|
--sq-color-highlight: 4, 145, 194;
|
|
381
1463
|
--sq-text-color: 58, 58, 58;
|
|
382
1464
|
--sq-disabled-gray: 221, 225, 227;
|
|
383
1465
|
--sq-light-gray: 241, 245, 247;
|
|
384
1466
|
--sq-dark-gray: 226, 226, 226;
|
|
1467
|
+
--sq-fairly-dark-gray: 96, 96, 97;
|
|
1468
|
+
--sq-darkish-gray: 183, 183, 183;
|
|
385
1469
|
--sq-danger-color: 217, 83, 79;
|
|
1470
|
+
--sq-warning-color: 240, 173, 78;
|
|
1471
|
+
--sq-success-color: 114, 192, 44;
|
|
386
1472
|
--sq-icon: 4, 145, 194;
|
|
387
1473
|
--sq-link: 42, 92, 132;
|
|
1474
|
+
--sq-dark-background: 36, 37, 37;
|
|
1475
|
+
--sq-dark-text: 194, 188, 176;
|
|
1476
|
+
--sq-dark-disabled-gray: 70, 73, 73;
|
|
1477
|
+
--sq-highlight-color-dark: 36, 45, 49;
|
|
388
1478
|
}
|
|
389
1479
|
|
|
390
|
-
|
|
1480
|
+
.color_topic {
|
|
391
1481
|
--sq-color-dark: 42, 92, 132;
|
|
1482
|
+
--sq-color-dark-dark: 145, 180, 203;
|
|
1483
|
+
--sq-color-light: 237, 247, 246;
|
|
392
1484
|
--sq-color-highlight: 4, 145, 194;
|
|
393
1485
|
--sq-icon: 4, 145, 194;
|
|
394
1486
|
--sq-link: 42, 92, 132;
|
|
1487
|
+
--sq-link-dark: 145, 180, 203;
|
|
1488
|
+
--sq-icon-dark: 4, 145, 194;
|
|
395
1489
|
}
|
|
396
1490
|
|
|
397
|
-
|
|
398
|
-
--sq-color-dark:
|
|
399
|
-
--sq-color-
|
|
400
|
-
--sq-
|
|
1491
|
+
.color_analysis {
|
|
1492
|
+
--sq-color-dark: 0, 121, 96;
|
|
1493
|
+
--sq-color-dark-dark: 31, 207, 166;
|
|
1494
|
+
--sq-color-light: 237, 247, 246;
|
|
1495
|
+
--sq-color-highlight: 0, 153, 100;
|
|
1496
|
+
--sq-icon: 0, 160, 89;
|
|
401
1497
|
--sq-link: 0, 121, 96;
|
|
1498
|
+
--sq-link-dark: 21, 99, 81;
|
|
1499
|
+
--sq-icon-dark: 23, 126, 77;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.color_datalab {
|
|
1503
|
+
--sq-color-dark: 242, 103, 34;
|
|
1504
|
+
--sq-color-dark-dark: 242, 103, 34;
|
|
1505
|
+
--sq-color-light: 237, 247, 246;
|
|
1506
|
+
--sq-color-highlight: 244, 123, 62;
|
|
1507
|
+
--sq-icon: 242, 103, 34;
|
|
1508
|
+
--sq-link: 242, 103, 34;
|
|
402
1509
|
}
|
|
403
1510
|
|
|
404
1511
|
*, ::before, ::after {
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
1512
|
+
--tw-border-spacing-x: 0;
|
|
1513
|
+
--tw-border-spacing-y: 0;
|
|
1514
|
+
--tw-translate-x: 0;
|
|
1515
|
+
--tw-translate-y: 0;
|
|
1516
|
+
--tw-rotate: 0;
|
|
1517
|
+
--tw-skew-x: 0;
|
|
1518
|
+
--tw-skew-y: 0;
|
|
1519
|
+
--tw-scale-x: 1;
|
|
1520
|
+
--tw-scale-y: 1;
|
|
1521
|
+
--tw-pan-x: ;
|
|
1522
|
+
--tw-pan-y: ;
|
|
1523
|
+
--tw-pinch-zoom: ;
|
|
1524
|
+
--tw-scroll-snap-strictness: proximity;
|
|
1525
|
+
--tw-ordinal: ;
|
|
1526
|
+
--tw-slashed-zero: ;
|
|
1527
|
+
--tw-numeric-figure: ;
|
|
1528
|
+
--tw-numeric-spacing: ;
|
|
1529
|
+
--tw-numeric-fraction: ;
|
|
1530
|
+
--tw-ring-inset: ;
|
|
1531
|
+
--tw-ring-offset-width: 0px;
|
|
1532
|
+
--tw-ring-offset-color: #fff;
|
|
1533
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
1534
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1535
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1536
|
+
--tw-shadow: 0 0 #0000;
|
|
1537
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1538
|
+
--tw-blur: ;
|
|
1539
|
+
--tw-brightness: ;
|
|
1540
|
+
--tw-contrast: ;
|
|
1541
|
+
--tw-grayscale: ;
|
|
1542
|
+
--tw-hue-rotate: ;
|
|
1543
|
+
--tw-invert: ;
|
|
1544
|
+
--tw-saturate: ;
|
|
1545
|
+
--tw-sepia: ;
|
|
1546
|
+
--tw-drop-shadow: ;
|
|
1547
|
+
--tw-backdrop-blur: ;
|
|
1548
|
+
--tw-backdrop-brightness: ;
|
|
1549
|
+
--tw-backdrop-contrast: ;
|
|
1550
|
+
--tw-backdrop-grayscale: ;
|
|
1551
|
+
--tw-backdrop-hue-rotate: ;
|
|
1552
|
+
--tw-backdrop-invert: ;
|
|
1553
|
+
--tw-backdrop-opacity: ;
|
|
1554
|
+
--tw-backdrop-saturate: ;
|
|
1555
|
+
--tw-backdrop-sepia: ;
|
|
449
1556
|
}
|
|
450
1557
|
|
|
451
1558
|
::backdrop {
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
.
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
.
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
.
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
.
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
.
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
.
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
.
|
|
547
|
-
|
|
1559
|
+
--tw-border-spacing-x: 0;
|
|
1560
|
+
--tw-border-spacing-y: 0;
|
|
1561
|
+
--tw-translate-x: 0;
|
|
1562
|
+
--tw-translate-y: 0;
|
|
1563
|
+
--tw-rotate: 0;
|
|
1564
|
+
--tw-skew-x: 0;
|
|
1565
|
+
--tw-skew-y: 0;
|
|
1566
|
+
--tw-scale-x: 1;
|
|
1567
|
+
--tw-scale-y: 1;
|
|
1568
|
+
--tw-pan-x: ;
|
|
1569
|
+
--tw-pan-y: ;
|
|
1570
|
+
--tw-pinch-zoom: ;
|
|
1571
|
+
--tw-scroll-snap-strictness: proximity;
|
|
1572
|
+
--tw-ordinal: ;
|
|
1573
|
+
--tw-slashed-zero: ;
|
|
1574
|
+
--tw-numeric-figure: ;
|
|
1575
|
+
--tw-numeric-spacing: ;
|
|
1576
|
+
--tw-numeric-fraction: ;
|
|
1577
|
+
--tw-ring-inset: ;
|
|
1578
|
+
--tw-ring-offset-width: 0px;
|
|
1579
|
+
--tw-ring-offset-color: #fff;
|
|
1580
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
1581
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1582
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1583
|
+
--tw-shadow: 0 0 #0000;
|
|
1584
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1585
|
+
--tw-blur: ;
|
|
1586
|
+
--tw-brightness: ;
|
|
1587
|
+
--tw-contrast: ;
|
|
1588
|
+
--tw-grayscale: ;
|
|
1589
|
+
--tw-hue-rotate: ;
|
|
1590
|
+
--tw-invert: ;
|
|
1591
|
+
--tw-saturate: ;
|
|
1592
|
+
--tw-sepia: ;
|
|
1593
|
+
--tw-drop-shadow: ;
|
|
1594
|
+
--tw-backdrop-blur: ;
|
|
1595
|
+
--tw-backdrop-brightness: ;
|
|
1596
|
+
--tw-backdrop-contrast: ;
|
|
1597
|
+
--tw-backdrop-grayscale: ;
|
|
1598
|
+
--tw-backdrop-hue-rotate: ;
|
|
1599
|
+
--tw-backdrop-invert: ;
|
|
1600
|
+
--tw-backdrop-opacity: ;
|
|
1601
|
+
--tw-backdrop-saturate: ;
|
|
1602
|
+
--tw-backdrop-sepia: ;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.tw-absolute {
|
|
1606
|
+
position: absolute;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.tw-relative {
|
|
1610
|
+
position: relative;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.-tw-bottom-2 {
|
|
1614
|
+
bottom: -0.5rem;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.-tw-left-3 {
|
|
1618
|
+
left: -0.75rem;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.-tw-right-3 {
|
|
1622
|
+
right: -0.75rem;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.-tw-top-2 {
|
|
1626
|
+
top: -0.5rem;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.tw-left-1\/2 {
|
|
1630
|
+
left: 50%;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.tw-top-1\/2 {
|
|
1634
|
+
top: 50%;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.tw-z-50 {
|
|
1638
|
+
z-index: 50;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.tw-mr-1 {
|
|
1642
|
+
margin-right: 0.25rem;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.tw-inline-block {
|
|
1646
|
+
display: inline-block;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.tw-grid {
|
|
1650
|
+
display: grid;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.tw-hidden {
|
|
1654
|
+
display: none;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.-tw-translate-x-1\/2 {
|
|
1658
|
+
--tw-translate-x: -50%;
|
|
1659
|
+
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));
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.-tw-translate-x-full {
|
|
1663
|
+
--tw-translate-x: -100%;
|
|
1664
|
+
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));
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.-tw-translate-y-1\/2 {
|
|
1668
|
+
--tw-translate-y: -50%;
|
|
1669
|
+
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));
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.-tw-translate-y-full {
|
|
1673
|
+
--tw-translate-y: -100%;
|
|
1674
|
+
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));
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.tw-translate-x-full {
|
|
1678
|
+
--tw-translate-x: 100%;
|
|
1679
|
+
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));
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.tw-translate-y-full {
|
|
1683
|
+
--tw-translate-y: 100%;
|
|
1684
|
+
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));
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.tw-grid-cols-2 {
|
|
1688
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
.tw-grid-cols-3 {
|
|
1692
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.tw-grid-cols-4 {
|
|
1696
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.tw-gap-4 {
|
|
1700
|
+
gap: 1rem;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
.tw-whitespace-nowrap {
|
|
1704
|
+
white-space: nowrap;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
.tw-rounded {
|
|
1708
|
+
border-radius: 0.25rem;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.tw-rounded-sm {
|
|
1712
|
+
border-radius: 3px;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.tw-border {
|
|
1716
|
+
border-width: 1px;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.tw-border-solid {
|
|
1720
|
+
border-style: solid;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.tw-border-sq-disabled-gray {
|
|
1724
|
+
--tw-border-opacity: 1;
|
|
1725
|
+
border-color: rgba(var(--sq-disabled-gray), var(--tw-border-opacity));
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.tw-bg-black {
|
|
1729
|
+
--tw-bg-opacity: 1;
|
|
1730
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
.tw-bg-sq-color-dark {
|
|
1734
|
+
--tw-bg-opacity: 1;
|
|
1735
|
+
background-color: rgba(var(--sq-color-dark), var(--tw-bg-opacity));
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.tw-bg-sq-danger-color {
|
|
1739
|
+
--tw-bg-opacity: 1;
|
|
1740
|
+
background-color: rgba(var(--sq-danger-color), var(--tw-bg-opacity));
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
.tw-bg-sq-dark-background {
|
|
1744
|
+
--tw-bg-opacity: 1;
|
|
1745
|
+
background-color: rgba(var(--sq-dark-background), var(--tw-bg-opacity));
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
.tw-bg-sq-icon {
|
|
1749
|
+
--tw-bg-opacity: 1;
|
|
1750
|
+
background-color: rgba(var(--sq-icon), var(--tw-bg-opacity));
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
.tw-bg-sq-warning-color {
|
|
1754
|
+
--tw-bg-opacity: 1;
|
|
1755
|
+
background-color: rgba(var(--sq-warning-color), var(--tw-bg-opacity));
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.tw-p-1 {
|
|
1759
|
+
padding: 0.25rem;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.tw-p-2 {
|
|
1763
|
+
padding: 0.5rem;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.tw-p-4 {
|
|
1767
|
+
padding: 1rem;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.tw-px-2 {
|
|
1771
|
+
padding-left: 0.5rem;
|
|
1772
|
+
padding-right: 0.5rem;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.tw-px-2\.5 {
|
|
1776
|
+
padding-left: 0.625rem;
|
|
1777
|
+
padding-right: 0.625rem;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.tw-px-3 {
|
|
1781
|
+
padding-left: 0.75rem;
|
|
1782
|
+
padding-right: 0.75rem;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.tw-py-1 {
|
|
1786
|
+
padding-top: 0.25rem;
|
|
1787
|
+
padding-bottom: 0.25rem;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.tw-text-center {
|
|
1791
|
+
text-align: center;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.tw-text-sm {
|
|
1795
|
+
font-size: 0.875rem;
|
|
1796
|
+
line-height: 1.25rem;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.tw-text-xl {
|
|
1800
|
+
font-size: 1.25rem;
|
|
1801
|
+
line-height: 1.75rem;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.tw-text-xs {
|
|
1805
|
+
font-size: 0.75rem;
|
|
1806
|
+
line-height: 1rem;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.tw-leading-normal {
|
|
1810
|
+
line-height: 1.5;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.tw-text-sq-color-dark {
|
|
1814
|
+
--tw-text-opacity: 1;
|
|
1815
|
+
color: rgba(var(--sq-color-dark), var(--tw-text-opacity));
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.tw-text-sq-color-light {
|
|
1819
|
+
--tw-text-opacity: 1;
|
|
1820
|
+
color: rgba(var(--sq-color-light), var(--tw-text-opacity));
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.tw-text-sq-danger-color {
|
|
1824
|
+
--tw-text-opacity: 1;
|
|
1825
|
+
color: rgba(var(--sq-danger-color), var(--tw-text-opacity));
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.tw-text-sq-darkish-gray {
|
|
1829
|
+
--tw-text-opacity: 1;
|
|
1830
|
+
color: rgba(var(--sq-darkish-gray), var(--tw-text-opacity));
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.tw-text-sq-disabled-gray {
|
|
1834
|
+
--tw-text-opacity: 1;
|
|
1835
|
+
color: rgba(var(--sq-disabled-gray), var(--tw-text-opacity));
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.tw-text-sq-fairly-dark-gray {
|
|
1839
|
+
--tw-text-opacity: 1;
|
|
1840
|
+
color: rgba(var(--sq-fairly-dark-gray), var(--tw-text-opacity));
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.tw-text-sq-link {
|
|
1844
|
+
--tw-text-opacity: 1;
|
|
1845
|
+
color: rgba(var(--sq-link), var(--tw-text-opacity));
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.tw-text-sq-success-color {
|
|
1849
|
+
--tw-text-opacity: 1;
|
|
1850
|
+
color: rgba(var(--sq-success-color), var(--tw-text-opacity));
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.tw-text-sq-text-color {
|
|
1854
|
+
--tw-text-opacity: 1;
|
|
1855
|
+
color: rgba(var(--sq-text-color), var(--tw-text-opacity));
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.tw-text-sq-warning-color {
|
|
1859
|
+
--tw-text-opacity: 1;
|
|
1860
|
+
color: rgba(var(--sq-warning-color), var(--tw-text-opacity));
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.tw-text-white {
|
|
1864
|
+
--tw-text-opacity: 1;
|
|
1865
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.tw-opacity-0 {
|
|
1869
|
+
opacity: 0;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.tw-outline-none {
|
|
1873
|
+
outline: 2px solid transparent;
|
|
1874
|
+
outline-offset: 2px;
|
|
548
1875
|
}
|
|
1876
|
+
|
|
549
1877
|
/* Heads up! Before these colors can be used you must also add them to the tailwind.config.cjs! */
|
|
1878
|
+
|
|
550
1879
|
/* Make sure to keep these colors in sync with the webserver/_custom_variables.scss values to ensure cohesive UIs */
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
1880
|
+
|
|
1881
|
+
.before\:tw-absolute::before {
|
|
1882
|
+
content: var(--tw-content);
|
|
1883
|
+
position: absolute;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.before\:-tw-bottom-4::before {
|
|
1887
|
+
content: var(--tw-content);
|
|
1888
|
+
bottom: -1rem;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.before\:-tw-top-4::before {
|
|
1892
|
+
content: var(--tw-content);
|
|
1893
|
+
top: -1rem;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.before\:tw-left-1\/2::before {
|
|
1897
|
+
content: var(--tw-content);
|
|
1898
|
+
left: 50%;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.before\:tw-left-\[100\%\]::before {
|
|
1902
|
+
content: var(--tw-content);
|
|
1903
|
+
left: 100%;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.before\:tw-right-\[100\%\]::before {
|
|
1907
|
+
content: var(--tw-content);
|
|
1908
|
+
right: 100%;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.before\:tw-top-1\/2::before {
|
|
1912
|
+
content: var(--tw-content);
|
|
1913
|
+
top: 50%;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.before\:-tw-translate-x-1\/2::before {
|
|
1917
|
+
content: var(--tw-content);
|
|
1918
|
+
--tw-translate-x: -50%;
|
|
1919
|
+
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));
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.before\:-tw-translate-y-1\/2::before {
|
|
1923
|
+
content: var(--tw-content);
|
|
1924
|
+
--tw-translate-y: -50%;
|
|
1925
|
+
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));
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.before\:tw-border-8::before {
|
|
1929
|
+
content: var(--tw-content);
|
|
1930
|
+
border-width: 8px;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.before\:tw-border-y-transparent::before {
|
|
1934
|
+
content: var(--tw-content);
|
|
1935
|
+
border-top-color: transparent;
|
|
1936
|
+
border-bottom-color: transparent;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
.before\:tw-border-b-black::before {
|
|
1940
|
+
content: var(--tw-content);
|
|
1941
|
+
--tw-border-opacity: 1;
|
|
1942
|
+
border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
.before\:tw-border-b-transparent::before {
|
|
1946
|
+
content: var(--tw-content);
|
|
1947
|
+
border-bottom-color: transparent;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.before\:tw-border-l-black::before {
|
|
1951
|
+
content: var(--tw-content);
|
|
1952
|
+
--tw-border-opacity: 1;
|
|
1953
|
+
border-left-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.before\:tw-border-l-transparent::before {
|
|
1957
|
+
content: var(--tw-content);
|
|
1958
|
+
border-left-color: transparent;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.before\:tw-border-r-black::before {
|
|
1962
|
+
content: var(--tw-content);
|
|
1963
|
+
--tw-border-opacity: 1;
|
|
1964
|
+
border-right-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
554
1965
|
}
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
1966
|
+
|
|
1967
|
+
.before\:tw-border-r-transparent::before {
|
|
1968
|
+
content: var(--tw-content);
|
|
1969
|
+
border-right-color: transparent;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.before\:tw-border-t-black::before {
|
|
1973
|
+
content: var(--tw-content);
|
|
1974
|
+
--tw-border-opacity: 1;
|
|
1975
|
+
border-top-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.before\:tw-border-t-transparent::before {
|
|
1979
|
+
content: var(--tw-content);
|
|
1980
|
+
border-top-color: transparent;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.before\:tw-content-\[\'\'\]::before {
|
|
1984
|
+
--tw-content: '';
|
|
1985
|
+
content: var(--tw-content);
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.hover\:tw-bg-sq-color-highlight:hover {
|
|
1989
|
+
--tw-bg-opacity: 1;
|
|
1990
|
+
background-color: rgba(var(--sq-color-highlight), var(--tw-bg-opacity));
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.hover\:tw-bg-sq-danger-color-hover:hover {
|
|
1994
|
+
--tw-bg-opacity: 1;
|
|
1995
|
+
background-color: rgb(212 59 55 / var(--tw-bg-opacity));
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.hover\:tw-bg-sq-light-gray:hover {
|
|
1999
|
+
--tw-bg-opacity: 1;
|
|
2000
|
+
background-color: rgba(var(--sq-light-gray), var(--tw-bg-opacity));
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.hover\:tw-bg-sq-link:hover {
|
|
2004
|
+
--tw-bg-opacity: 1;
|
|
2005
|
+
background-color: rgba(var(--sq-link), var(--tw-bg-opacity));
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
.focus\:tw-border-sq-color-dark:focus {
|
|
2009
|
+
--tw-border-opacity: 1;
|
|
2010
|
+
border-color: rgba(var(--sq-color-dark), var(--tw-border-opacity));
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
.focus\:tw-bg-sq-dark-gray:focus {
|
|
2014
|
+
--tw-bg-opacity: 1;
|
|
2015
|
+
background-color: rgba(var(--sq-dark-gray), var(--tw-bg-opacity));
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
.focus\:tw-ring-0:focus {
|
|
2019
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2020
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2021
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2022
|
+
--tw-ring-color: r;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
.active\:tw-border-sq-color-dark:active {
|
|
2026
|
+
--tw-border-opacity: 1;
|
|
2027
|
+
border-color: rgba(var(--sq-color-dark), var(--tw-border-opacity));
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.active\:tw-bg-sq-dark-gray:active {
|
|
2031
|
+
--tw-bg-opacity: 1;
|
|
2032
|
+
background-color: rgba(var(--sq-dark-gray), var(--tw-bg-opacity));
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.disabled\:tw-pointer-events-none:disabled {
|
|
2036
|
+
pointer-events: none;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.disabled\:tw-cursor-not-allowed:disabled {
|
|
2040
|
+
cursor: not-allowed;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.disabled\:tw-bg-opacity-50:disabled {
|
|
2044
|
+
--tw-bg-opacity: 0.5;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
.tw-group:hover .group-hover\:tw-inline-block {
|
|
2048
|
+
display: inline-block;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
2052
|
+
opacity: 1;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
.tw-dark .dark\:tw-border-sq-dark-disabled-gray {
|
|
2056
|
+
--tw-border-opacity: 1;
|
|
2057
|
+
border-color: rgba(var(--sq-dark-disabled-gray), var(--tw-border-opacity));
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.tw-dark .dark\:tw-bg-sq-color-dark {
|
|
2061
|
+
--tw-bg-opacity: 1;
|
|
2062
|
+
background-color: rgba(var(--sq-color-dark), var(--tw-bg-opacity));
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.tw-dark .dark\:tw-bg-sq-dark-background {
|
|
2066
|
+
--tw-bg-opacity: 1;
|
|
2067
|
+
background-color: rgba(var(--sq-dark-background), var(--tw-bg-opacity));
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.tw-dark .dark\:tw-bg-sq-icon-dark {
|
|
2071
|
+
--tw-bg-opacity: 1;
|
|
2072
|
+
background-color: rgba(var(--sq-icon-dark), var(--tw-bg-opacity));
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.tw-dark .dark\:tw-text-sq-color-dark-dark {
|
|
2076
|
+
--tw-text-opacity: 1;
|
|
2077
|
+
color: rgba(var(--sq-color-dark-dark), var(--tw-text-opacity));
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
.tw-dark .dark\:tw-text-sq-dark-disabled-gray {
|
|
2081
|
+
--tw-text-opacity: 1;
|
|
2082
|
+
color: rgba(var(--sq-dark-disabled-gray), var(--tw-text-opacity));
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
.tw-dark .dark\:tw-text-sq-dark-text {
|
|
2086
|
+
--tw-text-opacity: 1;
|
|
2087
|
+
color: rgba(var(--sq-dark-text), var(--tw-text-opacity));
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
.tw-dark .dark\:tw-text-sq-link-dark {
|
|
2091
|
+
--tw-text-opacity: 1;
|
|
2092
|
+
color: rgba(var(--sq-link-dark), var(--tw-text-opacity));
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.tw-dark .dark\:tw-text-white {
|
|
2096
|
+
--tw-text-opacity: 1;
|
|
2097
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
.tw-dark .dark\:hover\:tw-bg-sq-color-highlight:hover {
|
|
2101
|
+
--tw-bg-opacity: 1;
|
|
2102
|
+
background-color: rgba(var(--sq-color-highlight), var(--tw-bg-opacity));
|
|
558
2103
|
}
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
2104
|
+
|
|
2105
|
+
.tw-dark .dark\:hover\:tw-bg-sq-highlight-color-dark:hover {
|
|
2106
|
+
--tw-bg-opacity: 1;
|
|
2107
|
+
background-color: rgba(var(--sq-highlight-color-dark), var(--tw-bg-opacity));
|
|
562
2108
|
}
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
2109
|
+
|
|
2110
|
+
.tw-dark .dark\:hover\:tw-bg-sq-link-dark:hover {
|
|
2111
|
+
--tw-bg-opacity: 1;
|
|
2112
|
+
background-color: rgba(var(--sq-link-dark), var(--tw-bg-opacity));
|
|
566
2113
|
}
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
2114
|
+
|
|
2115
|
+
.tw-dark .dark\:focus\:tw-border-sq-color-dark:focus {
|
|
2116
|
+
--tw-border-opacity: 1;
|
|
2117
|
+
border-color: rgba(var(--sq-color-dark), var(--tw-border-opacity));
|
|
570
2118
|
}
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
2119
|
+
|
|
2120
|
+
.tw-dark .dark\:focus\:tw-border-sq-color-dark-dark:focus {
|
|
2121
|
+
--tw-border-opacity: 1;
|
|
2122
|
+
border-color: rgba(var(--sq-color-dark-dark), var(--tw-border-opacity));
|
|
574
2123
|
}
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
2124
|
+
|
|
2125
|
+
.tw-dark .dark\:focus\:tw-bg-sq-dark-gray:focus {
|
|
2126
|
+
--tw-bg-opacity: 1;
|
|
2127
|
+
background-color: rgba(var(--sq-dark-gray), var(--tw-bg-opacity));
|
|
579
2128
|
}
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
2129
|
+
|
|
2130
|
+
.tw-dark .dark\:active\:tw-border-sq-color-dark:active {
|
|
2131
|
+
--tw-border-opacity: 1;
|
|
2132
|
+
border-color: rgba(var(--sq-color-dark), var(--tw-border-opacity));
|
|
583
2133
|
}
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
2134
|
+
|
|
2135
|
+
.tw-dark .dark\:active\:tw-border-sq-color-dark-dark:active {
|
|
2136
|
+
--tw-border-opacity: 1;
|
|
2137
|
+
border-color: rgba(var(--sq-color-dark-dark), var(--tw-border-opacity));
|
|
587
2138
|
}
|
|
588
|
-
|
|
589
|
-
|
|
2139
|
+
|
|
2140
|
+
.tw-dark .dark\:active\:tw-bg-sq-dark-gray:active {
|
|
2141
|
+
--tw-bg-opacity: 1;
|
|
2142
|
+
background-color: rgba(var(--sq-dark-gray), var(--tw-bg-opacity));
|
|
590
2143
|
}
|
|
591
|
-
|
|
592
|
-
--tw-bg-opacity: 0.5;
|
|
593
|
-
}
|
|
2144
|
+
|