@seniorsistemas/angular-components 17.27.1-feature-sds-110-1bb20c20 → 17.27.1-feature-sds-110-9a13a8bc
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/package.json +13 -13
- package/src/lib/styles/tailwind.scss +4 -3
- package/tailwind.css +390 -469
package/tailwind.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
@import '@angular/cdk/overlay-prebuilt.css';
|
|
2
|
+
*, ::before, ::after{
|
|
2
3
|
--tw-border-spacing-x: 0;
|
|
3
4
|
--tw-border-spacing-y: 0;
|
|
4
5
|
--tw-translate-x: 0;
|
|
@@ -51,8 +52,7 @@
|
|
|
51
52
|
--tw-contain-paint: ;
|
|
52
53
|
--tw-contain-style: ;
|
|
53
54
|
}
|
|
54
|
-
|
|
55
|
-
::backdrop {
|
|
55
|
+
::backdrop{
|
|
56
56
|
--tw-border-spacing-x: 0;
|
|
57
57
|
--tw-border-spacing-y: 0;
|
|
58
58
|
--tw-translate-x: 0;
|
|
@@ -104,13 +104,14 @@
|
|
|
104
104
|
--tw-contain-layout: ;
|
|
105
105
|
--tw-contain-paint: ;
|
|
106
106
|
--tw-contain-style: ;
|
|
107
|
-
}
|
|
107
|
+
}
|
|
108
|
+
/*
|
|
108
109
|
! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
|
|
109
|
-
|
|
110
|
+
*/
|
|
111
|
+
/*
|
|
110
112
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
111
113
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
112
114
|
*/
|
|
113
|
-
|
|
114
115
|
*,
|
|
115
116
|
::before,
|
|
116
117
|
::after {
|
|
@@ -119,12 +120,10 @@
|
|
|
119
120
|
border-style: solid; /* 2 */
|
|
120
121
|
border-color: currentColor; /* 2 */
|
|
121
122
|
}
|
|
122
|
-
|
|
123
123
|
::before,
|
|
124
124
|
::after {
|
|
125
125
|
--tw-content: '';
|
|
126
126
|
}
|
|
127
|
-
|
|
128
127
|
/*
|
|
129
128
|
1. Use a consistent sensible line-height in all browsers.
|
|
130
129
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
@@ -134,7 +133,6 @@
|
|
|
134
133
|
6. Use the user's configured `sans` font-variation-settings by default.
|
|
135
134
|
7. Disable tap highlights on iOS
|
|
136
135
|
*/
|
|
137
|
-
|
|
138
136
|
html,
|
|
139
137
|
:host {
|
|
140
138
|
line-height: 1.5; /* 1 */
|
|
@@ -147,42 +145,34 @@ html,
|
|
|
147
145
|
font-variation-settings: normal; /* 6 */
|
|
148
146
|
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
149
147
|
}
|
|
150
|
-
|
|
151
148
|
/*
|
|
152
149
|
1. Remove the margin in all browsers.
|
|
153
150
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
154
151
|
*/
|
|
155
|
-
|
|
156
152
|
body {
|
|
157
153
|
margin: 0; /* 1 */
|
|
158
154
|
line-height: inherit; /* 2 */
|
|
159
155
|
}
|
|
160
|
-
|
|
161
156
|
/*
|
|
162
157
|
1. Add the correct height in Firefox.
|
|
163
158
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
164
159
|
3. Ensure horizontal rules are visible by default.
|
|
165
160
|
*/
|
|
166
|
-
|
|
167
161
|
hr {
|
|
168
162
|
height: 0; /* 1 */
|
|
169
163
|
color: inherit; /* 2 */
|
|
170
164
|
border-top-width: 1px; /* 3 */
|
|
171
165
|
}
|
|
172
|
-
|
|
173
166
|
/*
|
|
174
167
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
175
168
|
*/
|
|
176
|
-
|
|
177
169
|
abbr:where([title]) {
|
|
178
170
|
-webkit-text-decoration: underline dotted;
|
|
179
171
|
text-decoration: underline dotted;
|
|
180
172
|
}
|
|
181
|
-
|
|
182
173
|
/*
|
|
183
174
|
Remove the default font size and weight for headings.
|
|
184
175
|
*/
|
|
185
|
-
|
|
186
176
|
h1,
|
|
187
177
|
h2,
|
|
188
178
|
h3,
|
|
@@ -192,32 +182,26 @@ h6 {
|
|
|
192
182
|
font-size: inherit;
|
|
193
183
|
font-weight: inherit;
|
|
194
184
|
}
|
|
195
|
-
|
|
196
185
|
/*
|
|
197
186
|
Reset links to optimize for opt-in styling instead of opt-out.
|
|
198
187
|
*/
|
|
199
|
-
|
|
200
188
|
a {
|
|
201
189
|
color: inherit;
|
|
202
190
|
text-decoration: inherit;
|
|
203
191
|
}
|
|
204
|
-
|
|
205
192
|
/*
|
|
206
193
|
Add the correct font weight in Edge and Safari.
|
|
207
194
|
*/
|
|
208
|
-
|
|
209
195
|
b,
|
|
210
196
|
strong {
|
|
211
197
|
font-weight: bolder;
|
|
212
198
|
}
|
|
213
|
-
|
|
214
199
|
/*
|
|
215
200
|
1. Use the user's configured `mono` font-family by default.
|
|
216
201
|
2. Use the user's configured `mono` font-feature-settings by default.
|
|
217
202
|
3. Use the user's configured `mono` font-variation-settings by default.
|
|
218
203
|
4. Correct the odd `em` font sizing in all browsers.
|
|
219
204
|
*/
|
|
220
|
-
|
|
221
205
|
code,
|
|
222
206
|
kbd,
|
|
223
207
|
samp,
|
|
@@ -227,19 +211,15 @@ pre {
|
|
|
227
211
|
font-variation-settings: normal; /* 3 */
|
|
228
212
|
font-size: 1em; /* 4 */
|
|
229
213
|
}
|
|
230
|
-
|
|
231
214
|
/*
|
|
232
215
|
Add the correct font size in all browsers.
|
|
233
216
|
*/
|
|
234
|
-
|
|
235
217
|
small {
|
|
236
218
|
font-size: 80%;
|
|
237
219
|
}
|
|
238
|
-
|
|
239
220
|
/*
|
|
240
221
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
241
222
|
*/
|
|
242
|
-
|
|
243
223
|
sub,
|
|
244
224
|
sup {
|
|
245
225
|
font-size: 75%;
|
|
@@ -247,33 +227,27 @@ sup {
|
|
|
247
227
|
position: relative;
|
|
248
228
|
vertical-align: baseline;
|
|
249
229
|
}
|
|
250
|
-
|
|
251
230
|
sub {
|
|
252
231
|
bottom: -0.25em;
|
|
253
232
|
}
|
|
254
|
-
|
|
255
233
|
sup {
|
|
256
234
|
top: -0.5em;
|
|
257
235
|
}
|
|
258
|
-
|
|
259
236
|
/*
|
|
260
237
|
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)
|
|
261
238
|
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)
|
|
262
239
|
3. Remove gaps between table borders by default.
|
|
263
240
|
*/
|
|
264
|
-
|
|
265
241
|
table {
|
|
266
242
|
text-indent: 0; /* 1 */
|
|
267
243
|
border-color: inherit; /* 2 */
|
|
268
244
|
border-collapse: collapse; /* 3 */
|
|
269
245
|
}
|
|
270
|
-
|
|
271
246
|
/*
|
|
272
247
|
1. Change the font styles in all browsers.
|
|
273
248
|
2. Remove the margin in Firefox and Safari.
|
|
274
249
|
3. Remove default padding in all browsers.
|
|
275
250
|
*/
|
|
276
|
-
|
|
277
251
|
button,
|
|
278
252
|
input,
|
|
279
253
|
optgroup,
|
|
@@ -290,21 +264,17 @@ textarea {
|
|
|
290
264
|
margin: 0; /* 2 */
|
|
291
265
|
padding: 0; /* 3 */
|
|
292
266
|
}
|
|
293
|
-
|
|
294
267
|
/*
|
|
295
268
|
Remove the inheritance of text transform in Edge and Firefox.
|
|
296
269
|
*/
|
|
297
|
-
|
|
298
270
|
button,
|
|
299
271
|
select {
|
|
300
272
|
text-transform: none;
|
|
301
273
|
}
|
|
302
|
-
|
|
303
274
|
/*
|
|
304
275
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
305
276
|
2. Remove default button styles.
|
|
306
277
|
*/
|
|
307
|
-
|
|
308
278
|
button,
|
|
309
279
|
input:where([type='button']),
|
|
310
280
|
input:where([type='reset']),
|
|
@@ -313,80 +283,62 @@ input:where([type='submit']) {
|
|
|
313
283
|
background-color: transparent; /* 2 */
|
|
314
284
|
background-image: none; /* 2 */
|
|
315
285
|
}
|
|
316
|
-
|
|
317
286
|
/*
|
|
318
287
|
Use the modern Firefox focus style for all focusable elements.
|
|
319
288
|
*/
|
|
320
|
-
|
|
321
289
|
:-moz-focusring {
|
|
322
290
|
outline: auto;
|
|
323
291
|
}
|
|
324
|
-
|
|
325
292
|
/*
|
|
326
293
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
327
294
|
*/
|
|
328
|
-
|
|
329
295
|
:-moz-ui-invalid {
|
|
330
296
|
box-shadow: none;
|
|
331
297
|
}
|
|
332
|
-
|
|
333
298
|
/*
|
|
334
299
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
335
300
|
*/
|
|
336
|
-
|
|
337
301
|
progress {
|
|
338
302
|
vertical-align: baseline;
|
|
339
303
|
}
|
|
340
|
-
|
|
341
304
|
/*
|
|
342
305
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
343
306
|
*/
|
|
344
|
-
|
|
345
307
|
::-webkit-inner-spin-button,
|
|
346
308
|
::-webkit-outer-spin-button {
|
|
347
309
|
height: auto;
|
|
348
310
|
}
|
|
349
|
-
|
|
350
311
|
/*
|
|
351
312
|
1. Correct the odd appearance in Chrome and Safari.
|
|
352
313
|
2. Correct the outline style in Safari.
|
|
353
314
|
*/
|
|
354
|
-
|
|
355
315
|
[type='search'] {
|
|
356
316
|
-webkit-appearance: textfield; /* 1 */
|
|
357
317
|
outline-offset: -2px; /* 2 */
|
|
358
318
|
}
|
|
359
|
-
|
|
360
319
|
/*
|
|
361
320
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
362
321
|
*/
|
|
363
|
-
|
|
364
322
|
::-webkit-search-decoration {
|
|
365
323
|
-webkit-appearance: none;
|
|
366
324
|
}
|
|
367
|
-
|
|
368
325
|
/*
|
|
369
326
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
370
327
|
2. Change font properties to `inherit` in Safari.
|
|
371
328
|
*/
|
|
372
|
-
|
|
373
329
|
::-webkit-file-upload-button {
|
|
374
330
|
-webkit-appearance: button; /* 1 */
|
|
375
331
|
font: inherit; /* 2 */
|
|
376
332
|
}
|
|
377
|
-
|
|
378
333
|
/*
|
|
379
334
|
Add the correct display in Chrome and Safari.
|
|
380
335
|
*/
|
|
381
|
-
|
|
382
336
|
summary {
|
|
383
337
|
display: list-item;
|
|
384
338
|
}
|
|
385
|
-
|
|
386
339
|
/*
|
|
387
340
|
Removes the default spacing and border for appropriate elements.
|
|
388
341
|
*/
|
|
389
|
-
|
|
390
342
|
blockquote,
|
|
391
343
|
dl,
|
|
392
344
|
dd,
|
|
@@ -402,16 +354,13 @@ p,
|
|
|
402
354
|
pre {
|
|
403
355
|
margin: 0;
|
|
404
356
|
}
|
|
405
|
-
|
|
406
357
|
fieldset {
|
|
407
358
|
margin: 0;
|
|
408
359
|
padding: 0;
|
|
409
360
|
}
|
|
410
|
-
|
|
411
361
|
legend {
|
|
412
362
|
padding: 0;
|
|
413
363
|
}
|
|
414
|
-
|
|
415
364
|
ol,
|
|
416
365
|
ul,
|
|
417
366
|
menu {
|
|
@@ -419,60 +368,49 @@ menu {
|
|
|
419
368
|
margin: 0;
|
|
420
369
|
padding: 0;
|
|
421
370
|
}
|
|
422
|
-
|
|
423
371
|
/*
|
|
424
372
|
Reset default styling for dialogs.
|
|
425
373
|
*/
|
|
426
374
|
dialog {
|
|
427
375
|
padding: 0;
|
|
428
376
|
}
|
|
429
|
-
|
|
430
377
|
/*
|
|
431
378
|
Prevent resizing textareas horizontally by default.
|
|
432
379
|
*/
|
|
433
|
-
|
|
434
380
|
textarea {
|
|
435
381
|
resize: vertical;
|
|
436
382
|
}
|
|
437
|
-
|
|
438
383
|
/*
|
|
439
384
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
440
385
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
441
386
|
*/
|
|
442
|
-
|
|
443
387
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
444
388
|
opacity: 1; /* 1 */
|
|
445
389
|
color: #9ca3af; /* 2 */
|
|
446
390
|
}
|
|
447
|
-
|
|
448
391
|
input::placeholder,
|
|
449
392
|
textarea::placeholder {
|
|
450
393
|
opacity: 1; /* 1 */
|
|
451
394
|
color: #9ca3af; /* 2 */
|
|
452
395
|
}
|
|
453
|
-
|
|
454
396
|
/*
|
|
455
397
|
Set the default cursor for buttons.
|
|
456
398
|
*/
|
|
457
|
-
|
|
458
399
|
button,
|
|
459
400
|
[role="button"] {
|
|
460
401
|
cursor: pointer;
|
|
461
402
|
}
|
|
462
|
-
|
|
463
403
|
/*
|
|
464
404
|
Make sure disabled buttons don't get the pointer cursor.
|
|
465
405
|
*/
|
|
466
406
|
:disabled {
|
|
467
407
|
cursor: default;
|
|
468
408
|
}
|
|
469
|
-
|
|
470
409
|
/*
|
|
471
410
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
472
411
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
473
412
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
474
413
|
*/
|
|
475
|
-
|
|
476
414
|
img,
|
|
477
415
|
svg,
|
|
478
416
|
video,
|
|
@@ -484,684 +422,667 @@ object {
|
|
|
484
422
|
display: block; /* 1 */
|
|
485
423
|
vertical-align: middle; /* 2 */
|
|
486
424
|
}
|
|
487
|
-
|
|
488
425
|
/*
|
|
489
426
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
490
427
|
*/
|
|
491
|
-
|
|
492
428
|
img,
|
|
493
429
|
video {
|
|
494
430
|
max-width: 100%;
|
|
495
431
|
height: auto;
|
|
496
432
|
}
|
|
497
|
-
|
|
498
433
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
499
434
|
[hidden]:where(:not([hidden="until-found"])) {
|
|
500
435
|
display: none;
|
|
501
|
-
}
|
|
502
|
-
.\!container
|
|
436
|
+
}
|
|
437
|
+
.\!container{
|
|
503
438
|
width: 100% !important;
|
|
504
|
-
}
|
|
505
|
-
.container
|
|
439
|
+
}
|
|
440
|
+
.container{
|
|
506
441
|
width: 100%;
|
|
507
|
-
}
|
|
508
|
-
@media (min-width: 0)
|
|
509
|
-
|
|
510
|
-
.\!container {
|
|
442
|
+
}
|
|
443
|
+
@media (min-width: 0){
|
|
444
|
+
.\!container{
|
|
511
445
|
max-width: 0 !important;
|
|
512
446
|
}
|
|
513
|
-
|
|
514
|
-
.container {
|
|
447
|
+
.container{
|
|
515
448
|
max-width: 0;
|
|
516
449
|
}
|
|
517
|
-
}
|
|
518
|
-
@media (min-width: 576px)
|
|
519
|
-
|
|
520
|
-
.\!container {
|
|
450
|
+
}
|
|
451
|
+
@media (min-width: 576px){
|
|
452
|
+
.\!container{
|
|
521
453
|
max-width: 576px !important;
|
|
522
454
|
}
|
|
523
|
-
|
|
524
|
-
.container {
|
|
455
|
+
.container{
|
|
525
456
|
max-width: 576px;
|
|
526
457
|
}
|
|
527
|
-
}
|
|
528
|
-
@media (min-width: 768px)
|
|
529
|
-
|
|
530
|
-
.\!container {
|
|
458
|
+
}
|
|
459
|
+
@media (min-width: 768px){
|
|
460
|
+
.\!container{
|
|
531
461
|
max-width: 768px !important;
|
|
532
462
|
}
|
|
533
|
-
|
|
534
|
-
.container {
|
|
463
|
+
.container{
|
|
535
464
|
max-width: 768px;
|
|
536
465
|
}
|
|
537
|
-
}
|
|
538
|
-
@media (min-width: 992px)
|
|
539
|
-
|
|
540
|
-
.\!container {
|
|
466
|
+
}
|
|
467
|
+
@media (min-width: 992px){
|
|
468
|
+
.\!container{
|
|
541
469
|
max-width: 992px !important;
|
|
542
470
|
}
|
|
543
|
-
|
|
544
|
-
.container {
|
|
471
|
+
.container{
|
|
545
472
|
max-width: 992px;
|
|
546
473
|
}
|
|
547
|
-
}
|
|
548
|
-
@media (min-width: 1200px)
|
|
549
|
-
|
|
550
|
-
.\!container {
|
|
474
|
+
}
|
|
475
|
+
@media (min-width: 1200px){
|
|
476
|
+
.\!container{
|
|
551
477
|
max-width: 1200px !important;
|
|
552
478
|
}
|
|
553
|
-
|
|
554
|
-
.container {
|
|
479
|
+
.container{
|
|
555
480
|
max-width: 1200px;
|
|
556
481
|
}
|
|
557
|
-
}
|
|
558
|
-
@media (min-width: 1360px)
|
|
559
|
-
|
|
560
|
-
.\!container {
|
|
482
|
+
}
|
|
483
|
+
@media (min-width: 1360px){
|
|
484
|
+
.\!container{
|
|
561
485
|
max-width: 1360px !important;
|
|
562
486
|
}
|
|
563
|
-
|
|
564
|
-
.container {
|
|
487
|
+
.container{
|
|
565
488
|
max-width: 1360px;
|
|
566
489
|
}
|
|
567
|
-
}
|
|
568
|
-
@media (min-width: 1600px)
|
|
569
|
-
|
|
570
|
-
.\!container {
|
|
490
|
+
}
|
|
491
|
+
@media (min-width: 1600px){
|
|
492
|
+
.\!container{
|
|
571
493
|
max-width: 1600px !important;
|
|
572
494
|
}
|
|
573
|
-
|
|
574
|
-
.container {
|
|
495
|
+
.container{
|
|
575
496
|
max-width: 1600px;
|
|
576
497
|
}
|
|
577
|
-
}
|
|
578
|
-
.pointer-events-none
|
|
498
|
+
}
|
|
499
|
+
.pointer-events-none{
|
|
579
500
|
pointer-events: none;
|
|
580
|
-
}
|
|
581
|
-
.pointer-events-auto
|
|
501
|
+
}
|
|
502
|
+
.pointer-events-auto{
|
|
582
503
|
pointer-events: auto;
|
|
583
|
-
}
|
|
584
|
-
.\!visible
|
|
504
|
+
}
|
|
505
|
+
.\!visible{
|
|
585
506
|
visibility: visible !important;
|
|
586
|
-
}
|
|
587
|
-
.visible
|
|
507
|
+
}
|
|
508
|
+
.visible{
|
|
588
509
|
visibility: visible;
|
|
589
|
-
}
|
|
590
|
-
.invisible
|
|
510
|
+
}
|
|
511
|
+
.invisible{
|
|
591
512
|
visibility: hidden;
|
|
592
|
-
}
|
|
593
|
-
.collapse
|
|
513
|
+
}
|
|
514
|
+
.collapse{
|
|
594
515
|
visibility: collapse;
|
|
595
|
-
}
|
|
596
|
-
.static
|
|
516
|
+
}
|
|
517
|
+
.static{
|
|
597
518
|
position: static;
|
|
598
|
-
}
|
|
599
|
-
.fixed
|
|
519
|
+
}
|
|
520
|
+
.fixed{
|
|
600
521
|
position: fixed;
|
|
601
|
-
}
|
|
602
|
-
.absolute
|
|
522
|
+
}
|
|
523
|
+
.absolute{
|
|
603
524
|
position: absolute;
|
|
604
|
-
}
|
|
605
|
-
.relative
|
|
525
|
+
}
|
|
526
|
+
.relative{
|
|
606
527
|
position: relative;
|
|
607
|
-
}
|
|
608
|
-
.sticky
|
|
528
|
+
}
|
|
529
|
+
.sticky{
|
|
609
530
|
position: sticky;
|
|
610
|
-
}
|
|
611
|
-
.right-2\.5
|
|
531
|
+
}
|
|
532
|
+
.right-2\.5{
|
|
612
533
|
right: 0.625rem;
|
|
613
|
-
}
|
|
614
|
-
.top-2\.5
|
|
534
|
+
}
|
|
535
|
+
.top-2\.5{
|
|
615
536
|
top: 0.625rem;
|
|
616
|
-
}
|
|
617
|
-
.z-\[1000\]
|
|
537
|
+
}
|
|
538
|
+
.z-\[1000\]{
|
|
618
539
|
z-index: 1000;
|
|
619
|
-
}
|
|
620
|
-
.col-span-12
|
|
540
|
+
}
|
|
541
|
+
.col-span-12{
|
|
621
542
|
grid-column: span 12 / span 12;
|
|
622
|
-
}
|
|
623
|
-
.m-0
|
|
543
|
+
}
|
|
544
|
+
.m-0{
|
|
624
545
|
margin: 0px;
|
|
625
|
-
}
|
|
626
|
-
.m-3
|
|
546
|
+
}
|
|
547
|
+
.m-3{
|
|
627
548
|
margin: 0.75rem;
|
|
628
|
-
}
|
|
629
|
-
.mx-3
|
|
549
|
+
}
|
|
550
|
+
.mx-3{
|
|
630
551
|
margin-left: 0.75rem;
|
|
631
552
|
margin-right: 0.75rem;
|
|
632
|
-
}
|
|
633
|
-
.block
|
|
553
|
+
}
|
|
554
|
+
.block{
|
|
634
555
|
display: block;
|
|
635
|
-
}
|
|
636
|
-
.inline-block
|
|
556
|
+
}
|
|
557
|
+
.inline-block{
|
|
637
558
|
display: inline-block;
|
|
638
|
-
}
|
|
639
|
-
.inline
|
|
559
|
+
}
|
|
560
|
+
.inline{
|
|
640
561
|
display: inline;
|
|
641
|
-
}
|
|
642
|
-
.flex
|
|
562
|
+
}
|
|
563
|
+
.flex{
|
|
643
564
|
display: flex;
|
|
644
|
-
}
|
|
645
|
-
.table
|
|
565
|
+
}
|
|
566
|
+
.table{
|
|
646
567
|
display: table;
|
|
647
|
-
}
|
|
648
|
-
.grid
|
|
568
|
+
}
|
|
569
|
+
.grid{
|
|
649
570
|
display: grid;
|
|
650
|
-
}
|
|
651
|
-
.contents
|
|
571
|
+
}
|
|
572
|
+
.contents{
|
|
652
573
|
display: contents;
|
|
653
|
-
}
|
|
654
|
-
.hidden
|
|
574
|
+
}
|
|
575
|
+
.hidden{
|
|
655
576
|
display: none;
|
|
656
|
-
}
|
|
657
|
-
.h-3
|
|
577
|
+
}
|
|
578
|
+
.h-3{
|
|
658
579
|
height: 0.75rem;
|
|
659
|
-
}
|
|
660
|
-
.h-4
|
|
580
|
+
}
|
|
581
|
+
.h-4{
|
|
661
582
|
height: 1rem;
|
|
662
|
-
}
|
|
663
|
-
.h-5
|
|
583
|
+
}
|
|
584
|
+
.h-5{
|
|
664
585
|
height: 1.25rem;
|
|
665
|
-
}
|
|
666
|
-
.h-52
|
|
586
|
+
}
|
|
587
|
+
.h-52{
|
|
667
588
|
height: 13rem;
|
|
668
|
-
}
|
|
669
|
-
.h-8
|
|
589
|
+
}
|
|
590
|
+
.h-8{
|
|
670
591
|
height: 2rem;
|
|
671
|
-
}
|
|
672
|
-
.h-\[1px\]
|
|
592
|
+
}
|
|
593
|
+
.h-\[1px\]{
|
|
673
594
|
height: 1px;
|
|
674
|
-
}
|
|
675
|
-
.h-\[35px\]
|
|
595
|
+
}
|
|
596
|
+
.h-\[35px\]{
|
|
676
597
|
height: 35px;
|
|
677
|
-
}
|
|
678
|
-
.h-full
|
|
598
|
+
}
|
|
599
|
+
.h-full{
|
|
679
600
|
height: 100%;
|
|
680
|
-
}
|
|
681
|
-
.h-min
|
|
601
|
+
}
|
|
602
|
+
.h-min{
|
|
682
603
|
height: -moz-min-content;
|
|
683
604
|
height: min-content;
|
|
684
|
-
}
|
|
685
|
-
.h-screen
|
|
605
|
+
}
|
|
606
|
+
.h-screen{
|
|
686
607
|
height: 100vh;
|
|
687
|
-
}
|
|
688
|
-
.max-h-52
|
|
608
|
+
}
|
|
609
|
+
.max-h-52{
|
|
689
610
|
max-height: 13rem;
|
|
690
|
-
}
|
|
691
|
-
.max-h-96
|
|
611
|
+
}
|
|
612
|
+
.max-h-96{
|
|
692
613
|
max-height: 24rem;
|
|
693
|
-
}
|
|
694
|
-
.max-h-screen
|
|
614
|
+
}
|
|
615
|
+
.max-h-screen{
|
|
695
616
|
max-height: 100vh;
|
|
696
|
-
}
|
|
697
|
-
.min-h-10
|
|
617
|
+
}
|
|
618
|
+
.min-h-10{
|
|
698
619
|
min-height: 2.5rem;
|
|
699
|
-
}
|
|
700
|
-
.min-h-11
|
|
620
|
+
}
|
|
621
|
+
.min-h-11{
|
|
701
622
|
min-height: 2.75rem;
|
|
702
|
-
}
|
|
703
|
-
.w-3
|
|
623
|
+
}
|
|
624
|
+
.w-3{
|
|
704
625
|
width: 0.75rem;
|
|
705
|
-
}
|
|
706
|
-
.w-4
|
|
626
|
+
}
|
|
627
|
+
.w-4{
|
|
707
628
|
width: 1rem;
|
|
708
|
-
}
|
|
709
|
-
.w-5
|
|
629
|
+
}
|
|
630
|
+
.w-5{
|
|
710
631
|
width: 1.25rem;
|
|
711
|
-
}
|
|
712
|
-
.w-8
|
|
632
|
+
}
|
|
633
|
+
.w-8{
|
|
713
634
|
width: 2rem;
|
|
714
|
-
}
|
|
715
|
-
.w-full
|
|
635
|
+
}
|
|
636
|
+
.w-full{
|
|
716
637
|
width: 100%;
|
|
717
|
-
}
|
|
718
|
-
.w-screen
|
|
638
|
+
}
|
|
639
|
+
.w-screen{
|
|
719
640
|
width: 100vw;
|
|
720
|
-
}
|
|
721
|
-
.min-w-10
|
|
641
|
+
}
|
|
642
|
+
.min-w-10{
|
|
722
643
|
min-width: 2.5rem;
|
|
723
|
-
}
|
|
724
|
-
.min-w-24
|
|
644
|
+
}
|
|
645
|
+
.min-w-24{
|
|
725
646
|
min-width: 6rem;
|
|
726
|
-
}
|
|
727
|
-
.max-w-28
|
|
647
|
+
}
|
|
648
|
+
.max-w-28{
|
|
728
649
|
max-width: 7rem;
|
|
729
|
-
}
|
|
730
|
-
.max-w-\[1140px\]
|
|
650
|
+
}
|
|
651
|
+
.max-w-\[1140px\]{
|
|
731
652
|
max-width: 1140px;
|
|
732
|
-
}
|
|
733
|
-
.max-w-\[300px\]
|
|
653
|
+
}
|
|
654
|
+
.max-w-\[300px\]{
|
|
734
655
|
max-width: 300px;
|
|
735
|
-
}
|
|
736
|
-
.max-w-\[500px\]
|
|
656
|
+
}
|
|
657
|
+
.max-w-\[500px\]{
|
|
737
658
|
max-width: 500px;
|
|
738
|
-
}
|
|
739
|
-
.max-w-\[800px\]
|
|
659
|
+
}
|
|
660
|
+
.max-w-\[800px\]{
|
|
740
661
|
max-width: 800px;
|
|
741
|
-
}
|
|
742
|
-
.flex-1
|
|
662
|
+
}
|
|
663
|
+
.flex-1{
|
|
743
664
|
flex: 1 1 0%;
|
|
744
|
-
}
|
|
745
|
-
.flex-shrink
|
|
665
|
+
}
|
|
666
|
+
.flex-shrink{
|
|
746
667
|
flex-shrink: 1;
|
|
747
|
-
}
|
|
748
|
-
.flex-grow
|
|
668
|
+
}
|
|
669
|
+
.flex-grow{
|
|
749
670
|
flex-grow: 1;
|
|
750
|
-
}
|
|
751
|
-
.grow
|
|
671
|
+
}
|
|
672
|
+
.grow{
|
|
752
673
|
flex-grow: 1;
|
|
753
|
-
}
|
|
754
|
-
.transform
|
|
674
|
+
}
|
|
675
|
+
.transform{
|
|
755
676
|
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));
|
|
756
|
-
}
|
|
757
|
-
.cursor-not-allowed
|
|
677
|
+
}
|
|
678
|
+
.cursor-not-allowed{
|
|
758
679
|
cursor: not-allowed;
|
|
759
|
-
}
|
|
760
|
-
.cursor-pointer
|
|
680
|
+
}
|
|
681
|
+
.cursor-pointer{
|
|
761
682
|
cursor: pointer;
|
|
762
|
-
}
|
|
763
|
-
.select-none
|
|
683
|
+
}
|
|
684
|
+
.select-none{
|
|
764
685
|
-webkit-user-select: none;
|
|
765
686
|
-moz-user-select: none;
|
|
766
687
|
user-select: none;
|
|
767
|
-
}
|
|
768
|
-
.resize
|
|
688
|
+
}
|
|
689
|
+
.resize{
|
|
769
690
|
resize: both;
|
|
770
|
-
}
|
|
771
|
-
.appearance-none
|
|
691
|
+
}
|
|
692
|
+
.appearance-none{
|
|
772
693
|
-webkit-appearance: none;
|
|
773
694
|
-moz-appearance: none;
|
|
774
695
|
appearance: none;
|
|
775
|
-
}
|
|
776
|
-
.grid-flow-col
|
|
696
|
+
}
|
|
697
|
+
.grid-flow-col{
|
|
777
698
|
grid-auto-flow: column;
|
|
778
|
-
}
|
|
779
|
-
.grid-cols-12
|
|
699
|
+
}
|
|
700
|
+
.grid-cols-12{
|
|
780
701
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
781
|
-
}
|
|
782
|
-
.flex-col
|
|
702
|
+
}
|
|
703
|
+
.flex-col{
|
|
783
704
|
flex-direction: column;
|
|
784
|
-
}
|
|
785
|
-
.flex-wrap
|
|
705
|
+
}
|
|
706
|
+
.flex-wrap{
|
|
786
707
|
flex-wrap: wrap;
|
|
787
|
-
}
|
|
788
|
-
.items-center
|
|
708
|
+
}
|
|
709
|
+
.items-center{
|
|
789
710
|
align-items: center;
|
|
790
|
-
}
|
|
791
|
-
.justify-start
|
|
711
|
+
}
|
|
712
|
+
.justify-start{
|
|
792
713
|
justify-content: flex-start;
|
|
793
|
-
}
|
|
794
|
-
.justify-end
|
|
714
|
+
}
|
|
715
|
+
.justify-end{
|
|
795
716
|
justify-content: flex-end;
|
|
796
|
-
}
|
|
797
|
-
.justify-center
|
|
717
|
+
}
|
|
718
|
+
.justify-center{
|
|
798
719
|
justify-content: center;
|
|
799
|
-
}
|
|
800
|
-
.justify-between
|
|
720
|
+
}
|
|
721
|
+
.justify-between{
|
|
801
722
|
justify-content: space-between;
|
|
802
|
-
}
|
|
803
|
-
.gap-2
|
|
723
|
+
}
|
|
724
|
+
.gap-2{
|
|
804
725
|
gap: 0.5rem;
|
|
805
|
-
}
|
|
806
|
-
.gap-3
|
|
726
|
+
}
|
|
727
|
+
.gap-3{
|
|
807
728
|
gap: 0.75rem;
|
|
808
|
-
}
|
|
809
|
-
.divide-x > :not([hidden]) ~ :not([hidden])
|
|
729
|
+
}
|
|
730
|
+
.divide-x > :not([hidden]) ~ :not([hidden]){
|
|
810
731
|
--tw-divide-x-reverse: 0;
|
|
811
732
|
border-right-width: calc(1px * var(--tw-divide-x-reverse));
|
|
812
733
|
border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
|
|
813
|
-
}
|
|
814
|
-
.divide-grayscale-30 > :not([hidden]) ~ :not([hidden])
|
|
734
|
+
}
|
|
735
|
+
.divide-grayscale-30 > :not([hidden]) ~ :not([hidden]){
|
|
815
736
|
--tw-divide-opacity: 1;
|
|
816
737
|
border-color: rgb(193 193 204 / var(--tw-divide-opacity, 1));
|
|
817
|
-
}
|
|
818
|
-
.overflow-auto
|
|
738
|
+
}
|
|
739
|
+
.overflow-auto{
|
|
819
740
|
overflow: auto;
|
|
820
|
-
}
|
|
821
|
-
.overflow-hidden
|
|
741
|
+
}
|
|
742
|
+
.overflow-hidden{
|
|
822
743
|
overflow: hidden;
|
|
823
|
-
}
|
|
824
|
-
.text-ellipsis
|
|
744
|
+
}
|
|
745
|
+
.text-ellipsis{
|
|
825
746
|
text-overflow: ellipsis;
|
|
826
|
-
}
|
|
827
|
-
.whitespace-nowrap
|
|
747
|
+
}
|
|
748
|
+
.whitespace-nowrap{
|
|
828
749
|
white-space: nowrap;
|
|
829
|
-
}
|
|
830
|
-
.text-wrap
|
|
750
|
+
}
|
|
751
|
+
.text-wrap{
|
|
831
752
|
text-wrap: wrap;
|
|
832
|
-
}
|
|
833
|
-
.rounded-\[3px\]
|
|
753
|
+
}
|
|
754
|
+
.rounded-\[3px\]{
|
|
834
755
|
border-radius: 3px;
|
|
835
|
-
}
|
|
836
|
-
.rounded-\[50\%\]
|
|
756
|
+
}
|
|
757
|
+
.rounded-\[50\%\]{
|
|
837
758
|
border-radius: 50%;
|
|
838
|
-
}
|
|
839
|
-
.rounded-l-\[3px\]
|
|
759
|
+
}
|
|
760
|
+
.rounded-l-\[3px\]{
|
|
840
761
|
border-top-left-radius: 3px;
|
|
841
762
|
border-bottom-left-radius: 3px;
|
|
842
|
-
}
|
|
843
|
-
.rounded-r-\[3px\]
|
|
763
|
+
}
|
|
764
|
+
.rounded-r-\[3px\]{
|
|
844
765
|
border-top-right-radius: 3px;
|
|
845
766
|
border-bottom-right-radius: 3px;
|
|
846
|
-
}
|
|
847
|
-
.border
|
|
767
|
+
}
|
|
768
|
+
.border{
|
|
848
769
|
border-width: 1px;
|
|
849
|
-
}
|
|
850
|
-
.border-2
|
|
770
|
+
}
|
|
771
|
+
.border-2{
|
|
851
772
|
border-width: 2px;
|
|
852
|
-
}
|
|
853
|
-
.border-\[1px\]
|
|
773
|
+
}
|
|
774
|
+
.border-\[1px\]{
|
|
854
775
|
border-width: 1px;
|
|
855
|
-
}
|
|
856
|
-
.border-b-4
|
|
776
|
+
}
|
|
777
|
+
.border-b-4{
|
|
857
778
|
border-bottom-width: 4px;
|
|
858
|
-
}
|
|
859
|
-
.border-b-\[1px\]
|
|
779
|
+
}
|
|
780
|
+
.border-b-\[1px\]{
|
|
860
781
|
border-bottom-width: 1px;
|
|
861
|
-
}
|
|
862
|
-
.border-l
|
|
782
|
+
}
|
|
783
|
+
.border-l{
|
|
863
784
|
border-left-width: 1px;
|
|
864
|
-
}
|
|
865
|
-
.border-r-0
|
|
785
|
+
}
|
|
786
|
+
.border-r-0{
|
|
866
787
|
border-right-width: 0px;
|
|
867
|
-
}
|
|
868
|
-
.border-r-4
|
|
788
|
+
}
|
|
789
|
+
.border-r-4{
|
|
869
790
|
border-right-width: 4px;
|
|
870
|
-
}
|
|
871
|
-
.border-\[\#c1c1cc\]
|
|
791
|
+
}
|
|
792
|
+
.border-\[\#c1c1cc\]{
|
|
872
793
|
--tw-border-opacity: 1;
|
|
873
794
|
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
874
|
-
}
|
|
875
|
-
.border-grayscale-20
|
|
795
|
+
}
|
|
796
|
+
.border-grayscale-20{
|
|
876
797
|
--tw-border-opacity: 1;
|
|
877
798
|
border-color: rgb(222 220 229 / var(--tw-border-opacity, 1));
|
|
878
|
-
}
|
|
879
|
-
.border-grayscale-30
|
|
799
|
+
}
|
|
800
|
+
.border-grayscale-30{
|
|
880
801
|
--tw-border-opacity: 1;
|
|
881
802
|
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
882
|
-
}
|
|
883
|
-
.border-grayscale-50
|
|
803
|
+
}
|
|
804
|
+
.border-grayscale-50{
|
|
884
805
|
--tw-border-opacity: 1;
|
|
885
806
|
border-color: rgb(136 139 153 / var(--tw-border-opacity, 1));
|
|
886
|
-
}
|
|
887
|
-
.border-primary
|
|
807
|
+
}
|
|
808
|
+
.border-primary{
|
|
888
809
|
--tw-border-opacity: 1;
|
|
889
810
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
890
|
-
}
|
|
891
|
-
.border-tarawera-500
|
|
811
|
+
}
|
|
812
|
+
.border-tarawera-500{
|
|
892
813
|
--tw-border-opacity: 1;
|
|
893
814
|
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
894
|
-
}
|
|
895
|
-
.border-b-grayscale-20
|
|
815
|
+
}
|
|
816
|
+
.border-b-grayscale-20{
|
|
896
817
|
--tw-border-opacity: 1;
|
|
897
818
|
border-bottom-color: rgb(222 220 229 / var(--tw-border-opacity, 1));
|
|
898
|
-
}
|
|
899
|
-
.bg-criticality-blue
|
|
819
|
+
}
|
|
820
|
+
.bg-criticality-blue{
|
|
900
821
|
--tw-bg-opacity: 1;
|
|
901
822
|
background-color: rgb(66 139 202 / var(--tw-bg-opacity, 1));
|
|
902
|
-
}
|
|
903
|
-
.bg-grayscale-0
|
|
823
|
+
}
|
|
824
|
+
.bg-grayscale-0{
|
|
904
825
|
--tw-bg-opacity: 1;
|
|
905
826
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
906
|
-
}
|
|
907
|
-
.bg-grayscale-10
|
|
827
|
+
}
|
|
828
|
+
.bg-grayscale-10{
|
|
908
829
|
--tw-bg-opacity: 1;
|
|
909
830
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
910
|
-
}
|
|
911
|
-
.bg-grayscale-20
|
|
831
|
+
}
|
|
832
|
+
.bg-grayscale-20{
|
|
912
833
|
--tw-bg-opacity: 1;
|
|
913
834
|
background-color: rgb(222 220 229 / var(--tw-bg-opacity, 1));
|
|
914
|
-
}
|
|
915
|
-
.bg-grayscale-5
|
|
835
|
+
}
|
|
836
|
+
.bg-grayscale-5{
|
|
916
837
|
--tw-bg-opacity: 1;
|
|
917
838
|
background-color: rgb(251 250 252 / var(--tw-bg-opacity, 1));
|
|
918
|
-
}
|
|
919
|
-
.bg-primary
|
|
839
|
+
}
|
|
840
|
+
.bg-primary{
|
|
920
841
|
--tw-bg-opacity: 1;
|
|
921
842
|
background-color: rgb(66 139 202 / var(--tw-bg-opacity, 1));
|
|
922
|
-
}
|
|
923
|
-
.bg-tarawera-500
|
|
843
|
+
}
|
|
844
|
+
.bg-tarawera-500{
|
|
924
845
|
--tw-bg-opacity: 1;
|
|
925
846
|
background-color: rgb(6 57 81 / var(--tw-bg-opacity, 1));
|
|
926
|
-
}
|
|
927
|
-
.p-2
|
|
847
|
+
}
|
|
848
|
+
.p-2{
|
|
928
849
|
padding: 0.5rem;
|
|
929
|
-
}
|
|
930
|
-
.p-4
|
|
850
|
+
}
|
|
851
|
+
.p-4{
|
|
931
852
|
padding: 1rem;
|
|
932
|
-
}
|
|
933
|
-
.px-3
|
|
853
|
+
}
|
|
854
|
+
.px-3{
|
|
934
855
|
padding-left: 0.75rem;
|
|
935
856
|
padding-right: 0.75rem;
|
|
936
|
-
}
|
|
937
|
-
.px-\[8px\]
|
|
857
|
+
}
|
|
858
|
+
.px-\[8px\]{
|
|
938
859
|
padding-left: 8px;
|
|
939
860
|
padding-right: 8px;
|
|
940
|
-
}
|
|
941
|
-
.py-1
|
|
861
|
+
}
|
|
862
|
+
.py-1{
|
|
942
863
|
padding-top: 0.25rem;
|
|
943
864
|
padding-bottom: 0.25rem;
|
|
944
|
-
}
|
|
945
|
-
.py-1\.5
|
|
865
|
+
}
|
|
866
|
+
.py-1\.5{
|
|
946
867
|
padding-top: 0.375rem;
|
|
947
868
|
padding-bottom: 0.375rem;
|
|
948
|
-
}
|
|
949
|
-
.py-2
|
|
869
|
+
}
|
|
870
|
+
.py-2{
|
|
950
871
|
padding-top: 0.5rem;
|
|
951
872
|
padding-bottom: 0.5rem;
|
|
952
|
-
}
|
|
953
|
-
.py-\[7px\]
|
|
873
|
+
}
|
|
874
|
+
.py-\[7px\]{
|
|
954
875
|
padding-top: 7px;
|
|
955
876
|
padding-bottom: 7px;
|
|
956
|
-
}
|
|
957
|
-
.pb-0
|
|
877
|
+
}
|
|
878
|
+
.pb-0{
|
|
958
879
|
padding-bottom: 0px;
|
|
959
|
-
}
|
|
960
|
-
.pl-2\.5
|
|
880
|
+
}
|
|
881
|
+
.pl-2\.5{
|
|
961
882
|
padding-left: 0.625rem;
|
|
962
|
-
}
|
|
963
|
-
.pr-2
|
|
883
|
+
}
|
|
884
|
+
.pr-2{
|
|
964
885
|
padding-right: 0.5rem;
|
|
965
|
-
}
|
|
966
|
-
.pr-7
|
|
886
|
+
}
|
|
887
|
+
.pr-7{
|
|
967
888
|
padding-right: 1.75rem;
|
|
968
|
-
}
|
|
969
|
-
.pt-0
|
|
889
|
+
}
|
|
890
|
+
.pt-0{
|
|
970
891
|
padding-top: 0px;
|
|
971
|
-
}
|
|
972
|
-
.text-left
|
|
892
|
+
}
|
|
893
|
+
.text-left{
|
|
973
894
|
text-align: left;
|
|
974
|
-
}
|
|
975
|
-
.font-open-sans
|
|
895
|
+
}
|
|
896
|
+
.font-open-sans{
|
|
976
897
|
font-family: "Open Sans", sans-serif;
|
|
977
|
-
}
|
|
978
|
-
.text-\[14px\]
|
|
898
|
+
}
|
|
899
|
+
.text-\[14px\]{
|
|
979
900
|
font-size: 14px;
|
|
980
|
-
}
|
|
981
|
-
.text-sm
|
|
901
|
+
}
|
|
902
|
+
.text-sm{
|
|
982
903
|
font-size: 0.875rem;
|
|
983
904
|
line-height: 1.25rem;
|
|
984
|
-
}
|
|
985
|
-
.font-bold
|
|
905
|
+
}
|
|
906
|
+
.font-bold{
|
|
986
907
|
font-weight: 700;
|
|
987
|
-
}
|
|
988
|
-
.uppercase
|
|
908
|
+
}
|
|
909
|
+
.uppercase{
|
|
989
910
|
text-transform: uppercase;
|
|
990
|
-
}
|
|
991
|
-
.lowercase
|
|
911
|
+
}
|
|
912
|
+
.lowercase{
|
|
992
913
|
text-transform: lowercase;
|
|
993
|
-
}
|
|
994
|
-
.italic
|
|
914
|
+
}
|
|
915
|
+
.italic{
|
|
995
916
|
font-style: italic;
|
|
996
|
-
}
|
|
997
|
-
.text-\[\#212533\]
|
|
917
|
+
}
|
|
918
|
+
.text-\[\#212533\]{
|
|
998
919
|
--tw-text-opacity: 1;
|
|
999
920
|
color: rgb(33 37 51 / var(--tw-text-opacity, 1));
|
|
1000
|
-
}
|
|
1001
|
-
.text-\[\#F5A319\]
|
|
921
|
+
}
|
|
922
|
+
.text-\[\#F5A319\]{
|
|
1002
923
|
--tw-text-opacity: 1;
|
|
1003
924
|
color: rgb(245 163 25 / var(--tw-text-opacity, 1));
|
|
1004
|
-
}
|
|
1005
|
-
.text-criticality-blue
|
|
925
|
+
}
|
|
926
|
+
.text-criticality-blue{
|
|
1006
927
|
--tw-text-opacity: 1;
|
|
1007
928
|
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
1008
|
-
}
|
|
1009
|
-
.text-grayscale-0
|
|
929
|
+
}
|
|
930
|
+
.text-grayscale-0{
|
|
1010
931
|
--tw-text-opacity: 1;
|
|
1011
932
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
1012
|
-
}
|
|
1013
|
-
.text-grayscale-100
|
|
933
|
+
}
|
|
934
|
+
.text-grayscale-100{
|
|
1014
935
|
--tw-text-opacity: 1;
|
|
1015
936
|
color: rgb(14 17 25 / var(--tw-text-opacity, 1));
|
|
1016
|
-
}
|
|
1017
|
-
.text-grayscale-30
|
|
937
|
+
}
|
|
938
|
+
.text-grayscale-30{
|
|
1018
939
|
--tw-text-opacity: 1;
|
|
1019
940
|
color: rgb(193 193 204 / var(--tw-text-opacity, 1));
|
|
1020
|
-
}
|
|
1021
|
-
.text-grayscale-60
|
|
941
|
+
}
|
|
942
|
+
.text-grayscale-60{
|
|
1022
943
|
--tw-text-opacity: 1;
|
|
1023
944
|
color: rgb(110 114 128 / var(--tw-text-opacity, 1));
|
|
1024
|
-
}
|
|
1025
|
-
.text-grayscale-90
|
|
945
|
+
}
|
|
946
|
+
.text-grayscale-90{
|
|
1026
947
|
--tw-text-opacity: 1;
|
|
1027
948
|
color: rgb(33 37 51 / var(--tw-text-opacity, 1));
|
|
1028
|
-
}
|
|
1029
|
-
.text-primary
|
|
949
|
+
}
|
|
950
|
+
.text-primary{
|
|
1030
951
|
--tw-text-opacity: 1;
|
|
1031
952
|
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
1032
|
-
}
|
|
1033
|
-
.opacity-50
|
|
953
|
+
}
|
|
954
|
+
.opacity-50{
|
|
1034
955
|
opacity: 0.5;
|
|
1035
|
-
}
|
|
1036
|
-
.shadow-md
|
|
956
|
+
}
|
|
957
|
+
.shadow-md{
|
|
1037
958
|
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
1038
959
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
1039
960
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1040
|
-
}
|
|
1041
|
-
.outline-none
|
|
961
|
+
}
|
|
962
|
+
.outline-none{
|
|
1042
963
|
outline: 2px solid transparent;
|
|
1043
964
|
outline-offset: 2px;
|
|
1044
|
-
}
|
|
1045
|
-
.outline
|
|
965
|
+
}
|
|
966
|
+
.outline{
|
|
1046
967
|
outline-style: solid;
|
|
1047
|
-
}
|
|
1048
|
-
.outline-1
|
|
968
|
+
}
|
|
969
|
+
.outline-1{
|
|
1049
970
|
outline-width: 1px;
|
|
1050
|
-
}
|
|
1051
|
-
.outline-primary
|
|
971
|
+
}
|
|
972
|
+
.outline-primary{
|
|
1052
973
|
outline-color: #428BCA;
|
|
1053
|
-
}
|
|
1054
|
-
.blur
|
|
974
|
+
}
|
|
975
|
+
.blur{
|
|
1055
976
|
--tw-blur: blur(8px);
|
|
1056
977
|
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);
|
|
1057
|
-
}
|
|
1058
|
-
.filter
|
|
978
|
+
}
|
|
979
|
+
.filter{
|
|
1059
980
|
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);
|
|
1060
|
-
}
|
|
1061
|
-
.transition
|
|
981
|
+
}
|
|
982
|
+
.transition{
|
|
1062
983
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1063
984
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1064
985
|
transition-duration: 150ms;
|
|
1065
|
-
}
|
|
1066
|
-
.transition-all
|
|
986
|
+
}
|
|
987
|
+
.transition-all{
|
|
1067
988
|
transition-property: all;
|
|
1068
989
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1069
990
|
transition-duration: 150ms;
|
|
1070
|
-
}
|
|
1071
|
-
.duration-200
|
|
991
|
+
}
|
|
992
|
+
.duration-200{
|
|
1072
993
|
transition-duration: 200ms;
|
|
1073
|
-
}
|
|
1074
|
-
.ease-in
|
|
994
|
+
}
|
|
995
|
+
.ease-in{
|
|
1075
996
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1076
|
-
}
|
|
1077
|
-
.ease-in-out
|
|
997
|
+
}
|
|
998
|
+
.ease-in-out{
|
|
1078
999
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1079
|
-
}
|
|
1080
|
-
.ease-out
|
|
1000
|
+
}
|
|
1001
|
+
.ease-out{
|
|
1081
1002
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1082
|
-
}
|
|
1083
|
-
.focus-within\:\!border-primary:focus-within
|
|
1003
|
+
}
|
|
1004
|
+
.focus-within\:\!border-primary:focus-within{
|
|
1084
1005
|
--tw-border-opacity: 1 !important;
|
|
1085
1006
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1)) !important;
|
|
1086
|
-
}
|
|
1087
|
-
.hover\:border-\[1px\]:hover
|
|
1007
|
+
}
|
|
1008
|
+
.hover\:border-\[1px\]:hover{
|
|
1088
1009
|
border-width: 1px;
|
|
1089
|
-
}
|
|
1090
|
-
.hover\:border-b-4:hover
|
|
1010
|
+
}
|
|
1011
|
+
.hover\:border-b-4:hover{
|
|
1091
1012
|
border-bottom-width: 4px;
|
|
1092
|
-
}
|
|
1093
|
-
.hover\:border-r-4:hover
|
|
1013
|
+
}
|
|
1014
|
+
.hover\:border-r-4:hover{
|
|
1094
1015
|
border-right-width: 4px;
|
|
1095
|
-
}
|
|
1096
|
-
.hover\:border-\[\#063951\]:hover
|
|
1016
|
+
}
|
|
1017
|
+
.hover\:border-\[\#063951\]:hover{
|
|
1097
1018
|
--tw-border-opacity: 1;
|
|
1098
1019
|
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
1099
|
-
}
|
|
1100
|
-
.hover\:border-grayscale-50:hover
|
|
1020
|
+
}
|
|
1021
|
+
.hover\:border-grayscale-50:hover{
|
|
1101
1022
|
--tw-border-opacity: 1;
|
|
1102
1023
|
border-color: rgb(136 139 153 / var(--tw-border-opacity, 1));
|
|
1103
|
-
}
|
|
1104
|
-
.hover\:border-tarawera-500:hover
|
|
1024
|
+
}
|
|
1025
|
+
.hover\:border-tarawera-500:hover{
|
|
1105
1026
|
--tw-border-opacity: 1;
|
|
1106
1027
|
border-color: rgb(6 57 81 / var(--tw-border-opacity, 1));
|
|
1107
|
-
}
|
|
1108
|
-
.hover\:bg-grayscale-10:hover
|
|
1028
|
+
}
|
|
1029
|
+
.hover\:bg-grayscale-10:hover{
|
|
1109
1030
|
--tw-bg-opacity: 1;
|
|
1110
1031
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
1111
|
-
}
|
|
1112
|
-
.hover\:bg-grayscale-20:hover
|
|
1032
|
+
}
|
|
1033
|
+
.hover\:bg-grayscale-20:hover{
|
|
1113
1034
|
--tw-bg-opacity: 1;
|
|
1114
1035
|
background-color: rgb(222 220 229 / var(--tw-bg-opacity, 1));
|
|
1115
|
-
}
|
|
1116
|
-
.hover\:bg-tarawera-500:hover
|
|
1036
|
+
}
|
|
1037
|
+
.hover\:bg-tarawera-500:hover{
|
|
1117
1038
|
--tw-bg-opacity: 1;
|
|
1118
1039
|
background-color: rgb(6 57 81 / var(--tw-bg-opacity, 1));
|
|
1119
|
-
}
|
|
1120
|
-
.hover\:text-grayscale-100:hover
|
|
1040
|
+
}
|
|
1041
|
+
.hover\:text-grayscale-100:hover{
|
|
1121
1042
|
--tw-text-opacity: 1;
|
|
1122
1043
|
color: rgb(14 17 25 / var(--tw-text-opacity, 1));
|
|
1123
|
-
}
|
|
1124
|
-
.hover\:transition-all:hover
|
|
1044
|
+
}
|
|
1045
|
+
.hover\:transition-all:hover{
|
|
1125
1046
|
transition-property: all;
|
|
1126
1047
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1127
1048
|
transition-duration: 150ms;
|
|
1128
|
-
}
|
|
1129
|
-
.focus\:border-2:focus
|
|
1049
|
+
}
|
|
1050
|
+
.focus\:border-2:focus{
|
|
1130
1051
|
border-width: 2px;
|
|
1131
|
-
}
|
|
1132
|
-
.focus\:border-primary:focus
|
|
1052
|
+
}
|
|
1053
|
+
.focus\:border-primary:focus{
|
|
1133
1054
|
--tw-border-opacity: 1;
|
|
1134
1055
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
1135
|
-
}
|
|
1136
|
-
.focus\:outline:focus
|
|
1056
|
+
}
|
|
1057
|
+
.focus\:outline:focus{
|
|
1137
1058
|
outline-style: solid;
|
|
1138
|
-
}
|
|
1139
|
-
.disabled\:border-grayscale-30:disabled
|
|
1059
|
+
}
|
|
1060
|
+
.disabled\:border-grayscale-30:disabled{
|
|
1140
1061
|
--tw-border-opacity: 1;
|
|
1141
1062
|
border-color: rgb(193 193 204 / var(--tw-border-opacity, 1));
|
|
1142
|
-
}
|
|
1143
|
-
.disabled\:text-grayscale-30:disabled
|
|
1063
|
+
}
|
|
1064
|
+
.disabled\:text-grayscale-30:disabled{
|
|
1144
1065
|
--tw-text-opacity: 1;
|
|
1145
1066
|
color: rgb(193 193 204 / var(--tw-text-opacity, 1));
|
|
1146
|
-
}
|
|
1147
|
-
.disabled\:opacity-50:disabled
|
|
1067
|
+
}
|
|
1068
|
+
.disabled\:opacity-50:disabled{
|
|
1148
1069
|
opacity: 0.5;
|
|
1149
|
-
}
|
|
1150
|
-
.disabled\:hover\:bg-\[transparent\]:hover:disabled
|
|
1070
|
+
}
|
|
1071
|
+
.disabled\:hover\:bg-\[transparent\]:hover:disabled{
|
|
1151
1072
|
background-color: transparent;
|
|
1152
|
-
}
|
|
1153
|
-
.disabled\:hover\:text-criticality-blue:hover:disabled
|
|
1073
|
+
}
|
|
1074
|
+
.disabled\:hover\:text-criticality-blue:hover:disabled{
|
|
1154
1075
|
--tw-text-opacity: 1;
|
|
1155
1076
|
color: rgb(66 139 202 / var(--tw-text-opacity, 1));
|
|
1156
|
-
}
|
|
1157
|
-
.group:hover .group-hover\:bg-grayscale-10
|
|
1077
|
+
}
|
|
1078
|
+
.group:hover .group-hover\:bg-grayscale-10{
|
|
1158
1079
|
--tw-bg-opacity: 1;
|
|
1159
1080
|
background-color: rgb(238 235 242 / var(--tw-bg-opacity, 1));
|
|
1160
|
-
}
|
|
1161
|
-
.group:focus .group-focus\:border-primary
|
|
1081
|
+
}
|
|
1082
|
+
.group:focus .group-focus\:border-primary{
|
|
1162
1083
|
--tw-border-opacity: 1;
|
|
1163
1084
|
border-color: rgb(66 139 202 / var(--tw-border-opacity, 1));
|
|
1164
|
-
}
|
|
1165
|
-
.group:disabled .group-disabled\:opacity-50
|
|
1085
|
+
}
|
|
1086
|
+
.group:disabled .group-disabled\:opacity-50{
|
|
1166
1087
|
opacity: 0.5;
|
|
1167
|
-
}
|
|
1088
|
+
}
|