@turquoisehealth/pit-viper 2.65.1 → 2.66.1-dev.0
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-scoped.css +105 -40
- package/_site/assets/css/pit-viper-v2.css +113 -40
- package/_site/assets/css/pit-viper.css +85 -12
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +72 -66
- package/pv-components/dist/vue/base/pv-components-base.js +23 -23
- package/pv-components/dist/vue/base/pv-components-base.mjs +1626 -1617
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +52 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +57 -56
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +25506 -23670
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +58 -57
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +50 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +49 -48
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +8924 -7040
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +49 -48
- package/pv-components/dist/web/pv-components.iife.js +15 -15
|
@@ -753,7 +753,7 @@
|
|
|
753
753
|
gap: 0.125rem;
|
|
754
754
|
}
|
|
755
755
|
[class*=pv-segmented-control] button {
|
|
756
|
-
padding: 0.125rem 0.5rem;
|
|
756
|
+
padding: calc(0.125rem - 1px) 0.5rem;
|
|
757
757
|
gap: 0.125rem;
|
|
758
758
|
}
|
|
759
759
|
[class*=pv-segmented-control] button[data-active],
|
|
@@ -770,19 +770,25 @@
|
|
|
770
770
|
[class*=pv-segmented-control] button:active:not(:disabled) {
|
|
771
771
|
background-color: #C7D8DB;
|
|
772
772
|
}
|
|
773
|
+
[class*=pv-segmented-control] button:has(svg:is(:only-child)) {
|
|
774
|
+
padding: calc(0.125rem - 1px);
|
|
775
|
+
}
|
|
776
|
+
[class*=pv-segmented-control].pv-segmented-control-large button:has(svg:is(:only-child)) {
|
|
777
|
+
padding: calc(0.25rem - 1px);
|
|
778
|
+
}
|
|
773
779
|
|
|
774
780
|
.pv-segmented-control-icon button {
|
|
775
|
-
padding: 0.125rem;
|
|
781
|
+
padding: calc(0.125rem - 1px);
|
|
776
782
|
}
|
|
777
783
|
|
|
778
784
|
.pv-segmented-control-large {
|
|
779
785
|
padding: 0.25rem;
|
|
780
786
|
}
|
|
781
787
|
.pv-segmented-control-large button {
|
|
782
|
-
padding: 0.25rem 0.5rem;
|
|
788
|
+
padding: calc(0.25rem - 1px) 0.5rem;
|
|
783
789
|
}
|
|
784
790
|
.pv-segmented-control-large.pv-segmented-control-icon button {
|
|
785
|
-
padding: 0.25rem;
|
|
791
|
+
padding: calc(0.25rem - 1px);
|
|
786
792
|
}
|
|
787
793
|
|
|
788
794
|
.pv-button-transformer {
|
|
@@ -2079,15 +2085,15 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
2079
2085
|
}
|
|
2080
2086
|
|
|
2081
2087
|
.pv-status-yellow:before {
|
|
2082
|
-
background-color: #
|
|
2088
|
+
background-color: #FED732;
|
|
2083
2089
|
}
|
|
2084
2090
|
|
|
2085
2091
|
.pv-status-red:before {
|
|
2086
|
-
background-color: #
|
|
2092
|
+
background-color: #FF471A;
|
|
2087
2093
|
}
|
|
2088
2094
|
|
|
2089
2095
|
.pv-status-green:before {
|
|
2090
|
-
background-color: #
|
|
2096
|
+
background-color: #1ACF28;
|
|
2091
2097
|
}
|
|
2092
2098
|
|
|
2093
2099
|
.pv-status-black:before {
|
|
@@ -2099,19 +2105,19 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
2099
2105
|
}
|
|
2100
2106
|
|
|
2101
2107
|
.pv-status-orange:before {
|
|
2102
|
-
background-color: #
|
|
2108
|
+
background-color: #FFA632;
|
|
2103
2109
|
}
|
|
2104
2110
|
|
|
2105
2111
|
.pv-status-yellow:is(th, td) {
|
|
2106
|
-
border-color: #
|
|
2112
|
+
border-color: #FED732;
|
|
2107
2113
|
}
|
|
2108
2114
|
|
|
2109
2115
|
.pv-status-red:is(th, td) {
|
|
2110
|
-
border-color: #
|
|
2116
|
+
border-color: #FF471A;
|
|
2111
2117
|
}
|
|
2112
2118
|
|
|
2113
2119
|
.pv-status-green:is(th, td) {
|
|
2114
|
-
border-color: #
|
|
2120
|
+
border-color: #1ACF28;
|
|
2115
2121
|
}
|
|
2116
2122
|
|
|
2117
2123
|
.pv-status-black:is(th, td) {
|
|
@@ -2123,7 +2129,7 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
|
|
|
2123
2129
|
}
|
|
2124
2130
|
|
|
2125
2131
|
.pv-status-orange:is(th, td) {
|
|
2126
|
-
border-color: #
|
|
2132
|
+
border-color: #FFA632;
|
|
2127
2133
|
}
|
|
2128
2134
|
|
|
2129
2135
|
.pv-table,
|
|
@@ -2759,6 +2765,14 @@ button.pv-tag-secondary:active {
|
|
|
2759
2765
|
padding-inline: 0;
|
|
2760
2766
|
}
|
|
2761
2767
|
|
|
2768
|
+
[class*=pv-tag][data-style=counter] {
|
|
2769
|
+
padding: 0 2px;
|
|
2770
|
+
line-height: 0.875rem;
|
|
2771
|
+
min-width: 1rem;
|
|
2772
|
+
text-align: center;
|
|
2773
|
+
display: block;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2762
2776
|
[class*=pv-tab-list] {
|
|
2763
2777
|
display: flex;
|
|
2764
2778
|
align-items: center;
|
|
@@ -2973,8 +2987,11 @@ button.pv-tag-secondary:active {
|
|
|
2973
2987
|
border-radius: 4px;
|
|
2974
2988
|
}
|
|
2975
2989
|
|
|
2976
|
-
.pv-dropdown > [class*=pv-button] {
|
|
2990
|
+
.pv-dropdown:not(pv-dropdown-auto-close) > [class*=pv-button] {
|
|
2977
2991
|
padding-inline-end: 2rem;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
.pv-dropdown > [class*=pv-button] {
|
|
2978
2995
|
background-image: var(--dropdown-closed-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.151 8.151a1.2 1.2 0 0 1 1.698 0L12 13.303l5.151-5.152A1.2 1.2 0 1 1 18.85 9.85l-6 6a1.2 1.2 0 0 1-1.697 0l-6-6a1.2 1.2 0 0 1 0-1.698Z' fill='%23FFFFFF'/%3E%3C/svg%3E"));
|
|
2979
2996
|
background-repeat: no-repeat;
|
|
2980
2997
|
background-size: 1rem 1rem;
|
|
@@ -4529,6 +4546,7 @@ body:has(.pv-layout-primary) {
|
|
|
4529
4546
|
.pv-layout-two-sidebar {
|
|
4530
4547
|
--left-size: 320px;
|
|
4531
4548
|
--right-size: 320px;
|
|
4549
|
+
--min-size: 0;
|
|
4532
4550
|
overflow: clip;
|
|
4533
4551
|
height: 100%;
|
|
4534
4552
|
display: grid;
|
|
@@ -4537,27 +4555,41 @@ body:has(.pv-layout-primary) {
|
|
|
4537
4555
|
grid-template-areas: "left center right";
|
|
4538
4556
|
}
|
|
4539
4557
|
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) {
|
|
4540
|
-
|
|
4558
|
+
--left-size: var(--min-size) !important;
|
|
4559
|
+
}
|
|
4560
|
+
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) svg.pv-trigger-icon {
|
|
4561
|
+
transform: rotate(180deg);
|
|
4541
4562
|
}
|
|
4542
4563
|
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) {
|
|
4543
|
-
|
|
4564
|
+
--right-size: var(--min-size) !important;
|
|
4565
|
+
}
|
|
4566
|
+
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) svg.pv-trigger-icon {
|
|
4567
|
+
transform: rotate(180deg);
|
|
4544
4568
|
}
|
|
4545
4569
|
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]):has([data-layout=right-sidebar][data-hidden]) {
|
|
4546
|
-
|
|
4570
|
+
--left-size: var(--min-size) !important;
|
|
4571
|
+
--right-size: var(--min-size) !important;
|
|
4547
4572
|
}
|
|
4548
4573
|
.pv-layout-two-sidebar [data-layout=left-sidebar] {
|
|
4549
4574
|
border-right: 1px solid #E3E7EA;
|
|
4550
4575
|
min-width: var(--left-size);
|
|
4551
4576
|
}
|
|
4552
4577
|
.pv-layout-two-sidebar [data-layout=left-sidebar][data-hidden] {
|
|
4553
|
-
transform: translateX(calc(var(--
|
|
4578
|
+
transform: translateX(calc(var(--min-size) - var(--left-size)));
|
|
4579
|
+
width: var(--min-size);
|
|
4554
4580
|
}
|
|
4555
4581
|
.pv-layout-two-sidebar [data-layout=right-sidebar] {
|
|
4556
4582
|
border-left: 1px solid #E3E7EA;
|
|
4557
4583
|
min-width: var(--right-size);
|
|
4558
4584
|
}
|
|
4559
4585
|
.pv-layout-two-sidebar [data-layout=right-sidebar][data-hidden] {
|
|
4560
|
-
transform: translateX(var(--right-size));
|
|
4586
|
+
transform: translateX(calc(var(--right-size) * -1)var(--min-size));
|
|
4587
|
+
width: var(--min-size);
|
|
4588
|
+
}
|
|
4589
|
+
|
|
4590
|
+
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) [data-layout=left-sidebar] .pv-fade,
|
|
4591
|
+
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) [data-layout=right-sidebar] .pv-fade {
|
|
4592
|
+
display: none;
|
|
4561
4593
|
}
|
|
4562
4594
|
|
|
4563
4595
|
.pv-surface-brand {
|
|
@@ -5236,8 +5268,8 @@ svg.pv-text-inherit {
|
|
|
5236
5268
|
|
|
5237
5269
|
.select2-selection--single {
|
|
5238
5270
|
background-color: #fff;
|
|
5239
|
-
border:
|
|
5240
|
-
border-radius:
|
|
5271
|
+
border: 1px solid #E3E7EA;
|
|
5272
|
+
border-radius: 4px;
|
|
5241
5273
|
padding-inline-end: 2rem;
|
|
5242
5274
|
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='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E");
|
|
5243
5275
|
background-repeat: no-repeat;
|
|
@@ -5254,7 +5286,7 @@ svg.pv-text-inherit {
|
|
|
5254
5286
|
text-overflow: ellipsis;
|
|
5255
5287
|
white-space: nowrap;
|
|
5256
5288
|
color: #4B595C;
|
|
5257
|
-
line-height:
|
|
5289
|
+
line-height: 12px;
|
|
5258
5290
|
}
|
|
5259
5291
|
.select2-selection--single .select2-selection__clear {
|
|
5260
5292
|
position: relative;
|
|
@@ -5263,7 +5295,7 @@ svg.pv-text-inherit {
|
|
|
5263
5295
|
font-weight: bold;
|
|
5264
5296
|
}
|
|
5265
5297
|
.select2-selection--single .select2-selection__placeholder {
|
|
5266
|
-
color: #
|
|
5298
|
+
color: #89989B;
|
|
5267
5299
|
}
|
|
5268
5300
|
.select2-selection--single .select2-selection__arrow {
|
|
5269
5301
|
display: none;
|
|
@@ -5271,29 +5303,29 @@ svg.pv-text-inherit {
|
|
|
5271
5303
|
|
|
5272
5304
|
.select2-selection--multiple {
|
|
5273
5305
|
background-color: white;
|
|
5274
|
-
border:
|
|
5275
|
-
border-radius:
|
|
5306
|
+
border: 1px solid #E3E7EA;
|
|
5307
|
+
border-radius: 4px;
|
|
5276
5308
|
cursor: text;
|
|
5277
5309
|
}
|
|
5278
5310
|
.select2-selection--multiple .select2-selection__rendered {
|
|
5279
5311
|
display: flex;
|
|
5280
5312
|
align-items: center;
|
|
5281
5313
|
gap: 4px;
|
|
5282
|
-
padding: 0.
|
|
5314
|
+
padding: calc(0.5rem - 3px) 0.5rem;
|
|
5283
5315
|
flex-wrap: wrap;
|
|
5284
5316
|
}
|
|
5285
5317
|
|
|
5286
5318
|
.select2-search--inline {
|
|
5287
5319
|
flex: 1;
|
|
5288
|
-
max-height:
|
|
5320
|
+
max-height: 20px;
|
|
5289
5321
|
}
|
|
5290
5322
|
|
|
5291
5323
|
.select2-search--inline .select2-search__field {
|
|
5292
5324
|
width: 100% !important;
|
|
5293
|
-
line-height:
|
|
5325
|
+
line-height: 12px;
|
|
5294
5326
|
border: none;
|
|
5295
5327
|
padding-block: 0.5rem;
|
|
5296
|
-
max-height:
|
|
5328
|
+
max-height: 20px;
|
|
5297
5329
|
}
|
|
5298
5330
|
|
|
5299
5331
|
.select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
|
@@ -5318,12 +5350,14 @@ svg.pv-text-inherit {
|
|
|
5318
5350
|
|
|
5319
5351
|
.select2-search--dropdown .select2-search__field {
|
|
5320
5352
|
padding: 0.5rem 2rem 0.5rem 0.5rem;
|
|
5321
|
-
line-height:
|
|
5322
|
-
border-radius:
|
|
5323
|
-
border:
|
|
5353
|
+
line-height: 12px;
|
|
5354
|
+
border-radius: 4px;
|
|
5355
|
+
border: 1px solid #E3E7EA;
|
|
5356
|
+
height: 32px;
|
|
5324
5357
|
width: 100%;
|
|
5325
5358
|
position: absolute;
|
|
5326
|
-
top: -
|
|
5359
|
+
top: -33px;
|
|
5360
|
+
left: 0;
|
|
5327
5361
|
background-color: transparent;
|
|
5328
5362
|
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='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z'/%3E%3C/svg%3E");
|
|
5329
5363
|
background-repeat: no-repeat;
|
|
@@ -5346,9 +5380,14 @@ svg.pv-text-inherit {
|
|
|
5346
5380
|
.select2-container--focus .select2-selection__rendered {
|
|
5347
5381
|
border-color: #36C5BA;
|
|
5348
5382
|
outline: 0;
|
|
5383
|
+
font-size: 0.75rem;
|
|
5384
|
+
line-height: 1.33333333;
|
|
5385
|
+
border-radius: 4px;
|
|
5349
5386
|
}
|
|
5350
5387
|
|
|
5351
5388
|
.select2-container--default .select2-search--inline .select2-search__field {
|
|
5389
|
+
font-size: 0.75rem;
|
|
5390
|
+
line-height: 1.33333333;
|
|
5352
5391
|
background: transparent;
|
|
5353
5392
|
border: none;
|
|
5354
5393
|
outline: 0;
|
|
@@ -5371,6 +5410,9 @@ svg.pv-text-inherit {
|
|
|
5371
5410
|
padding: 6px;
|
|
5372
5411
|
user-select: none;
|
|
5373
5412
|
-webkit-user-select: none;
|
|
5413
|
+
font-size: 0.75rem;
|
|
5414
|
+
line-height: 1.33333333;
|
|
5415
|
+
color: #121313;
|
|
5374
5416
|
}
|
|
5375
5417
|
|
|
5376
5418
|
.select2-results__option[aria-selected] {
|
|
@@ -5382,12 +5424,14 @@ svg.pv-text-inherit {
|
|
|
5382
5424
|
}
|
|
5383
5425
|
|
|
5384
5426
|
.select2-container--open .select2-dropdown--above {
|
|
5427
|
+
padding: 0.5rem;
|
|
5385
5428
|
border-bottom: none;
|
|
5386
5429
|
border-bottom-left-radius: 0;
|
|
5387
5430
|
border-bottom-right-radius: 0;
|
|
5388
5431
|
}
|
|
5389
5432
|
|
|
5390
5433
|
.select2-container--open .select2-dropdown--below {
|
|
5434
|
+
padding: 0.5rem;
|
|
5391
5435
|
border-top: none;
|
|
5392
5436
|
border-top-left-radius: 0;
|
|
5393
5437
|
border-top-right-radius: 0;
|
|
@@ -5441,10 +5485,13 @@ svg.pv-text-inherit {
|
|
|
5441
5485
|
|
|
5442
5486
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
|
5443
5487
|
list-style: none;
|
|
5488
|
+
font-size: 0.75rem;
|
|
5489
|
+
line-height: 1.33333333;
|
|
5490
|
+
font-weight: 500;
|
|
5444
5491
|
}
|
|
5445
5492
|
|
|
5446
5493
|
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
|
5447
|
-
color: #
|
|
5494
|
+
color: #89989B;
|
|
5448
5495
|
margin-top: 5px;
|
|
5449
5496
|
float: left;
|
|
5450
5497
|
}
|
|
@@ -5459,24 +5506,25 @@ svg.pv-text-inherit {
|
|
|
5459
5506
|
|
|
5460
5507
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
5461
5508
|
background-color: #F7F8F8;
|
|
5462
|
-
border:
|
|
5463
|
-
border-radius:
|
|
5509
|
+
border: none;
|
|
5510
|
+
border-radius: 4px;
|
|
5464
5511
|
padding: 0.125rem 0.5rem;
|
|
5465
5512
|
font-size: 0.6875rem;
|
|
5466
5513
|
line-height: 1.45454545;
|
|
5467
5514
|
cursor: default;
|
|
5515
|
+
font-weight: 500;
|
|
5468
5516
|
}
|
|
5469
5517
|
|
|
5470
5518
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
5471
|
-
color: #
|
|
5519
|
+
color: #4B595C;
|
|
5472
5520
|
cursor: pointer;
|
|
5473
5521
|
display: inline-block;
|
|
5474
5522
|
font-weight: bold;
|
|
5475
|
-
margin-right:
|
|
5523
|
+
margin-right: 0.25rem;
|
|
5476
5524
|
}
|
|
5477
5525
|
|
|
5478
5526
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
5479
|
-
color: #
|
|
5527
|
+
color: #4B595C;
|
|
5480
5528
|
}
|
|
5481
5529
|
|
|
5482
5530
|
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
@@ -5499,6 +5547,7 @@ svg.pv-text-inherit {
|
|
|
5499
5547
|
}
|
|
5500
5548
|
|
|
5501
5549
|
.select2-container--default .select2-results > .select2-results__options {
|
|
5550
|
+
padding-inline-start: 0;
|
|
5502
5551
|
max-height: 200px;
|
|
5503
5552
|
overflow-y: auto;
|
|
5504
5553
|
}
|
|
@@ -5508,11 +5557,12 @@ svg.pv-text-inherit {
|
|
|
5508
5557
|
}
|
|
5509
5558
|
|
|
5510
5559
|
.select2-container--default .select2-results__option[aria-disabled=true] {
|
|
5511
|
-
color: #
|
|
5560
|
+
color: #89989B;
|
|
5512
5561
|
}
|
|
5513
5562
|
|
|
5514
5563
|
.select2-results__option {
|
|
5515
|
-
padding: 0.5rem
|
|
5564
|
+
padding: 0.5rem;
|
|
5565
|
+
border-radius: 4px;
|
|
5516
5566
|
}
|
|
5517
5567
|
|
|
5518
5568
|
.select2-results__option[aria-selected=true],
|
|
@@ -5526,6 +5576,29 @@ svg.pv-text-inherit {
|
|
|
5526
5576
|
padding: 6px;
|
|
5527
5577
|
}
|
|
5528
5578
|
|
|
5579
|
+
.select2-selection--single .select2-selection__rendered,
|
|
5580
|
+
.select2-selection--single .select2-selection__placeholder {
|
|
5581
|
+
font-size: 0.75rem;
|
|
5582
|
+
line-height: 1.33333333;
|
|
5583
|
+
}
|
|
5584
|
+
|
|
5585
|
+
.select2-selection--single .select2-selection__rendered {
|
|
5586
|
+
color: #121313;
|
|
5587
|
+
padding: calc(0.5rem - 1px) 0.5rem;
|
|
5588
|
+
}
|
|
5589
|
+
|
|
5590
|
+
.select2-results__option[aria-selected=true] {
|
|
5591
|
+
background-color: #E4F8F6;
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5594
|
+
.select2-results__option--highlighted {
|
|
5595
|
+
background-color: #E8F2F4;
|
|
5596
|
+
}
|
|
5597
|
+
|
|
5598
|
+
input.select2-search__field::placeholder {
|
|
5599
|
+
color: #89989B !important;
|
|
5600
|
+
}
|
|
5601
|
+
|
|
5529
5602
|
:root {
|
|
5530
5603
|
--p-datepicker-today-background: #F7F8F8;
|
|
5531
5604
|
--p-datepicker-date-border-radius: 4px;
|
|
@@ -775,6 +775,12 @@
|
|
|
775
775
|
[class*=pv-segmented-control] button:active:not(:disabled) {
|
|
776
776
|
background-color: #F3FCFB;
|
|
777
777
|
}
|
|
778
|
+
[class*=pv-segmented-control] button:has(svg:is(:only-child)) {
|
|
779
|
+
padding: 0.25rem;
|
|
780
|
+
}
|
|
781
|
+
[class*=pv-segmented-control].pv-segmented-control-large button:has(svg:is(:only-child)) {
|
|
782
|
+
padding: 0.25rem;
|
|
783
|
+
}
|
|
778
784
|
|
|
779
785
|
.pv-segmented-control-icon button {
|
|
780
786
|
padding: 0.25rem;
|
|
@@ -2764,6 +2770,14 @@ button.pv-tag-secondary:active {
|
|
|
2764
2770
|
padding-inline: 0;
|
|
2765
2771
|
}
|
|
2766
2772
|
|
|
2773
|
+
[class*=pv-tag][data-style=counter] {
|
|
2774
|
+
padding: 0 2px;
|
|
2775
|
+
line-height: 0.875rem;
|
|
2776
|
+
min-width: 1rem;
|
|
2777
|
+
text-align: center;
|
|
2778
|
+
display: block;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2767
2781
|
[class*=pv-tab-list] {
|
|
2768
2782
|
display: flex;
|
|
2769
2783
|
align-items: center;
|
|
@@ -2978,8 +2992,11 @@ button.pv-tag-secondary:active {
|
|
|
2978
2992
|
border-radius: 5px;
|
|
2979
2993
|
}
|
|
2980
2994
|
|
|
2981
|
-
.pv-dropdown > [class*=pv-button] {
|
|
2995
|
+
.pv-dropdown:not(pv-dropdown-auto-close) > [class*=pv-button] {
|
|
2982
2996
|
padding-inline-end: 2rem;
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
.pv-dropdown > [class*=pv-button] {
|
|
2983
3000
|
background-image: var(--dropdown-closed-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='m7.1 9.9 4.3 5.1c.1.1.2.1.3.2.1 0 .2.1.3.1s.2 0 .3-.1c.1 0 .2-.1.3-.2L17 9.9c.4-.5.1-1.2-.6-1.2H7.6c-.6 0-1 .8-.5 1.2z'/%3E%3C/svg%3E"));
|
|
2984
3001
|
background-repeat: no-repeat;
|
|
2985
3002
|
background-size: 1rem 1rem;
|
|
@@ -4534,6 +4551,7 @@ body:has(.pv-layout-primary) {
|
|
|
4534
4551
|
.pv-layout-two-sidebar {
|
|
4535
4552
|
--left-size: 320px;
|
|
4536
4553
|
--right-size: 320px;
|
|
4554
|
+
--min-size: 0;
|
|
4537
4555
|
overflow: clip;
|
|
4538
4556
|
height: 100%;
|
|
4539
4557
|
display: grid;
|
|
@@ -4542,27 +4560,41 @@ body:has(.pv-layout-primary) {
|
|
|
4542
4560
|
grid-template-areas: "left center right";
|
|
4543
4561
|
}
|
|
4544
4562
|
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) {
|
|
4545
|
-
|
|
4563
|
+
--left-size: var(--min-size) !important;
|
|
4564
|
+
}
|
|
4565
|
+
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) svg.pv-trigger-icon {
|
|
4566
|
+
transform: rotate(180deg);
|
|
4546
4567
|
}
|
|
4547
4568
|
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) {
|
|
4548
|
-
|
|
4569
|
+
--right-size: var(--min-size) !important;
|
|
4570
|
+
}
|
|
4571
|
+
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) svg.pv-trigger-icon {
|
|
4572
|
+
transform: rotate(180deg);
|
|
4549
4573
|
}
|
|
4550
4574
|
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]):has([data-layout=right-sidebar][data-hidden]) {
|
|
4551
|
-
|
|
4575
|
+
--left-size: var(--min-size) !important;
|
|
4576
|
+
--right-size: var(--min-size) !important;
|
|
4552
4577
|
}
|
|
4553
4578
|
.pv-layout-two-sidebar [data-layout=left-sidebar] {
|
|
4554
4579
|
border-right: 1px solid #DCDFE4;
|
|
4555
4580
|
min-width: var(--left-size);
|
|
4556
4581
|
}
|
|
4557
4582
|
.pv-layout-two-sidebar [data-layout=left-sidebar][data-hidden] {
|
|
4558
|
-
transform: translateX(calc(var(--
|
|
4583
|
+
transform: translateX(calc(var(--min-size) - var(--left-size)));
|
|
4584
|
+
width: var(--min-size);
|
|
4559
4585
|
}
|
|
4560
4586
|
.pv-layout-two-sidebar [data-layout=right-sidebar] {
|
|
4561
4587
|
border-left: 1px solid #DCDFE4;
|
|
4562
4588
|
min-width: var(--right-size);
|
|
4563
4589
|
}
|
|
4564
4590
|
.pv-layout-two-sidebar [data-layout=right-sidebar][data-hidden] {
|
|
4565
|
-
transform: translateX(var(--right-size));
|
|
4591
|
+
transform: translateX(calc(var(--right-size) * -1)var(--min-size));
|
|
4592
|
+
width: var(--min-size);
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
.pv-layout-two-sidebar:has([data-layout=left-sidebar][data-hidden]) [data-layout=left-sidebar] .pv-fade,
|
|
4596
|
+
.pv-layout-two-sidebar:has([data-layout=right-sidebar][data-hidden]) [data-layout=right-sidebar] .pv-fade {
|
|
4597
|
+
display: none;
|
|
4566
4598
|
}
|
|
4567
4599
|
|
|
4568
4600
|
.pv-surface-brand {
|
|
@@ -5268,7 +5300,7 @@ svg.pv-text-inherit {
|
|
|
5268
5300
|
font-weight: bold;
|
|
5269
5301
|
}
|
|
5270
5302
|
.select2-selection--single .select2-selection__placeholder {
|
|
5271
|
-
color: #
|
|
5303
|
+
color: #6E7784;
|
|
5272
5304
|
}
|
|
5273
5305
|
.select2-selection--single .select2-selection__arrow {
|
|
5274
5306
|
display: none;
|
|
@@ -5326,9 +5358,11 @@ svg.pv-text-inherit {
|
|
|
5326
5358
|
line-height: 24px;
|
|
5327
5359
|
border-radius: 2px;
|
|
5328
5360
|
border: 2px solid #DCDFE4;
|
|
5361
|
+
height: 42px;
|
|
5329
5362
|
width: 100%;
|
|
5330
5363
|
position: absolute;
|
|
5331
5364
|
top: -44px;
|
|
5365
|
+
left: 0;
|
|
5332
5366
|
background-color: transparent;
|
|
5333
5367
|
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='M7.6 15.3h8.8c.7 0 1-.7.6-1.2L12.6 9c-.1-.1-.2-.2-.3-.2-.1-.1-.2-.1-.3-.1s-.2.1-.3.1c-.1.1-.2.1-.3.2l-4.3 5.1c-.5.4-.1 1.2.5 1.2z'/%3E%3C/svg%3E");
|
|
5334
5368
|
background-repeat: no-repeat;
|
|
@@ -5351,9 +5385,14 @@ svg.pv-text-inherit {
|
|
|
5351
5385
|
.select2-container--focus .select2-selection__rendered {
|
|
5352
5386
|
border-color: #176F6F;
|
|
5353
5387
|
outline: 0;
|
|
5388
|
+
font-size: 16px;
|
|
5389
|
+
line-height: 24px;
|
|
5390
|
+
border-radius: 2px;
|
|
5354
5391
|
}
|
|
5355
5392
|
|
|
5356
5393
|
.select2-container--default .select2-search--inline .select2-search__field {
|
|
5394
|
+
font-size: 16px;
|
|
5395
|
+
line-height: 24px;
|
|
5357
5396
|
background: transparent;
|
|
5358
5397
|
border: none;
|
|
5359
5398
|
outline: 0;
|
|
@@ -5376,6 +5415,9 @@ svg.pv-text-inherit {
|
|
|
5376
5415
|
padding: 6px;
|
|
5377
5416
|
user-select: none;
|
|
5378
5417
|
-webkit-user-select: none;
|
|
5418
|
+
font-size: 16px;
|
|
5419
|
+
line-height: 24px;
|
|
5420
|
+
color: #02363D;
|
|
5379
5421
|
}
|
|
5380
5422
|
|
|
5381
5423
|
.select2-results__option[aria-selected] {
|
|
@@ -5387,12 +5429,14 @@ svg.pv-text-inherit {
|
|
|
5387
5429
|
}
|
|
5388
5430
|
|
|
5389
5431
|
.select2-container--open .select2-dropdown--above {
|
|
5432
|
+
padding: 0.5rem 0;
|
|
5390
5433
|
border-bottom: none;
|
|
5391
5434
|
border-bottom-left-radius: 0;
|
|
5392
5435
|
border-bottom-right-radius: 0;
|
|
5393
5436
|
}
|
|
5394
5437
|
|
|
5395
5438
|
.select2-container--open .select2-dropdown--below {
|
|
5439
|
+
padding: 0.5rem 0;
|
|
5396
5440
|
border-top: none;
|
|
5397
5441
|
border-top-left-radius: 0;
|
|
5398
5442
|
border-top-right-radius: 0;
|
|
@@ -5446,10 +5490,13 @@ svg.pv-text-inherit {
|
|
|
5446
5490
|
|
|
5447
5491
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
|
5448
5492
|
list-style: none;
|
|
5493
|
+
font-size: 14px;
|
|
5494
|
+
line-height: 20px;
|
|
5495
|
+
font-weight: 500;
|
|
5449
5496
|
}
|
|
5450
5497
|
|
|
5451
5498
|
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
|
5452
|
-
color: #
|
|
5499
|
+
color: #6E7784;
|
|
5453
5500
|
margin-top: 5px;
|
|
5454
5501
|
float: left;
|
|
5455
5502
|
}
|
|
@@ -5464,12 +5511,13 @@ svg.pv-text-inherit {
|
|
|
5464
5511
|
|
|
5465
5512
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
5466
5513
|
background-color: #F8F8FA;
|
|
5467
|
-
border: 1px solid #
|
|
5514
|
+
border: 1px solid #e3e7ea;
|
|
5468
5515
|
border-radius: 2px;
|
|
5469
5516
|
padding: 0.125rem 0.5rem;
|
|
5470
5517
|
font-size: 0.875rem;
|
|
5471
5518
|
line-height: 1.42857143;
|
|
5472
5519
|
cursor: default;
|
|
5520
|
+
font-weight: 400;
|
|
5473
5521
|
}
|
|
5474
5522
|
|
|
5475
5523
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
@@ -5477,11 +5525,11 @@ svg.pv-text-inherit {
|
|
|
5477
5525
|
cursor: pointer;
|
|
5478
5526
|
display: inline-block;
|
|
5479
5527
|
font-weight: bold;
|
|
5480
|
-
margin-right:
|
|
5528
|
+
margin-right: 0.25rem;
|
|
5481
5529
|
}
|
|
5482
5530
|
|
|
5483
5531
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
5484
|
-
color: #
|
|
5532
|
+
color: #999;
|
|
5485
5533
|
}
|
|
5486
5534
|
|
|
5487
5535
|
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
@@ -5504,6 +5552,7 @@ svg.pv-text-inherit {
|
|
|
5504
5552
|
}
|
|
5505
5553
|
|
|
5506
5554
|
.select2-container--default .select2-results > .select2-results__options {
|
|
5555
|
+
padding-inline-start: 1rem;
|
|
5507
5556
|
max-height: 200px;
|
|
5508
5557
|
overflow-y: auto;
|
|
5509
5558
|
}
|
|
@@ -5513,11 +5562,12 @@ svg.pv-text-inherit {
|
|
|
5513
5562
|
}
|
|
5514
5563
|
|
|
5515
5564
|
.select2-container--default .select2-results__option[aria-disabled=true] {
|
|
5516
|
-
color: #
|
|
5565
|
+
color: #6E7784;
|
|
5517
5566
|
}
|
|
5518
5567
|
|
|
5519
5568
|
.select2-results__option {
|
|
5520
5569
|
padding: 0.5rem 1rem;
|
|
5570
|
+
border-radius: 0;
|
|
5521
5571
|
}
|
|
5522
5572
|
|
|
5523
5573
|
.select2-results__option[aria-selected=true],
|
|
@@ -5530,3 +5580,26 @@ svg.pv-text-inherit {
|
|
|
5530
5580
|
display: block;
|
|
5531
5581
|
padding: 6px;
|
|
5532
5582
|
}
|
|
5583
|
+
|
|
5584
|
+
.select2-selection--single .select2-selection__rendered,
|
|
5585
|
+
.select2-selection--single .select2-selection__placeholder {
|
|
5586
|
+
font-size: 16px;
|
|
5587
|
+
line-height: 24px;
|
|
5588
|
+
}
|
|
5589
|
+
|
|
5590
|
+
.select2-selection--single .select2-selection__rendered {
|
|
5591
|
+
color: #6E7784;
|
|
5592
|
+
padding: 0.5rem;
|
|
5593
|
+
}
|
|
5594
|
+
|
|
5595
|
+
.select2-results__option[aria-selected=true] {
|
|
5596
|
+
background-color: #F8F8FA;
|
|
5597
|
+
}
|
|
5598
|
+
|
|
5599
|
+
.select2-results__option--highlighted {
|
|
5600
|
+
background-color: #F7F8F8;
|
|
5601
|
+
}
|
|
5602
|
+
|
|
5603
|
+
input.select2-search__field::placeholder {
|
|
5604
|
+
color: #6E7784 !important;
|
|
5605
|
+
}
|