@turquoisehealth/pit-viper 2.0.0-alpha.13 → 2.0.0-alpha.15
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/_site/assets/css/pit-viper-v2.css +375 -252
- package/_site/assets/css/pit-viper.css +279 -156
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +1 -1
- package/package.json +1 -4
- package/pv-components/dist/vue/base/pv-components-base.js +36 -22
- package/pv-components/dist/vue/base/pv-components-base.mjs +15809 -15391
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +74 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +55 -41
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +21517 -21014
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +60 -5
- package/pv-components/dist/vue/tables/pv-components-tables.js +54 -40
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +21270 -20775
- package/pv-components/dist/web/pv-components.iife.js +58 -44
|
@@ -175,58 +175,58 @@
|
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
.pv-heading-1 {
|
|
178
|
-
font-size: var(--font-size-heading-1,
|
|
179
|
-
line-height: var(--line-height-heading-1, 1.
|
|
178
|
+
font-size: var(--font-size-heading-1, 1.25rem);
|
|
179
|
+
line-height: var(--line-height-heading-1, 1.2);
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.pv-heading-2 {
|
|
183
|
-
font-size: var(--font-size-heading-2,
|
|
184
|
-
line-height: var(--line-height-heading-2, 1.
|
|
183
|
+
font-size: var(--font-size-heading-2, 1rem);
|
|
184
|
+
line-height: var(--line-height-heading-2, 1.5);
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
.pv-heading-3 {
|
|
188
|
-
font-size: var(--font-size-heading-3,
|
|
188
|
+
font-size: var(--font-size-heading-3, 0.875rem);
|
|
189
189
|
line-height: var(--line-height-heading-3, 1.1428571);
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.pv-heading-4 {
|
|
193
|
-
font-size: var(--font-size-heading-4,
|
|
194
|
-
line-height: var(--line-height-heading-4, 1.
|
|
193
|
+
font-size: var(--font-size-heading-4, 0.75rem);
|
|
194
|
+
line-height: var(--line-height-heading-4, 1.3333333);
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
.pv-heading-5 {
|
|
198
|
-
font-size: var(--font-size-heading-5,
|
|
199
|
-
line-height: var(--line-height-heading-5, 1.
|
|
198
|
+
font-size: var(--font-size-heading-5, 0.75rem);
|
|
199
|
+
line-height: var(--line-height-heading-5, 1.3333333);
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
.pv-text-body-xl {
|
|
203
|
-
font-size: var(--font-size-xl,
|
|
204
|
-
line-height: var(--line-height-xl, 1.
|
|
203
|
+
font-size: var(--font-size-xl, 0.875rem);
|
|
204
|
+
line-height: var(--line-height-xl, 1.1428571);
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
.pv-text-body-lg {
|
|
208
|
-
font-size: var(--font-size-l,
|
|
209
|
-
line-height: var(--line-height-l, 1.
|
|
208
|
+
font-size: var(--font-size-l, 0.875rem);
|
|
209
|
+
line-height: var(--line-height-l, 1.1428571);
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
.pv-text-body-md {
|
|
213
|
-
font-size: var(--font-size-m,
|
|
214
|
-
line-height: var(--line-height-m, 1.
|
|
213
|
+
font-size: var(--font-size-m, 0.75rem);
|
|
214
|
+
line-height: var(--line-height-m, 1.33333333);
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
.pv-text-body-sm {
|
|
218
|
-
font-size: var(--font-size-s,
|
|
219
|
-
line-height: var(--line-height-s, 1.
|
|
218
|
+
font-size: var(--font-size-s, 0.6875rem);
|
|
219
|
+
line-height: var(--line-height-s, 1.45454545);
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
.pv-text-body-xs {
|
|
223
|
-
font-size: var(--font-size-xs, 0.
|
|
224
|
-
line-height: var(--line-height-xs, 1.
|
|
223
|
+
font-size: var(--font-size-xs, 0.6875rem);
|
|
224
|
+
line-height: var(--line-height-xs, 1.45454545);
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.pv-text-body-xxs {
|
|
228
|
-
font-size: var(--font-size-xxs, 0.
|
|
229
|
-
line-height: var(--line-height-xxs,
|
|
228
|
+
font-size: var(--font-size-xxs, 0.6875rem);
|
|
229
|
+
line-height: var(--line-height-xxs, 1.45454545);
|
|
230
230
|
letter-spacing: 0.12px;
|
|
231
231
|
}
|
|
232
232
|
|
|
@@ -235,44 +235,44 @@
|
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
.pv-text-title-xl {
|
|
238
|
-
font-size: var(--font-size-title-xl,
|
|
239
|
-
line-height: var(--line-height-title-xl, 1.
|
|
238
|
+
font-size: var(--font-size-title-xl, 0.875rem);
|
|
239
|
+
line-height: var(--line-height-title-xl, 1.1428571);
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
.pv-text-title-lg {
|
|
243
|
-
font-size: var(--font-size-title-l,
|
|
244
|
-
line-height: var(--line-height-title-l, 1.
|
|
243
|
+
font-size: var(--font-size-title-l, 0.875rem);
|
|
244
|
+
line-height: var(--line-height-title-l, 1.1428571);
|
|
245
245
|
}
|
|
246
246
|
|
|
247
247
|
.pv-text-title-md {
|
|
248
|
-
font-size: var(--font-size-title-m,
|
|
248
|
+
font-size: var(--font-size-title-m, 0.75rem);
|
|
249
249
|
line-height: var(--line-height-title-m, 1.33333333);
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
.pv-text-title-sm {
|
|
253
|
-
font-size: var(--font-size-title-s,
|
|
254
|
-
line-height: var(--line-height-title-s, 1.
|
|
253
|
+
font-size: var(--font-size-title-s, 0.6875rem);
|
|
254
|
+
line-height: var(--line-height-title-s, 1.45454545);
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
.pv-text-title-xs {
|
|
258
|
-
font-size: var(--font-size-title-xs, 0.
|
|
259
|
-
line-height: var(--line-height-title-xs, 1.
|
|
258
|
+
font-size: var(--font-size-title-xs, 0.6875rem);
|
|
259
|
+
line-height: var(--line-height-title-xs, 1.45454545);
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.pv-text-eyebrow-lg {
|
|
263
263
|
font-weight: var(--font-weight-bold, 700);
|
|
264
264
|
letter-spacing: 0.0375rem;
|
|
265
265
|
text-transform: uppercase;
|
|
266
|
-
font-size: var(--font-size-xs, 0.
|
|
267
|
-
line-height: var(--line-height-xs, 1.
|
|
266
|
+
font-size: var(--font-size-xs, 0.6875rem);
|
|
267
|
+
line-height: var(--line-height-xs, 1.45454545);
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
.pv-text-eyebrow-sm {
|
|
271
271
|
font-weight: var(--font-weight-bold, 700);
|
|
272
272
|
letter-spacing: 0.0375rem;
|
|
273
273
|
text-transform: uppercase;
|
|
274
|
-
font-size: var(--font-size-xxs, 0.
|
|
275
|
-
line-height: var(--line-height-xxs,
|
|
274
|
+
font-size: var(--font-size-xxs, 0.6875rem);
|
|
275
|
+
line-height: var(--line-height-xxs, 1.45454545);
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
.pv-text-center {
|
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
}
|
|
386
386
|
.pv-kbd {
|
|
387
387
|
display: inline-block;
|
|
388
|
-
font-size: 0.
|
|
388
|
+
font-size: 0.6875rem;
|
|
389
389
|
color: #4B595C;
|
|
390
390
|
border: 1px solid #DCDFE4;
|
|
391
391
|
border-radius: 4px;
|
|
@@ -426,7 +426,7 @@
|
|
|
426
426
|
:where([class*=pv-button]),
|
|
427
427
|
:where([class*=pv-segmented-control] button) {
|
|
428
428
|
background-color: transparent;
|
|
429
|
-
border:
|
|
429
|
+
border: 1px solid transparent;
|
|
430
430
|
cursor: pointer;
|
|
431
431
|
display: flex;
|
|
432
432
|
align-items: center;
|
|
@@ -434,15 +434,16 @@
|
|
|
434
434
|
gap: 0.5rem;
|
|
435
435
|
white-space: nowrap;
|
|
436
436
|
font-weight: var(--button-font-weight, 500);
|
|
437
|
-
line-height: var(--button-line-height,
|
|
437
|
+
line-height: var(--button-line-height, 1.45454545);
|
|
438
438
|
border-radius: var(--button-radius, 4px);
|
|
439
|
-
font-size: var(--button-font-size, 0.
|
|
439
|
+
font-size: var(--button-font-size, 0.6875rem);
|
|
440
440
|
transition-duration: 0.125s;
|
|
441
441
|
transition-property: background-color, color;
|
|
442
442
|
}
|
|
443
443
|
:where([class*=pv-button]):disabled,
|
|
444
444
|
:where([class*=pv-segmented-control] button):disabled {
|
|
445
|
-
color: #4B595C;
|
|
445
|
+
color: var(--button-disabled-color, #4B595C);
|
|
446
|
+
background-color: var(--button-disabled-background-color, #ECECEC);
|
|
446
447
|
cursor: unset;
|
|
447
448
|
}
|
|
448
449
|
:where([class*=pv-button]):hover,
|
|
@@ -456,7 +457,7 @@
|
|
|
456
457
|
.pv-button-ghost,
|
|
457
458
|
.pv-button-destructive,
|
|
458
459
|
.pv-button-ghost-destructive {
|
|
459
|
-
padding: var(--button-padding, 0.5rem 0.75rem);
|
|
460
|
+
padding: var(--button-padding, calc(0.5rem - 1px) 0.75rem);
|
|
460
461
|
}
|
|
461
462
|
.pv-button-primary:not(:disabled):hover, .pv-button-primary:not(:disabled):focus-visible,
|
|
462
463
|
.pv-button-secondary:not(:disabled):hover,
|
|
@@ -477,40 +478,20 @@
|
|
|
477
478
|
.pv-button-ghost:disabled,
|
|
478
479
|
.pv-button-destructive:disabled,
|
|
479
480
|
.pv-button-ghost-destructive:disabled {
|
|
480
|
-
color: #4B595C;
|
|
481
|
-
background-color: #
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
.pv-button-primary-outline:disabled,
|
|
485
|
-
.pv-button-secondary-outline:disabled,
|
|
486
|
-
.pv-button-link:disabled,
|
|
487
|
-
.pv-button-link-destructive:disabled {
|
|
488
|
-
color: #4B595C;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
.pv-button-primary,
|
|
492
|
-
.pv-button-secondary,
|
|
493
|
-
.pv-button-destructive {
|
|
494
|
-
color: #FFFFFF;
|
|
495
|
-
}
|
|
496
|
-
.pv-button-primary:not(:disabled):hover, .pv-button-primary:not(:disabled):focus-visible,
|
|
497
|
-
.pv-button-secondary:not(:disabled):hover,
|
|
498
|
-
.pv-button-secondary:not(:disabled):focus-visible,
|
|
499
|
-
.pv-button-destructive:not(:disabled):hover,
|
|
500
|
-
.pv-button-destructive:not(:disabled):focus-visible {
|
|
501
|
-
color: #FFFFFF;
|
|
481
|
+
color: var(--button-disabled-color, #4B595C);
|
|
482
|
+
background-color: var(--button-disabled-background-color, #ECECEC);
|
|
502
483
|
}
|
|
503
484
|
|
|
504
485
|
.pv-button-primary {
|
|
505
|
-
color: var(--
|
|
506
|
-
background-color: var(--
|
|
486
|
+
color: var(--button-primary-color, #FFFFFF);
|
|
487
|
+
background-color: var(--button-primary-background-color, #16696D);
|
|
507
488
|
}
|
|
508
489
|
.pv-button-primary:not(:disabled):hover, .pv-button-primary:not(:disabled):focus-visible {
|
|
509
|
-
color: var(--
|
|
510
|
-
background-color: var(--
|
|
490
|
+
color: var(--button-primary-hover-color, #FFFFFF);
|
|
491
|
+
background-color: var(--button-primary-hover-background-color, #0D5256);
|
|
511
492
|
}
|
|
512
493
|
.pv-button-primary:not(:disabled):active {
|
|
513
|
-
background-color: var(--
|
|
494
|
+
background-color: var(--button-primary-pressed-background-color, #02363D);
|
|
514
495
|
}
|
|
515
496
|
|
|
516
497
|
.pv-button-primary.pv-button-inverse {
|
|
@@ -523,15 +504,16 @@
|
|
|
523
504
|
}
|
|
524
505
|
|
|
525
506
|
.pv-button-secondary {
|
|
526
|
-
color: var(--
|
|
527
|
-
background-color: var(--
|
|
507
|
+
color: var(--button-secondary-color, #121313);
|
|
508
|
+
background-color: var(--button-secondary-background-color, transparent);
|
|
509
|
+
border-color: var(--button-secondary-border-color, #E3E7EA);
|
|
528
510
|
}
|
|
529
511
|
.pv-button-secondary:not(:disabled):hover, .pv-button-secondary:not(:disabled):focus-visible {
|
|
530
|
-
color: var(--
|
|
531
|
-
background-color: var(--
|
|
512
|
+
color: var(--button-secondary-hover-color, #121313);
|
|
513
|
+
background-color: var(--button-secondary-hover-background-color, #E8F2F4);
|
|
532
514
|
}
|
|
533
515
|
.pv-button-secondary:not(:disabled):active {
|
|
534
|
-
background-color: var(--
|
|
516
|
+
background-color: var(--button-secondary-pressed-background-color, #C7D8DB);
|
|
535
517
|
}
|
|
536
518
|
.pv-button-secondary.pv-button-inverse {
|
|
537
519
|
color: var(--color-text-body, #121313);
|
|
@@ -546,34 +528,38 @@
|
|
|
546
528
|
}
|
|
547
529
|
|
|
548
530
|
.pv-button-tertiary {
|
|
549
|
-
background-color:
|
|
531
|
+
background-color: transparent;
|
|
532
|
+
border-color: transparent;
|
|
550
533
|
}
|
|
551
534
|
.pv-button-tertiary:not(:disabled) {
|
|
552
535
|
color: #121313;
|
|
553
536
|
}
|
|
554
537
|
.pv-button-tertiary:not(:disabled):hover, .pv-button-tertiary:not(:disabled):focus-visible {
|
|
555
|
-
background-color: #
|
|
538
|
+
background-color: #E8F2F4;
|
|
556
539
|
}
|
|
557
540
|
.pv-button-tertiary:not(:disabled):active {
|
|
558
|
-
background-color: #
|
|
541
|
+
background-color: #C7D8DB;
|
|
559
542
|
}
|
|
560
543
|
|
|
561
544
|
.pv-button-destructive {
|
|
562
|
-
|
|
545
|
+
color: var(--button-destructive-color, #801A00);
|
|
546
|
+
background-color: var(--button-destructive-background-color, #FFEFEB);
|
|
563
547
|
}
|
|
564
548
|
.pv-button-destructive:not(:disabled):hover, .pv-button-destructive:not(:disabled):focus-visible {
|
|
565
|
-
background-color: #
|
|
549
|
+
background-color: var(--button-destructive-hover-background-color, #FEE0D8);
|
|
566
550
|
}
|
|
567
551
|
.pv-button-destructive:not(:disabled):active {
|
|
568
|
-
background-color: #
|
|
552
|
+
background-color: var(--button-destructive-pressed-background-color, #FFAD99);
|
|
569
553
|
}
|
|
570
554
|
|
|
571
555
|
.pv-button-ghost {
|
|
572
|
-
color:
|
|
556
|
+
color: var(--button-ghost-color, #121313);
|
|
573
557
|
}
|
|
574
558
|
.pv-button-ghost:not(:disabled):hover, .pv-button-ghost:not(:disabled):focus-visible {
|
|
575
|
-
color: #
|
|
576
|
-
|
|
559
|
+
background-color: var(--button-ghost-hover-background-color, #E8F2F4);
|
|
560
|
+
}
|
|
561
|
+
.pv-button-ghost:not(:disabled):active {
|
|
562
|
+
background-color: var(--button-ghost-pressed-background-color, #C7D8DB);
|
|
577
563
|
}
|
|
578
564
|
|
|
579
565
|
.pv-button-ghost.pv-button-inverse {
|
|
@@ -585,41 +571,45 @@
|
|
|
585
571
|
}
|
|
586
572
|
|
|
587
573
|
.pv-button-ghost-destructive {
|
|
588
|
-
color: #
|
|
574
|
+
color: #801A00;
|
|
589
575
|
}
|
|
590
576
|
.pv-button-ghost-destructive:not(:disabled):hover, .pv-button-ghost-destructive:not(:disabled):focus-visible {
|
|
591
|
-
color: #
|
|
592
|
-
background-color: #
|
|
577
|
+
color: #801A00;
|
|
578
|
+
background-color: #FEE0D8;
|
|
579
|
+
}
|
|
580
|
+
.pv-button-ghost-destructive:not(:disabled):active {
|
|
581
|
+
background-color: #FFAD99;
|
|
593
582
|
}
|
|
594
583
|
|
|
595
584
|
.pv-button-primary-outline {
|
|
596
|
-
border:
|
|
597
|
-
color: var(--
|
|
598
|
-
padding: calc(0.
|
|
585
|
+
border: 1px solid var(--button-primary-outline-border-color, #E3E7EA);
|
|
586
|
+
color: var(--button-primary-outline-color, #121313);
|
|
587
|
+
padding: calc(0.5rem - 1px) 0.75rem;
|
|
599
588
|
}
|
|
600
589
|
.pv-button-primary-outline:not(:disabled):hover, .pv-button-primary-outline:not(:disabled):focus-visible {
|
|
601
|
-
background-color: var(--
|
|
602
|
-
color: var(--
|
|
590
|
+
background-color: var(--button-primary-outline-hover-background-color, #E8F2F4);
|
|
591
|
+
color: var(--button-primary-outline-hover-color, #121313);
|
|
603
592
|
}
|
|
604
593
|
.pv-button-primary-outline:disabled {
|
|
605
|
-
border-color: #
|
|
594
|
+
border-color: #E3E7EA;
|
|
595
|
+
color: #4B595C;
|
|
606
596
|
}
|
|
607
597
|
|
|
608
598
|
.pv-button-secondary-outline {
|
|
609
|
-
border:
|
|
610
|
-
color: var(--
|
|
611
|
-
padding: calc(0.
|
|
599
|
+
border: 1px solid var(--button-secondary-outline-border-color, #E3E7EA);
|
|
600
|
+
color: var(--button-secondary-outline-color, #121313);
|
|
601
|
+
padding: calc(0.5rem - 1px) 0.75rem;
|
|
612
602
|
}
|
|
613
603
|
.pv-button-secondary-outline:not(:disabled):hover, .pv-button-secondary-outline:not(:disabled):focus-visible {
|
|
614
|
-
background-color: var(--
|
|
615
|
-
color: var(--
|
|
604
|
+
background-color: var(--button-secondary-outline-hover-background-color, #E8F2F4);
|
|
605
|
+
color: var(--button-secondary-outline-hover-color, #121313);
|
|
616
606
|
}
|
|
617
607
|
.pv-button-secondary-outline:active {
|
|
618
|
-
color: var(--
|
|
619
|
-
background-color: var(--color-background-secondary-hover, #0D5256);
|
|
608
|
+
background-color: var(--button-secondary-outline-pressed-background-color, #C7D8DB);
|
|
620
609
|
}
|
|
621
610
|
.pv-button-secondary-outline:disabled {
|
|
622
|
-
border-color: #
|
|
611
|
+
border-color: #E3E7EA;
|
|
612
|
+
color: #4B595C;
|
|
623
613
|
}
|
|
624
614
|
.pv-button-secondary-outline.pv-button-inverse {
|
|
625
615
|
color: var(--color-text-inverse, #FFFFFF);
|
|
@@ -634,22 +624,22 @@
|
|
|
634
624
|
}
|
|
635
625
|
|
|
636
626
|
.pv-button-icon {
|
|
637
|
-
padding: 0;
|
|
638
|
-
border-radius:
|
|
639
|
-
width: 1.5rem;
|
|
640
|
-
height: 1.5rem;
|
|
627
|
+
padding: 0.5rem;
|
|
628
|
+
border-radius: 4px;
|
|
641
629
|
display: grid;
|
|
642
630
|
place-items: center;
|
|
643
631
|
color: currentColor;
|
|
644
|
-
|
|
645
|
-
transition-property: opacity;
|
|
632
|
+
background-color: transparent;
|
|
646
633
|
}
|
|
647
634
|
.pv-button-icon:hover, .pv-button-icon:focus-visible {
|
|
648
|
-
|
|
635
|
+
background-color: #E8F2F4;
|
|
636
|
+
}
|
|
637
|
+
.pv-button-icon:active {
|
|
638
|
+
background-color: #C7D8DB;
|
|
649
639
|
}
|
|
650
640
|
|
|
651
641
|
.pv-button-icon-outline {
|
|
652
|
-
background-color: #
|
|
642
|
+
background-color: #F7F8F8;
|
|
653
643
|
border: 1px solid #DCDFE4;
|
|
654
644
|
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
655
645
|
color: #121313;
|
|
@@ -664,11 +654,15 @@
|
|
|
664
654
|
transition-property: box-shadow;
|
|
665
655
|
}
|
|
666
656
|
|
|
657
|
+
.pv-button-xsmall {
|
|
658
|
+
padding: var(--button-xsmall-padding, calc(0.125rem - 1px) 0.25rem);
|
|
659
|
+
}
|
|
660
|
+
|
|
667
661
|
.pv-button-small {
|
|
668
|
-
padding: 0.5rem
|
|
662
|
+
padding: var(--button-small-padding, calc(0.25rem - 1px) 0.5rem);
|
|
669
663
|
}
|
|
670
664
|
.pv-button-small.pv-button-primary-outline {
|
|
671
|
-
padding: calc(0.
|
|
665
|
+
padding: calc(0.25rem - 1px) 0.5rem;
|
|
672
666
|
}
|
|
673
667
|
|
|
674
668
|
.pv-button-large {
|
|
@@ -691,6 +685,10 @@
|
|
|
691
685
|
[class*=pv-button-link]:hover, [class*=pv-button-link]:focus-visible {
|
|
692
686
|
text-decoration: none;
|
|
693
687
|
}
|
|
688
|
+
[class*=pv-button-link]:disabled {
|
|
689
|
+
color: #4B595C;
|
|
690
|
+
background-color: transparent;
|
|
691
|
+
}
|
|
694
692
|
[class*=pv-button-link].pv-button-inverse {
|
|
695
693
|
color: #FFFFFF;
|
|
696
694
|
}
|
|
@@ -702,10 +700,10 @@
|
|
|
702
700
|
}
|
|
703
701
|
|
|
704
702
|
.pv-button-link-destructive {
|
|
705
|
-
color: #
|
|
703
|
+
color: #801A00;
|
|
706
704
|
}
|
|
707
705
|
.pv-button-link-destructive:not(:disabled):hover, .pv-button-link-destructive:not(:disabled):focus-visible {
|
|
708
|
-
color: #
|
|
706
|
+
color: #801A00;
|
|
709
707
|
}
|
|
710
708
|
|
|
711
709
|
[class*=pv-segmented-control] {
|
|
@@ -841,6 +839,63 @@
|
|
|
841
839
|
background-color: #DCDFE4;
|
|
842
840
|
}
|
|
843
841
|
|
|
842
|
+
.pv-alpha-button,
|
|
843
|
+
[data-collapsed] .pv-alpha-button {
|
|
844
|
+
width: min-content;
|
|
845
|
+
background-color: #FFFFFF;
|
|
846
|
+
border-radius: 4px;
|
|
847
|
+
border: 0;
|
|
848
|
+
padding: 0.5rem;
|
|
849
|
+
display: flex;
|
|
850
|
+
align-items: center;
|
|
851
|
+
justify-content: space-between;
|
|
852
|
+
cursor: pointer;
|
|
853
|
+
}
|
|
854
|
+
.pv-alpha-button span:first-child,
|
|
855
|
+
[data-collapsed] .pv-alpha-button span:first-child {
|
|
856
|
+
display: none;
|
|
857
|
+
font-size: 0.9375rem;
|
|
858
|
+
font-weight: 600;
|
|
859
|
+
}
|
|
860
|
+
.pv-alpha-button span:last-child,
|
|
861
|
+
[data-collapsed] .pv-alpha-button span:last-child {
|
|
862
|
+
display: inline-block;
|
|
863
|
+
background-color: #EAB333;
|
|
864
|
+
border-radius: 4px;
|
|
865
|
+
padding: 0.125rem;
|
|
866
|
+
font-size: 0.6875rem;
|
|
867
|
+
line-height: 1rem;
|
|
868
|
+
font-weight: 700;
|
|
869
|
+
text-transform: uppercase;
|
|
870
|
+
}
|
|
871
|
+
.pv-alpha-button:hover, .pv-alpha-button:focus-visible, .pv-alpha-button:active,
|
|
872
|
+
[data-collapsed] .pv-alpha-button:hover,
|
|
873
|
+
[data-collapsed] .pv-alpha-button:focus-visible,
|
|
874
|
+
[data-collapsed] .pv-alpha-button:active {
|
|
875
|
+
background-color: #176F6F;
|
|
876
|
+
}
|
|
877
|
+
.pv-alpha-button:hover span:first-child, .pv-alpha-button:focus-visible span:first-child, .pv-alpha-button:active span:first-child,
|
|
878
|
+
[data-collapsed] .pv-alpha-button:hover span:first-child,
|
|
879
|
+
[data-collapsed] .pv-alpha-button:focus-visible span:first-child,
|
|
880
|
+
[data-collapsed] .pv-alpha-button:active span:first-child {
|
|
881
|
+
color: #FFFFFF;
|
|
882
|
+
}
|
|
883
|
+
.pv-alpha-button:active,
|
|
884
|
+
[data-collapsed] .pv-alpha-button:active {
|
|
885
|
+
background-color: #0D5256;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
@media (width >= 768px) {
|
|
889
|
+
.pv-alpha-button {
|
|
890
|
+
width: 100%;
|
|
891
|
+
}
|
|
892
|
+
.pv-alpha-button span:first-child {
|
|
893
|
+
display: inline-block;
|
|
894
|
+
}
|
|
895
|
+
.pv-alpha-button span:last-child {
|
|
896
|
+
padding: 0.125rem 0.5rem;
|
|
897
|
+
}
|
|
898
|
+
}
|
|
844
899
|
.pv-input-text,
|
|
845
900
|
.pv-input-search,
|
|
846
901
|
.pv-input-date,
|
|
@@ -848,9 +903,9 @@
|
|
|
848
903
|
.pv-select,
|
|
849
904
|
.pv-select-multiple {
|
|
850
905
|
color: #121313;
|
|
851
|
-
padding: var(--text-input-padding,
|
|
852
|
-
font-size: var(--text-input-font-size,
|
|
853
|
-
line-height: var(--text-input-line-height, 1.
|
|
906
|
+
padding: var(--text-input-padding, 0.5rem 0.75rem);
|
|
907
|
+
font-size: var(--text-input-font-size, 0.75rem);
|
|
908
|
+
line-height: var(--text-input-line-height, 1.33333333);
|
|
854
909
|
border: var(--text-input-border-width, 1px) solid var(--text-input-border-color, #E3E7EA);
|
|
855
910
|
border-radius: var(--text-input-radius, 4px);
|
|
856
911
|
appearance: none;
|
|
@@ -860,27 +915,55 @@
|
|
|
860
915
|
transition-duration: 0.125s;
|
|
861
916
|
transition-property: background-color, border-color, color;
|
|
862
917
|
}
|
|
863
|
-
.pv-input-text:not(:disabled, [data-invalid]):
|
|
864
|
-
.pv-input-search:not(:disabled, [data-invalid]):focus-visible,
|
|
918
|
+
.pv-input-text:not(:disabled, [data-invalid]):hover,
|
|
865
919
|
.pv-input-search:not(:disabled, [data-invalid]):hover,
|
|
866
|
-
.pv-input-date:not(:disabled, [data-invalid]):focus-visible,
|
|
867
920
|
.pv-input-date:not(:disabled, [data-invalid]):hover,
|
|
868
|
-
.pv-textarea:not(:disabled, [data-invalid]):focus-visible,
|
|
869
921
|
.pv-textarea:not(:disabled, [data-invalid]):hover,
|
|
870
|
-
.pv-select:not(:disabled, [data-invalid]):focus-visible,
|
|
871
922
|
.pv-select:not(:disabled, [data-invalid]):hover,
|
|
872
|
-
.pv-select-multiple:not(:disabled, [data-invalid]):focus-visible,
|
|
873
923
|
.pv-select-multiple:not(:disabled, [data-invalid]):hover {
|
|
874
|
-
border-color: var(--
|
|
924
|
+
border-color: var(--text-input-hover-border-color, #D2D8DC);
|
|
925
|
+
}
|
|
926
|
+
.pv-input-text:not(:disabled, [data-invalid]):focus-visible,
|
|
927
|
+
.pv-input-search:not(:disabled, [data-invalid]):focus-visible,
|
|
928
|
+
.pv-input-date:not(:disabled, [data-invalid]):focus-visible,
|
|
929
|
+
.pv-textarea:not(:disabled, [data-invalid]):focus-visible,
|
|
930
|
+
.pv-select:not(:disabled, [data-invalid]):focus-visible,
|
|
931
|
+
.pv-select-multiple:not(:disabled, [data-invalid]):focus-visible {
|
|
932
|
+
border-color: var(--text-input-focus-border-color, #36C5BA);
|
|
875
933
|
outline: none;
|
|
876
934
|
}
|
|
877
|
-
.pv-input-text[data-invalid],
|
|
935
|
+
.pv-input-text[data-invalid], .pv-input-text:invalid,
|
|
878
936
|
.pv-input-search[data-invalid],
|
|
937
|
+
.pv-input-search:invalid,
|
|
879
938
|
.pv-input-date[data-invalid],
|
|
939
|
+
.pv-input-date:invalid,
|
|
880
940
|
.pv-textarea[data-invalid],
|
|
941
|
+
.pv-textarea:invalid,
|
|
881
942
|
.pv-select[data-invalid],
|
|
882
|
-
.pv-select
|
|
883
|
-
|
|
943
|
+
.pv-select:invalid,
|
|
944
|
+
.pv-select-multiple[data-invalid],
|
|
945
|
+
.pv-select-multiple:invalid {
|
|
946
|
+
border-color: var(--text-input-error-border-color, #FF471A);
|
|
947
|
+
background-image: var(--text-input-error-image, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c6.071 0 11 4.929 11 11s-4.929 11-11 11S1 18.071 1 12 5.929 1 12 1Zm0 2c-4.967 0-9 4.033-9 9s4.033 9 9 9 9-4.033 9-9-4.033-9-9-9Zm0 12.042a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM11 8a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0V8Z' fill='%23FF471A'/%3E%3C/svg%3E"));
|
|
948
|
+
background-repeat: no-repeat;
|
|
949
|
+
background-size: 1rem 1rem;
|
|
950
|
+
background-position: right 0.5rem center;
|
|
951
|
+
padding-inline-end: 2rem;
|
|
952
|
+
}
|
|
953
|
+
.pv-input-text[data-invalid].pv-text-right, .pv-input-text.pv-text-right:invalid,
|
|
954
|
+
.pv-input-search[data-invalid].pv-text-right,
|
|
955
|
+
.pv-input-search.pv-text-right:invalid,
|
|
956
|
+
.pv-input-date[data-invalid].pv-text-right,
|
|
957
|
+
.pv-input-date.pv-text-right:invalid,
|
|
958
|
+
.pv-textarea[data-invalid].pv-text-right,
|
|
959
|
+
.pv-textarea.pv-text-right:invalid,
|
|
960
|
+
.pv-select[data-invalid].pv-text-right,
|
|
961
|
+
.pv-select.pv-text-right:invalid,
|
|
962
|
+
.pv-select-multiple[data-invalid].pv-text-right,
|
|
963
|
+
.pv-select-multiple.pv-text-right:invalid {
|
|
964
|
+
background-position: left 0.5rem center;
|
|
965
|
+
padding-inline-end: 0.75rem;
|
|
966
|
+
padding-inline-start: 2rem;
|
|
884
967
|
}
|
|
885
968
|
.pv-input-text:disabled, .pv-input-text[readonly],
|
|
886
969
|
.pv-input-search:disabled,
|
|
@@ -893,11 +976,12 @@
|
|
|
893
976
|
.pv-select[readonly],
|
|
894
977
|
.pv-select-multiple:disabled,
|
|
895
978
|
.pv-select-multiple[readonly] {
|
|
896
|
-
|
|
979
|
+
color: var(--text-input-disabled-text-color, #7D898D);
|
|
980
|
+
background-color: var(--text-input-disabled-background-color, #ECECEC);
|
|
897
981
|
}
|
|
898
982
|
|
|
899
983
|
.pv-input-search::placeholder {
|
|
900
|
-
color: #
|
|
984
|
+
color: var(--text-input-placeholder-color, #89989B);
|
|
901
985
|
}
|
|
902
986
|
|
|
903
987
|
.pv-input-search {
|
|
@@ -941,13 +1025,14 @@
|
|
|
941
1025
|
resize: var(--resize);
|
|
942
1026
|
}
|
|
943
1027
|
|
|
944
|
-
.pv-label
|
|
945
|
-
|
|
1028
|
+
.pv-label,
|
|
1029
|
+
.pv-input-group > label {
|
|
1030
|
+
font-size: var(--label-font-size, 0.6875rem);
|
|
946
1031
|
font-weight: var(--label-font-weight, 400);
|
|
947
1032
|
letter-spacing: 0.12px;
|
|
948
1033
|
}
|
|
949
1034
|
|
|
950
|
-
.pv-label-hover:hover {
|
|
1035
|
+
label:has(input:not(:disabled)).pv-label-hover:hover {
|
|
951
1036
|
cursor: pointer;
|
|
952
1037
|
}
|
|
953
1038
|
|
|
@@ -1058,7 +1143,7 @@
|
|
|
1058
1143
|
}
|
|
1059
1144
|
|
|
1060
1145
|
.pv-input-file {
|
|
1061
|
-
background-color: #
|
|
1146
|
+
background-color: #F7F8F8;
|
|
1062
1147
|
padding: 0.75rem;
|
|
1063
1148
|
border-radius: 4px;
|
|
1064
1149
|
display: flex;
|
|
@@ -1081,22 +1166,49 @@
|
|
|
1081
1166
|
}
|
|
1082
1167
|
.pv-switch input[type=checkbox] {
|
|
1083
1168
|
appearance: none;
|
|
1084
|
-
background-color: #
|
|
1169
|
+
background-color: #D9DEDE;
|
|
1085
1170
|
border-color: transparent;
|
|
1086
1171
|
border-radius: 1rem;
|
|
1087
1172
|
display: flex;
|
|
1088
1173
|
align-items: center;
|
|
1089
|
-
gap: 0.5rem;
|
|
1090
|
-
flex-wrap: nowrap;
|
|
1091
1174
|
padding: 0;
|
|
1092
1175
|
position: relative;
|
|
1093
1176
|
height: 24px;
|
|
1094
1177
|
width: 48px;
|
|
1095
1178
|
}
|
|
1096
|
-
.pv-switch input[type=checkbox]:not(:disabled):hover
|
|
1097
|
-
|
|
1179
|
+
.pv-switch input[type=checkbox]:not(:disabled):hover,
|
|
1180
|
+
.pv-switch input[type=checkbox]:not(:disabled):focus-visible {
|
|
1181
|
+
background-color: #E8F2F4;
|
|
1098
1182
|
cursor: pointer;
|
|
1099
1183
|
}
|
|
1184
|
+
.pv-switch input[type=checkbox]:not(:disabled):active {
|
|
1185
|
+
background-color: #C7D8DB;
|
|
1186
|
+
}
|
|
1187
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):hover,
|
|
1188
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):focus-visible {
|
|
1189
|
+
background-color: #0D5256;
|
|
1190
|
+
}
|
|
1191
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):hover:after,
|
|
1192
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):focus-visible:after {
|
|
1193
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%230D5256'/%3E%3C/svg%3E");
|
|
1194
|
+
}
|
|
1195
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):active {
|
|
1196
|
+
background-color: #02363D;
|
|
1197
|
+
}
|
|
1198
|
+
.pv-switch input[type=checkbox]:checked:not(:disabled):active:after {
|
|
1199
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
1200
|
+
}
|
|
1201
|
+
.pv-switch input[type=checkbox]:disabled,
|
|
1202
|
+
.pv-switch input[type=checkbox]:checked:disabled {
|
|
1203
|
+
background-color: #ECECEC;
|
|
1204
|
+
}
|
|
1205
|
+
.pv-switch input[type=checkbox]:disabled:after,
|
|
1206
|
+
.pv-switch input[type=checkbox]:checked:disabled:after {
|
|
1207
|
+
background-color: #C9D1D0;
|
|
1208
|
+
}
|
|
1209
|
+
.pv-switch input[type=checkbox]:checked:disabled:after {
|
|
1210
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%237D898D'/%3E%3C/svg%3E");
|
|
1211
|
+
}
|
|
1100
1212
|
.pv-switch input[type=checkbox]:after {
|
|
1101
1213
|
background-color: #FFFFFF;
|
|
1102
1214
|
border-radius: 50%;
|
|
@@ -1108,43 +1220,9 @@
|
|
|
1108
1220
|
transition-duration: 0.3s;
|
|
1109
1221
|
height: 20px;
|
|
1110
1222
|
width: 20px;
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
}
|
|
1115
|
-
.pv-switch input[type=checkbox]:disabled {
|
|
1116
|
-
background-color: #8A95A5;
|
|
1117
|
-
}
|
|
1118
|
-
.pv-switch input[type=checkbox]:disabled:after {
|
|
1119
|
-
background-color: #DCDFE4;
|
|
1120
|
-
}
|
|
1121
|
-
.pv-switch > span {
|
|
1122
|
-
font-weight: normal;
|
|
1123
|
-
position: relative;
|
|
1124
|
-
}
|
|
1125
|
-
.pv-switch > span:first-of-type:after {
|
|
1126
|
-
border-right: 1px solid #DCDFE4;
|
|
1127
|
-
content: "";
|
|
1128
|
-
display: block;
|
|
1129
|
-
position: absolute;
|
|
1130
|
-
top: calc(50% - 3px - 3px);
|
|
1131
|
-
right: -0.55rem;
|
|
1132
|
-
height: 0.75rem;
|
|
1133
|
-
width: 1px;
|
|
1134
|
-
}
|
|
1135
|
-
.pv-switch > span:last-of-type:before {
|
|
1136
|
-
border: 1px solid #535963;
|
|
1137
|
-
border-radius: 0.375rem;
|
|
1138
|
-
content: "";
|
|
1139
|
-
display: block;
|
|
1140
|
-
position: absolute;
|
|
1141
|
-
top: calc(50% - 3px - 1px);
|
|
1142
|
-
height: 6px;
|
|
1143
|
-
width: 6px;
|
|
1144
|
-
}
|
|
1145
|
-
.pv-switch > span:last-of-type:before {
|
|
1146
|
-
border-color: #C5CAD2;
|
|
1147
|
-
left: -12px;
|
|
1223
|
+
background-repeat: no-repeat;
|
|
1224
|
+
background-size: 1rem 1rem;
|
|
1225
|
+
background-position: center center;
|
|
1148
1226
|
}
|
|
1149
1227
|
.pv-switch input[type=checkbox]:checked {
|
|
1150
1228
|
background-color: #16696D;
|
|
@@ -1152,16 +1230,23 @@
|
|
|
1152
1230
|
.pv-switch input[type=checkbox]:checked:after {
|
|
1153
1231
|
background-color: #FFFFFF;
|
|
1154
1232
|
right: 2px;
|
|
1233
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.293 5.293a1 1 0 0 1 1.414 1.414l-11 11a.999.999 0 0 1-1.414 0l-5-5a1 1 0 0 1 1.414-1.414L9 15.586 19.293 5.293Z' fill='%2316696D'/%3E%3C/svg%3E");
|
|
1155
1234
|
}
|
|
1156
|
-
|
|
1157
|
-
|
|
1235
|
+
|
|
1236
|
+
.pv-switch.pv-input-small {
|
|
1237
|
+
padding: 0;
|
|
1158
1238
|
}
|
|
1159
|
-
.pv-switch input[type=checkbox]
|
|
1160
|
-
|
|
1239
|
+
.pv-switch.pv-input-small input[type=checkbox] {
|
|
1240
|
+
height: 20px;
|
|
1241
|
+
width: 40px;
|
|
1161
1242
|
}
|
|
1162
|
-
.pv-switch input[type=checkbox]:
|
|
1163
|
-
|
|
1164
|
-
|
|
1243
|
+
.pv-switch.pv-input-small input[type=checkbox]:after {
|
|
1244
|
+
right: calc(100% - 16px - 2px);
|
|
1245
|
+
height: 16px;
|
|
1246
|
+
width: 16px;
|
|
1247
|
+
}
|
|
1248
|
+
.pv-switch.pv-input-small input[type=checkbox]:checked:after {
|
|
1249
|
+
right: 2px;
|
|
1165
1250
|
}
|
|
1166
1251
|
|
|
1167
1252
|
[class*=pv-label-selectable] {
|
|
@@ -1200,7 +1285,7 @@
|
|
|
1200
1285
|
border: 2px solid #DCDFE4;
|
|
1201
1286
|
border-radius: var(--button-radius, 4px);
|
|
1202
1287
|
color: #121313;
|
|
1203
|
-
font-size: var(--button-font-size, 0.
|
|
1288
|
+
font-size: var(--button-font-size, 0.6875rem);
|
|
1204
1289
|
font-weight: var(--button-font-weight, 500);
|
|
1205
1290
|
padding: 0.25rem 0.5rem;
|
|
1206
1291
|
transition-duration: 0.125s;
|
|
@@ -1265,6 +1350,46 @@
|
|
|
1265
1350
|
padding-inline-start: 2rem;
|
|
1266
1351
|
}
|
|
1267
1352
|
|
|
1353
|
+
.pv-input-group {
|
|
1354
|
+
display: flex;
|
|
1355
|
+
flex-direction: column;
|
|
1356
|
+
gap: 0.5rem;
|
|
1357
|
+
}
|
|
1358
|
+
.pv-input-group p {
|
|
1359
|
+
font-size: 0.6875rem;
|
|
1360
|
+
line-height: 1.45454545;
|
|
1361
|
+
padding-inline-start: calc(0.75rem + 1px);
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
div:has(> .pv-input-text[data-prefix]),
|
|
1365
|
+
div:has(> .pv-input-text[data-suffix]) {
|
|
1366
|
+
position: relative;
|
|
1367
|
+
}
|
|
1368
|
+
div:has(> .pv-input-text[data-prefix]):after,
|
|
1369
|
+
div:has(> .pv-input-text[data-suffix]):after {
|
|
1370
|
+
position: absolute;
|
|
1371
|
+
font-size: 0.75rem;
|
|
1372
|
+
line-height: 1.33333333;
|
|
1373
|
+
top: 50%;
|
|
1374
|
+
transform: translateY(-50%);
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
div:has(> .pv-input-text[data-prefix="$"]):after {
|
|
1378
|
+
content: "$";
|
|
1379
|
+
left: 0.75rem;
|
|
1380
|
+
}
|
|
1381
|
+
div:has(> .pv-input-text[data-prefix="$"]) .pv-input-text {
|
|
1382
|
+
padding-inline-start: calc(0.75rem + 1.5ch);
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
div:has(> .pv-input-text[data-suffix="%"]):after {
|
|
1386
|
+
content: "%";
|
|
1387
|
+
right: 0.75rem;
|
|
1388
|
+
}
|
|
1389
|
+
div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
1390
|
+
padding-inline-end: calc(0.75rem + 1.5ch);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1268
1393
|
.pv-nav-container {
|
|
1269
1394
|
padding: 20px 9px 20px 20px;
|
|
1270
1395
|
overflow-y: auto;
|
|
@@ -1478,7 +1603,7 @@
|
|
|
1478
1603
|
align-items: center;
|
|
1479
1604
|
gap: 8px;
|
|
1480
1605
|
text-decoration: none;
|
|
1481
|
-
padding: var(--nav-list-padding, 0.5rem
|
|
1606
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1482
1607
|
white-space: nowrap;
|
|
1483
1608
|
font-weight: var(--nav-list-font-weight, 500);
|
|
1484
1609
|
font-size: var(--nav-list-font-size, 0.875rem);
|
|
@@ -1596,7 +1721,7 @@
|
|
|
1596
1721
|
[data-collapsed] .pv-nav-list-inverse summary:focus-visible:not([aria-current=page]),
|
|
1597
1722
|
[data-collapsed] .pv-nav-list-inverse summary:hover:not([aria-current=page]) {
|
|
1598
1723
|
color: #121313;
|
|
1599
|
-
background-color: #
|
|
1724
|
+
background-color: #F7F8F8;
|
|
1600
1725
|
}
|
|
1601
1726
|
.pv-nav-list-inverse summary,
|
|
1602
1727
|
[data-collapsed] .pv-nav-list-inverse summary {
|
|
@@ -1680,6 +1805,7 @@
|
|
|
1680
1805
|
.pv-nav-list a {
|
|
1681
1806
|
max-width: none;
|
|
1682
1807
|
display: flex;
|
|
1808
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1683
1809
|
}
|
|
1684
1810
|
}
|
|
1685
1811
|
[data-floating] .pv-nav-list {
|
|
@@ -1691,7 +1817,7 @@
|
|
|
1691
1817
|
[data-floating] .pv-nav-list a {
|
|
1692
1818
|
max-width: none;
|
|
1693
1819
|
display: flex;
|
|
1694
|
-
padding: var(--nav-list-padding, 0.5rem
|
|
1820
|
+
padding: var(--nav-list-padding, 0.5rem 0.75rem);
|
|
1695
1821
|
}
|
|
1696
1822
|
|
|
1697
1823
|
[data-collapsed] .pv-nav-list:not(.pv-nav-list-inverse) ul {
|
|
@@ -1711,6 +1837,11 @@
|
|
|
1711
1837
|
background-color: var(--nav-list-hover-background-color, #E8F2F4);
|
|
1712
1838
|
color: var(--nav-list-hover-text-color, #0D5256);
|
|
1713
1839
|
}
|
|
1840
|
+
.pv-layout-primary:not([data-floating]) .pv-nav-list,
|
|
1841
|
+
.pv-layout-primary:not([data-floating]) .pv-nav-list li,
|
|
1842
|
+
.pv-layout-primary:not([data-floating]) .pv-nav-list summary {
|
|
1843
|
+
width: 40px;
|
|
1844
|
+
}
|
|
1714
1845
|
}
|
|
1715
1846
|
.pv-notification {
|
|
1716
1847
|
--bg-color: white;
|
|
@@ -1730,7 +1861,7 @@
|
|
|
1730
1861
|
right: -2px;
|
|
1731
1862
|
}
|
|
1732
1863
|
.pv-notification[data-border=accent] {
|
|
1733
|
-
--bg-color: #
|
|
1864
|
+
--bg-color: #F7F8F8;
|
|
1734
1865
|
}
|
|
1735
1866
|
|
|
1736
1867
|
[class*=pv-toast] {
|
|
@@ -1912,8 +2043,8 @@
|
|
|
1912
2043
|
.pv-table th {
|
|
1913
2044
|
font-weight: 700;
|
|
1914
2045
|
text-transform: uppercase;
|
|
1915
|
-
font-size: 0.
|
|
1916
|
-
line-height:
|
|
2046
|
+
font-size: 0.6875rem;
|
|
2047
|
+
line-height: 1.45454545;
|
|
1917
2048
|
letter-spacing: 0.15em;
|
|
1918
2049
|
}
|
|
1919
2050
|
|
|
@@ -1922,8 +2053,8 @@
|
|
|
1922
2053
|
}
|
|
1923
2054
|
.pv-table-compressed :where(th) {
|
|
1924
2055
|
background-color: #F3F4F6;
|
|
1925
|
-
font-size:
|
|
1926
|
-
line-height: 1.
|
|
2056
|
+
font-size: 0.6875rem;
|
|
2057
|
+
line-height: 1.45454545;
|
|
1927
2058
|
font-weight: 600;
|
|
1928
2059
|
}
|
|
1929
2060
|
.pv-table-compressed :where(th) a {
|
|
@@ -1997,11 +2128,11 @@
|
|
|
1997
2128
|
font-size: 1rem;
|
|
1998
2129
|
line-height: 1.25;
|
|
1999
2130
|
min-height: 69px;
|
|
2000
|
-
background-color: #
|
|
2131
|
+
background-color: #F7F8F8;
|
|
2001
2132
|
}
|
|
2002
2133
|
.pv-table-matrix :where(thead td),
|
|
2003
2134
|
.pv-table-matrix-compressed :where(thead td) {
|
|
2004
|
-
background-color: #
|
|
2135
|
+
background-color: #F7F8F8;
|
|
2005
2136
|
text-align: center;
|
|
2006
2137
|
}
|
|
2007
2138
|
.pv-table-matrix :where(thead td):not(:last-of-type),
|
|
@@ -2092,7 +2223,7 @@
|
|
|
2092
2223
|
.pv-table-matrix-compressed td .pv-table-button:where(:hover, :focus-visible),
|
|
2093
2224
|
[class*=pv-table]:has(td .pv-table-button) td button:where(:hover, :focus-visible),
|
|
2094
2225
|
[class*=pv-table]:has(td .pv-table-button) td .pv-table-button:where(:hover, :focus-visible) {
|
|
2095
|
-
background-color: #
|
|
2226
|
+
background-color: #F7F8F8;
|
|
2096
2227
|
}
|
|
2097
2228
|
.pv-table-matrix td button:where(:hover, :focus-visible) > div:last-of-type,
|
|
2098
2229
|
.pv-table-matrix td .pv-table-button:where(:hover, :focus-visible) > div:last-of-type,
|
|
@@ -2282,8 +2413,8 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2282
2413
|
}
|
|
2283
2414
|
|
|
2284
2415
|
[class*=pv-tag] {
|
|
2285
|
-
font-size: 0.
|
|
2286
|
-
line-height: 1.
|
|
2416
|
+
font-size: 0.6875rem;
|
|
2417
|
+
line-height: 1.45454545;
|
|
2287
2418
|
font-weight: 400;
|
|
2288
2419
|
color: #121313;
|
|
2289
2420
|
display: inline-block;
|
|
@@ -2295,13 +2426,13 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2295
2426
|
}
|
|
2296
2427
|
|
|
2297
2428
|
.pv-tag-sm {
|
|
2298
|
-
font-size: 0.
|
|
2299
|
-
line-height:
|
|
2429
|
+
font-size: 0.6875rem;
|
|
2430
|
+
line-height: 1.45454545;
|
|
2300
2431
|
}
|
|
2301
2432
|
|
|
2302
2433
|
.pv-tag-lg {
|
|
2303
|
-
font-size:
|
|
2304
|
-
line-height: 1.
|
|
2434
|
+
font-size: 0.6875rem;
|
|
2435
|
+
line-height: 1.45454545;
|
|
2305
2436
|
border-radius: 3px;
|
|
2306
2437
|
}
|
|
2307
2438
|
|
|
@@ -2374,14 +2505,14 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2374
2505
|
display: inline-block;
|
|
2375
2506
|
padding: 3px 6px;
|
|
2376
2507
|
border: var(--border-width-sm, 1px) solid currentColor;
|
|
2377
|
-
font-size: 0.
|
|
2508
|
+
font-size: 0.6875rem;
|
|
2378
2509
|
}
|
|
2379
2510
|
|
|
2380
2511
|
[class*=pv-highlight] {
|
|
2381
2512
|
display: inline-block;
|
|
2382
2513
|
position: relative;
|
|
2383
2514
|
padding: 4px 8px 4px 22px;
|
|
2384
|
-
font-size: 0.
|
|
2515
|
+
font-size: 0.6875rem;
|
|
2385
2516
|
font-weight: 700;
|
|
2386
2517
|
text-transform: uppercase;
|
|
2387
2518
|
letter-spacing: 0.72px;
|
|
@@ -2548,8 +2679,8 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2548
2679
|
}
|
|
2549
2680
|
|
|
2550
2681
|
.pv-breadcrumbs {
|
|
2551
|
-
font-size: 0.
|
|
2552
|
-
line-height:
|
|
2682
|
+
font-size: 0.6875rem;
|
|
2683
|
+
line-height: 1.45454545;
|
|
2553
2684
|
font-weight: 700;
|
|
2554
2685
|
display: flex;
|
|
2555
2686
|
flex-wrap: wrap;
|
|
@@ -2747,11 +2878,18 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2747
2878
|
color: var(--layout-primary-subdued-color, #4B595C);
|
|
2748
2879
|
}
|
|
2749
2880
|
|
|
2881
|
+
[data-collapsed] .pv-org-switch {
|
|
2882
|
+
width: 80px;
|
|
2883
|
+
justify-content: center;
|
|
2884
|
+
}
|
|
2750
2885
|
[data-collapsed] .pv-org-switch :not(:first-child) {
|
|
2751
2886
|
display: none;
|
|
2752
2887
|
}
|
|
2753
2888
|
|
|
2754
2889
|
@media (width <= 768px) {
|
|
2890
|
+
.pv-layout-primary:not([data-floating]) .pv-org-switch {
|
|
2891
|
+
justify-content: center;
|
|
2892
|
+
}
|
|
2755
2893
|
.pv-layout-primary:not([data-floating]) .pv-org-switch :not(:first-child) {
|
|
2756
2894
|
display: none;
|
|
2757
2895
|
}
|
|
@@ -2800,8 +2938,8 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2800
2938
|
color: #FFFFFF;
|
|
2801
2939
|
padding: 0.5rem 0.75rem;
|
|
2802
2940
|
border-radius: 0.25rem;
|
|
2803
|
-
font-size: 0.
|
|
2804
|
-
line-height: 1.
|
|
2941
|
+
font-size: 0.6875rem;
|
|
2942
|
+
line-height: 1.45454545;
|
|
2805
2943
|
box-shadow: 0px 12px 16px 0px rgba(0, 0, 0, 0.1), 0px 8px 12px -4px rgba(0, 0, 0, 0.08), 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
|
|
2806
2944
|
z-index: 50;
|
|
2807
2945
|
}
|
|
@@ -2859,8 +2997,8 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2859
2997
|
}
|
|
2860
2998
|
:where([class*=pv-accordion]) > summary {
|
|
2861
2999
|
padding: 0.5rem 3.25rem 0.5rem 1rem;
|
|
2862
|
-
font-size:
|
|
2863
|
-
line-height: 1.
|
|
3000
|
+
font-size: 0.6875rem;
|
|
3001
|
+
line-height: 1.45454545;
|
|
2864
3002
|
background-image: var(--summary-background-image-closed, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.455 7.83c.439-.44 1.151-.44 1.59 0L12 13.784l5.954-5.955a1.125 1.125 0 0 1 1.591 1.592l-6.75 6.75c-.439.439-1.151.439-1.59 0l-6.75-6.75a1.125 1.125 0 0 1 0-1.591Z' fill='%2302363D'/%3E%3C/svg%3E"));
|
|
2865
3003
|
background-size: 1.25rem 1.25rem;
|
|
2866
3004
|
background-position: right 1rem center;
|
|
@@ -2928,7 +3066,7 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2928
3066
|
}
|
|
2929
3067
|
.pv-accordion-transparent > summary {
|
|
2930
3068
|
font-weight: 400;
|
|
2931
|
-
font-size: 0.
|
|
3069
|
+
font-size: 0.6875rem;
|
|
2932
3070
|
padding-inline-start: 0;
|
|
2933
3071
|
padding-inline-end: 1.25rem;
|
|
2934
3072
|
background-position: right center;
|
|
@@ -2939,7 +3077,7 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2939
3077
|
.pv-accordion-transparent dl > div {
|
|
2940
3078
|
display: flex;
|
|
2941
3079
|
gap: 1rem;
|
|
2942
|
-
font-size: 0.
|
|
3080
|
+
font-size: 0.6875rem;
|
|
2943
3081
|
}
|
|
2944
3082
|
.pv-accordion-transparent dt {
|
|
2945
3083
|
--min-width: 72px;
|
|
@@ -2961,8 +3099,8 @@ td:not([rowspan]) > .pv-responsive-cell {
|
|
|
2961
3099
|
|
|
2962
3100
|
:where(.pv-details) > summary {
|
|
2963
3101
|
padding: 0 1.25rem;
|
|
2964
|
-
font-size:
|
|
2965
|
-
line-height:
|
|
3102
|
+
font-size: 0.75rem;
|
|
3103
|
+
line-height: 1.45454545;
|
|
2966
3104
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 19.5c-.4-.4-.4-1.2 0-1.6l6-6-6-6c-.4-.4-.4-1.2 0-1.6S9 4 9.4 4.5l6.8 6.8c.4.4.4 1.2 0 1.6l-6.8 6.7c-.4.4-1.1.4-1.6-.1z' fill='%2302363D'/%3E%3C/svg%3E");
|
|
2967
3105
|
background-size: 1rem 1rem;
|
|
2968
3106
|
background-position: left center;
|
|
@@ -3185,8 +3323,8 @@ pv-figure-details details[open] summary {
|
|
|
3185
3323
|
}
|
|
3186
3324
|
pv-figure-details details > div {
|
|
3187
3325
|
padding: 0 0.75rem 1.5rem 0.75rem;
|
|
3188
|
-
font-size:
|
|
3189
|
-
line-height:
|
|
3326
|
+
font-size: 0.75rem;
|
|
3327
|
+
line-height: 1.45454545;
|
|
3190
3328
|
}
|
|
3191
3329
|
pv-figure-details details {
|
|
3192
3330
|
max-width: 520px;
|
|
@@ -3226,7 +3364,7 @@ div:has(> pv-figure-details) {
|
|
|
3226
3364
|
[class*=pv-alert] {
|
|
3227
3365
|
padding: 0.75rem 0.75rem 0.75rem 2.75rem;
|
|
3228
3366
|
border: 1px solid var(--color-border, #DCDFE4);
|
|
3229
|
-
background-color: #
|
|
3367
|
+
background-color: #F7F8F8;
|
|
3230
3368
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2302363D' d='M12 23.001c6.075 0 11-4.925 11-11s-4.925-11-11-11-11 4.925-11 11 4.925 11 11 11Zm1.2-5.8a1.2 1.2 0 0 1-2.4 0v-6.4a1.2 1.2 0 1 1 2.4 0v6.4Zm-1.2-9.2a1.2 1.2 0 1 1 0-2.4h.01a1.2 1.2 0 0 1 0 2.4H12Z'/%3E%3C/svg%3E");
|
|
3231
3369
|
background-repeat: no-repeat;
|
|
3232
3370
|
background-size: 1.5rem 1.5rem;
|
|
@@ -3405,14 +3543,14 @@ body:has(.pv-drawer) {
|
|
|
3405
3543
|
color: #FFFFFF;
|
|
3406
3544
|
display: grid;
|
|
3407
3545
|
place-items: center;
|
|
3408
|
-
font-size:
|
|
3546
|
+
font-size: 0.75rem;
|
|
3409
3547
|
font-weight: 600;
|
|
3410
3548
|
border-radius: 50%;
|
|
3411
3549
|
flex-shrink: 0;
|
|
3412
3550
|
}
|
|
3413
3551
|
|
|
3414
3552
|
.ag-theme-pv .ag-header-cell {
|
|
3415
|
-
font-size: 0.
|
|
3553
|
+
font-size: 0.6875rem !important;
|
|
3416
3554
|
font-weight: 600 !important;
|
|
3417
3555
|
color: #121313 !important;
|
|
3418
3556
|
}
|
|
@@ -3484,7 +3622,7 @@ body:has(.pv-drawer) {
|
|
|
3484
3622
|
}
|
|
3485
3623
|
|
|
3486
3624
|
.ag-theme-pv .ag-tooltip {
|
|
3487
|
-
font-size: 0.
|
|
3625
|
+
font-size: 0.6875rem !important;
|
|
3488
3626
|
color: #FFFFFF !important;
|
|
3489
3627
|
background-color: black;
|
|
3490
3628
|
padding: 5px;
|
|
@@ -3495,14 +3633,14 @@ body:has(.pv-drawer) {
|
|
|
3495
3633
|
pv-data-grid.ag-theme-pv {
|
|
3496
3634
|
display: block;
|
|
3497
3635
|
--ag-font-family: Inter, sans-serif !important;
|
|
3498
|
-
--ag-font-size: 0.
|
|
3636
|
+
--ag-font-size: 0.6875rem !important;
|
|
3499
3637
|
--ag-foreground-color: #121313 !important;
|
|
3500
3638
|
--ag-border-color: #DCDFE4 !important;
|
|
3501
3639
|
--ag-background-color: #FFFFFF !important;
|
|
3502
3640
|
--ag-odd-row-background-color: #FFFFFF !important;
|
|
3503
3641
|
--ag-row-grid-size: 0.25rem !important;
|
|
3504
|
-
--ag-header-height: 1.
|
|
3505
|
-
--ag-row-height: 1.
|
|
3642
|
+
--ag-header-height: 1.6875rem !important;
|
|
3643
|
+
--ag-row-height: 1.6875rem !important;
|
|
3506
3644
|
--ag-cell-horizontal-padding: 9px !important;
|
|
3507
3645
|
--ag-cell-horizontal-border: solid #DCDFE4 !important;
|
|
3508
3646
|
--ag-column-border: solid 1px #DCDFE4 !important;
|
|
@@ -3734,7 +3872,7 @@ pv-data-grid.ag-theme-pv {
|
|
|
3734
3872
|
.pv-layout-primary[data-collapsed] {
|
|
3735
3873
|
font-family: var(--layout-primary-sidebar-font-family, Inter, sans-serif);
|
|
3736
3874
|
display: grid;
|
|
3737
|
-
grid-template-columns:
|
|
3875
|
+
grid-template-columns: 81px 1fr;
|
|
3738
3876
|
grid-template-areas: "sidebar content";
|
|
3739
3877
|
height: 100%;
|
|
3740
3878
|
max-height: 100dvh;
|
|
@@ -3753,10 +3891,6 @@ pv-data-grid.ag-theme-pv {
|
|
|
3753
3891
|
z-index: 10;
|
|
3754
3892
|
border-inline-end: 1px solid var(--layout-primary-sidebar-border-color, #E3E7EA);
|
|
3755
3893
|
}
|
|
3756
|
-
.pv-layout-primary > [data-grid-area=sidebar] > footer,
|
|
3757
|
-
.pv-layout-primary[data-collapsed] > [data-grid-area=sidebar] > footer {
|
|
3758
|
-
padding: 16px 20px;
|
|
3759
|
-
}
|
|
3760
3894
|
.pv-layout-primary > [data-grid-area=sidebar] .pv-avatar + div,
|
|
3761
3895
|
.pv-layout-primary[data-collapsed] > [data-grid-area=sidebar] .pv-avatar + div {
|
|
3762
3896
|
display: none;
|
|
@@ -3773,7 +3907,7 @@ pv-data-grid.ag-theme-pv {
|
|
|
3773
3907
|
}
|
|
3774
3908
|
.pv-layout-primary > [data-grid-area=content] > [data-grid-area=header],
|
|
3775
3909
|
.pv-layout-primary[data-collapsed] > [data-grid-area=content] > [data-grid-area=header] {
|
|
3776
|
-
background-color: #
|
|
3910
|
+
background-color: #F7F8F8;
|
|
3777
3911
|
padding-inline: 1.5rem;
|
|
3778
3912
|
border-block-end: 1px solid #DCDFE4;
|
|
3779
3913
|
}
|
|
@@ -3798,27 +3932,6 @@ pv-data-grid.ag-theme-pv {
|
|
|
3798
3932
|
display: block;
|
|
3799
3933
|
}
|
|
3800
3934
|
}
|
|
3801
|
-
.pv-layout-primary[data-theme=og],
|
|
3802
|
-
.pv-layout-primary[data-theme=og][data-collapsed] {
|
|
3803
|
-
grid-template-columns: 100px 1fr;
|
|
3804
|
-
}
|
|
3805
|
-
.pv-layout-primary[data-theme=og] > [data-grid-area=sidebar],
|
|
3806
|
-
.pv-layout-primary[data-theme=og][data-collapsed] > [data-grid-area=sidebar] {
|
|
3807
|
-
grid-template-rows: 1fr auto;
|
|
3808
|
-
}
|
|
3809
|
-
.pv-layout-primary[data-theme=og] .pv-icon-24.pv-aspect-3-4,
|
|
3810
|
-
.pv-layout-primary[data-theme=og][data-collapsed] .pv-icon-24.pv-aspect-3-4 {
|
|
3811
|
-
margin-inline: auto;
|
|
3812
|
-
}
|
|
3813
|
-
|
|
3814
|
-
@media (width >= 768px) {
|
|
3815
|
-
.pv-layout-primary[data-theme=og] {
|
|
3816
|
-
grid-template-columns: 280px 1fr;
|
|
3817
|
-
}
|
|
3818
|
-
.pv-layout-primary[data-theme=og] .pv-icon-24.pv-aspect-3-4 {
|
|
3819
|
-
margin-inline: 21px;
|
|
3820
|
-
}
|
|
3821
|
-
}
|
|
3822
3935
|
.pv-layout-primary:has([data-grid-area=title]) > [data-grid-area=content] {
|
|
3823
3936
|
grid-template-rows: auto auto 1fr;
|
|
3824
3937
|
}
|
|
@@ -3827,6 +3940,16 @@ body:has(.pv-layout-primary) {
|
|
|
3827
3940
|
overflow-y: clip;
|
|
3828
3941
|
}
|
|
3829
3942
|
|
|
3943
|
+
[data-grid-area=sidebar] > footer {
|
|
3944
|
+
display: grid;
|
|
3945
|
+
place-items: center;
|
|
3946
|
+
padding: 1.25rem;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.pv-layout-primary[data-collapsed] [data-grid-area=sidebar] > footer {
|
|
3950
|
+
padding: 1rem 0.5rem;
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3830
3953
|
.pv-layout-sidebar {
|
|
3831
3954
|
--sidebar-width: 300px;
|
|
3832
3955
|
min-height: 100%;
|
|
@@ -3845,7 +3968,7 @@ body:has(.pv-layout-primary) {
|
|
|
3845
3968
|
}
|
|
3846
3969
|
.pv-layout-sidebar > [data-grid-area=main] > :nth-child(2) {
|
|
3847
3970
|
grid-row: 2/2;
|
|
3848
|
-
background-color: #
|
|
3971
|
+
background-color: #F7F8F8;
|
|
3849
3972
|
border-top: 1px solid #DCDFE4;
|
|
3850
3973
|
}
|
|
3851
3974
|
.pv-layout-sidebar > [data-grid-area=sidebar] {
|
|
@@ -3938,7 +4061,7 @@ body:has(.pv-layout-primary) {
|
|
|
3938
4061
|
}
|
|
3939
4062
|
|
|
3940
4063
|
.pv-surface-accent, .ag-theme-pv .ag-header-cell {
|
|
3941
|
-
background-color: var(--color-background-accent, #
|
|
4064
|
+
background-color: var(--color-background-accent, #F7F8F8);
|
|
3942
4065
|
}
|
|
3943
4066
|
|
|
3944
4067
|
.pv-surface {
|
|
@@ -3991,11 +4114,11 @@ body:has(.pv-layout-primary) {
|
|
|
3991
4114
|
}
|
|
3992
4115
|
|
|
3993
4116
|
.pv-text-red {
|
|
3994
|
-
color: #
|
|
4117
|
+
color: #FF471A;
|
|
3995
4118
|
}
|
|
3996
4119
|
|
|
3997
4120
|
.pv-text-critical {
|
|
3998
|
-
color: #
|
|
4121
|
+
color: #FF471A;
|
|
3999
4122
|
}
|
|
4000
4123
|
|
|
4001
4124
|
.pv-text-warning {
|
|
@@ -4804,12 +4927,12 @@ svg.pv-text-inherit {
|
|
|
4804
4927
|
}
|
|
4805
4928
|
|
|
4806
4929
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
4807
|
-
background-color: #
|
|
4930
|
+
background-color: #F7F8F8;
|
|
4808
4931
|
border: 1px solid #DCDFE4;
|
|
4809
4932
|
border-radius: 2px;
|
|
4810
4933
|
padding: 0.125rem 0.5rem;
|
|
4811
|
-
font-size: 0.
|
|
4812
|
-
line-height: 1.
|
|
4934
|
+
font-size: 0.6875rem;
|
|
4935
|
+
line-height: 1.45454545;
|
|
4813
4936
|
cursor: default;
|
|
4814
4937
|
}
|
|
4815
4938
|
|
|
@@ -4863,7 +4986,7 @@ svg.pv-text-inherit {
|
|
|
4863
4986
|
|
|
4864
4987
|
.select2-results__option[aria-selected=true],
|
|
4865
4988
|
.select2-results__option--highlighted {
|
|
4866
|
-
background-color: #
|
|
4989
|
+
background-color: #F7F8F8;
|
|
4867
4990
|
}
|
|
4868
4991
|
|
|
4869
4992
|
.select2-container--default .select2-results__group {
|