@keenmate/pure-admin-theme-express 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/express.css +490 -0
- package/package.json +1 -1
package/dist/express.css
CHANGED
|
@@ -3120,6 +3120,26 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3120
3120
|
padding: 2.4rem 1.6rem;
|
|
3121
3121
|
}
|
|
3122
3122
|
|
|
3123
|
+
.pa-card--ghost {
|
|
3124
|
+
background: transparent !important;
|
|
3125
|
+
border: none !important;
|
|
3126
|
+
box-shadow: none !important;
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
.pa-card--ghost:hover {
|
|
3130
|
+
box-shadow: none !important;
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
.pa-card--ghost .pa-card__header {
|
|
3134
|
+
background: transparent !important;
|
|
3135
|
+
border-bottom: none !important;
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
.pa-card--ghost .pa-card__footer {
|
|
3139
|
+
background: transparent !important;
|
|
3140
|
+
border-top: none !important;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3123
3143
|
.pa-card--color-1 {
|
|
3124
3144
|
border-color: var(--pa-color-1);
|
|
3125
3145
|
}
|
|
@@ -8978,6 +8998,12 @@ web-multiselect {
|
|
|
8978
8998
|
.pa-table-card:has(.pa-detail-view) .pa-table-card__body {
|
|
8979
8999
|
position: relative;
|
|
8980
9000
|
overflow: hidden;
|
|
9001
|
+
display: flex;
|
|
9002
|
+
flex-direction: column;
|
|
9003
|
+
}
|
|
9004
|
+
|
|
9005
|
+
.pa-table-card:has(.pa-detail-view) .pa-table-card__body .pa-detail-view {
|
|
9006
|
+
flex: 1;
|
|
8981
9007
|
}
|
|
8982
9008
|
|
|
8983
9009
|
.pa-table-card__header {
|
|
@@ -12776,6 +12802,10 @@ code {
|
|
|
12776
12802
|
position: relative;
|
|
12777
12803
|
}
|
|
12778
12804
|
|
|
12805
|
+
.pa-detail-panel__content--bordered {
|
|
12806
|
+
border-block: 1px solid var(--pa-border-color);
|
|
12807
|
+
}
|
|
12808
|
+
|
|
12779
12809
|
.pa-detail-panel--overlay .pa-detail-panel__content {
|
|
12780
12810
|
position: absolute;
|
|
12781
12811
|
top: 0;
|
|
@@ -12876,6 +12906,7 @@ code {
|
|
|
12876
12906
|
.pa-detail-panel__body {
|
|
12877
12907
|
flex: 1;
|
|
12878
12908
|
overflow-y: auto;
|
|
12909
|
+
overscroll-behavior: contain;
|
|
12879
12910
|
padding: 1.2rem 1.6rem;
|
|
12880
12911
|
}
|
|
12881
12912
|
|
|
@@ -13232,6 +13263,10 @@ code {
|
|
|
13232
13263
|
margin-top: 2.4rem;
|
|
13233
13264
|
}
|
|
13234
13265
|
|
|
13266
|
+
.pa-fields-container {
|
|
13267
|
+
container-type: inline-size;
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13235
13270
|
.pa-fields {
|
|
13236
13271
|
display: flex;
|
|
13237
13272
|
flex-direction: column;
|
|
@@ -13257,6 +13292,11 @@ code {
|
|
|
13257
13292
|
grid-template-columns: repeat(4, 1fr);
|
|
13258
13293
|
}
|
|
13259
13294
|
|
|
13295
|
+
@container (max-width: 768px) {
|
|
13296
|
+
.pa-fields--cols-2, .pa-fields--cols-3, .pa-fields--cols-4 {
|
|
13297
|
+
grid-template-columns: 1fr;
|
|
13298
|
+
}
|
|
13299
|
+
}
|
|
13260
13300
|
@media (max-width: 768px) {
|
|
13261
13301
|
.pa-fields--cols-2, .pa-fields--cols-3, .pa-fields--cols-4 {
|
|
13262
13302
|
grid-template-columns: 1fr;
|
|
@@ -13347,6 +13387,11 @@ code {
|
|
|
13347
13387
|
min-width: 0;
|
|
13348
13388
|
}
|
|
13349
13389
|
|
|
13390
|
+
@container (max-width: 768px) {
|
|
13391
|
+
.pa-fields--row {
|
|
13392
|
+
flex-direction: column;
|
|
13393
|
+
}
|
|
13394
|
+
}
|
|
13350
13395
|
@media (max-width: 768px) {
|
|
13351
13396
|
.pa-fields--row {
|
|
13352
13397
|
flex-direction: column;
|
|
@@ -13435,6 +13480,427 @@ code {
|
|
|
13435
13480
|
padding-inline-start: 0;
|
|
13436
13481
|
}
|
|
13437
13482
|
|
|
13483
|
+
.pa-fields--linear {
|
|
13484
|
+
gap: 0.8rem;
|
|
13485
|
+
border-inline-start: none;
|
|
13486
|
+
padding-inline-start: 0;
|
|
13487
|
+
}
|
|
13488
|
+
|
|
13489
|
+
.pa-fields--linear .pa-field {
|
|
13490
|
+
flex-direction: row;
|
|
13491
|
+
align-items: center;
|
|
13492
|
+
gap: 1.2rem;
|
|
13493
|
+
font-size: 1.4rem;
|
|
13494
|
+
line-height: 1.5;
|
|
13495
|
+
min-height: 2.8rem;
|
|
13496
|
+
}
|
|
13497
|
+
|
|
13498
|
+
.pa-fields--linear .pa-field__label {
|
|
13499
|
+
flex: 0 0 10rem;
|
|
13500
|
+
font-size: 1.4rem;
|
|
13501
|
+
text-transform: none;
|
|
13502
|
+
letter-spacing: normal;
|
|
13503
|
+
opacity: 1;
|
|
13504
|
+
font-weight: 400;
|
|
13505
|
+
color: var(--pa-text-color-2);
|
|
13506
|
+
}
|
|
13507
|
+
|
|
13508
|
+
.pa-fields--linear .pa-field__value {
|
|
13509
|
+
flex: 1;
|
|
13510
|
+
min-width: 0;
|
|
13511
|
+
font-size: 1.4rem;
|
|
13512
|
+
font-weight: 500;
|
|
13513
|
+
color: var(--pa-text-color-1);
|
|
13514
|
+
}
|
|
13515
|
+
|
|
13516
|
+
.pa-fields--chips {
|
|
13517
|
+
flex-direction: row;
|
|
13518
|
+
flex-wrap: wrap;
|
|
13519
|
+
gap: 0.6rem 1.4rem;
|
|
13520
|
+
padding: 0.4rem 0;
|
|
13521
|
+
border-inline-start: none;
|
|
13522
|
+
padding-inline-start: 0;
|
|
13523
|
+
}
|
|
13524
|
+
|
|
13525
|
+
.pa-fields--chips .pa-field {
|
|
13526
|
+
flex-direction: row;
|
|
13527
|
+
align-items: center;
|
|
13528
|
+
gap: 0.5rem;
|
|
13529
|
+
font-size: 1.4rem;
|
|
13530
|
+
}
|
|
13531
|
+
|
|
13532
|
+
.pa-fields--chips .pa-field__label {
|
|
13533
|
+
font-size: 1.4rem;
|
|
13534
|
+
text-transform: none;
|
|
13535
|
+
letter-spacing: normal;
|
|
13536
|
+
opacity: 1;
|
|
13537
|
+
font-weight: 400;
|
|
13538
|
+
color: var(--pa-text-color-2);
|
|
13539
|
+
}
|
|
13540
|
+
|
|
13541
|
+
.pa-fields--chips .pa-field__value {
|
|
13542
|
+
background: rgba(128, 128, 128, 0.1);
|
|
13543
|
+
color: var(--pa-text-color-1);
|
|
13544
|
+
font-weight: 500;
|
|
13545
|
+
padding: 0.2rem 0.8rem;
|
|
13546
|
+
border-radius: 4px;
|
|
13547
|
+
font-size: 1.3rem;
|
|
13548
|
+
}
|
|
13549
|
+
|
|
13550
|
+
.pa-fields--chips .pa-field__value--success {
|
|
13551
|
+
background: var(--pa-success-bg-light, rgba(0, 200, 80, 0.12));
|
|
13552
|
+
color: var(--pa-success-color, #28a745);
|
|
13553
|
+
}
|
|
13554
|
+
|
|
13555
|
+
.pa-fields--chips .pa-field__value--warning {
|
|
13556
|
+
background: var(--pa-warning-bg-light, rgba(255, 165, 0, 0.12));
|
|
13557
|
+
color: var(--pa-warning-color, #e68a00);
|
|
13558
|
+
}
|
|
13559
|
+
|
|
13560
|
+
.pa-fields--chips .pa-field__value--danger {
|
|
13561
|
+
background: var(--pa-danger-bg-light, rgba(255, 0, 0, 0.12));
|
|
13562
|
+
color: var(--pa-danger-color, #dc3545);
|
|
13563
|
+
}
|
|
13564
|
+
|
|
13565
|
+
.pa-desc-container {
|
|
13566
|
+
container-type: inline-size;
|
|
13567
|
+
}
|
|
13568
|
+
|
|
13569
|
+
.pa-desc-table {
|
|
13570
|
+
display: grid;
|
|
13571
|
+
grid-template-columns: repeat(3, auto 1fr);
|
|
13572
|
+
border: 1px solid var(--pa-border-color);
|
|
13573
|
+
border-radius: 4px;
|
|
13574
|
+
overflow: hidden;
|
|
13575
|
+
}
|
|
13576
|
+
|
|
13577
|
+
.pa-desc-table--cols-2 {
|
|
13578
|
+
grid-template-columns: repeat(2, auto 1fr);
|
|
13579
|
+
}
|
|
13580
|
+
|
|
13581
|
+
.pa-desc-table--fixed {
|
|
13582
|
+
grid-template-columns: repeat(3, minmax(0, var(--label-width, 14rem)) minmax(0, 1fr));
|
|
13583
|
+
}
|
|
13584
|
+
|
|
13585
|
+
.pa-desc-table--fixed.pa-desc-table--cols-2 {
|
|
13586
|
+
grid-template-columns: repeat(2, minmax(0, var(--label-width, 14rem)) minmax(0, 1fr));
|
|
13587
|
+
}
|
|
13588
|
+
|
|
13589
|
+
.pa-desc-table__label, .pa-desc-table__value {
|
|
13590
|
+
padding: 1.2rem 1.6rem;
|
|
13591
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
13592
|
+
font-size: 1.4rem;
|
|
13593
|
+
line-height: 1.5;
|
|
13594
|
+
}
|
|
13595
|
+
|
|
13596
|
+
.pa-desc-table__label {
|
|
13597
|
+
background: rgba(128, 128, 128, 0.06);
|
|
13598
|
+
color: var(--pa-text-color-2);
|
|
13599
|
+
font-weight: 400;
|
|
13600
|
+
white-space: nowrap;
|
|
13601
|
+
border-inline-end: 1px solid var(--pa-border-color);
|
|
13602
|
+
}
|
|
13603
|
+
|
|
13604
|
+
.pa-desc-table__label::after {
|
|
13605
|
+
content: ":";
|
|
13606
|
+
margin-inline-start: 2px;
|
|
13607
|
+
}
|
|
13608
|
+
|
|
13609
|
+
.pa-desc-table__value {
|
|
13610
|
+
color: var(--pa-text-color-1);
|
|
13611
|
+
font-weight: 500;
|
|
13612
|
+
border-inline-end: 1px solid var(--pa-border-color);
|
|
13613
|
+
min-width: 0;
|
|
13614
|
+
}
|
|
13615
|
+
|
|
13616
|
+
.pa-desc-table__value--full {
|
|
13617
|
+
grid-column: 2/-1;
|
|
13618
|
+
}
|
|
13619
|
+
|
|
13620
|
+
.pa-desc-table--middle .pa-desc-table__label, .pa-desc-table--middle .pa-desc-table__value {
|
|
13621
|
+
display: flex;
|
|
13622
|
+
align-items: center;
|
|
13623
|
+
}
|
|
13624
|
+
|
|
13625
|
+
.pa-desc-table--label-end .pa-desc-table__label {
|
|
13626
|
+
text-align: end;
|
|
13627
|
+
justify-content: flex-end;
|
|
13628
|
+
}
|
|
13629
|
+
|
|
13630
|
+
.pa-desc-table--label-center .pa-desc-table__label {
|
|
13631
|
+
text-align: center;
|
|
13632
|
+
justify-content: center;
|
|
13633
|
+
}
|
|
13634
|
+
|
|
13635
|
+
.pa-desc-table--truncate .pa-desc-table__label, .pa-desc-table--truncate .pa-desc-table__value {
|
|
13636
|
+
overflow: hidden;
|
|
13637
|
+
text-overflow: ellipsis;
|
|
13638
|
+
white-space: nowrap;
|
|
13639
|
+
}
|
|
13640
|
+
|
|
13641
|
+
@container (max-width: 768px) {
|
|
13642
|
+
.pa-desc-table, .pa-desc-table--cols-2 {
|
|
13643
|
+
grid-template-columns: auto 1fr;
|
|
13644
|
+
}
|
|
13645
|
+
.pa-desc-table--fixed, .pa-desc-table--fixed.pa-desc-table--cols-2 {
|
|
13646
|
+
grid-template-columns: minmax(0, var(--label-width, 14rem)) minmax(0, 1fr);
|
|
13647
|
+
}
|
|
13648
|
+
.pa-desc-table .pa-desc-table__value--full {
|
|
13649
|
+
grid-column: 2;
|
|
13650
|
+
}
|
|
13651
|
+
}
|
|
13652
|
+
@media (max-width: 768px) {
|
|
13653
|
+
.pa-desc-table, .pa-desc-table--cols-2 {
|
|
13654
|
+
grid-template-columns: auto 1fr;
|
|
13655
|
+
}
|
|
13656
|
+
.pa-desc-table--fixed, .pa-desc-table--fixed.pa-desc-table--cols-2 {
|
|
13657
|
+
grid-template-columns: minmax(0, var(--label-width, 14rem)) minmax(0, 1fr);
|
|
13658
|
+
}
|
|
13659
|
+
.pa-desc-table .pa-desc-table__value--full {
|
|
13660
|
+
grid-column: 2;
|
|
13661
|
+
}
|
|
13662
|
+
}
|
|
13663
|
+
.pa-dot-leaders {
|
|
13664
|
+
display: flex;
|
|
13665
|
+
flex-direction: column;
|
|
13666
|
+
gap: 0;
|
|
13667
|
+
}
|
|
13668
|
+
|
|
13669
|
+
.pa-dot-leaders__item {
|
|
13670
|
+
display: flex;
|
|
13671
|
+
align-items: baseline;
|
|
13672
|
+
padding: 0.6rem 0;
|
|
13673
|
+
}
|
|
13674
|
+
|
|
13675
|
+
.pa-dot-leaders__item--total {
|
|
13676
|
+
margin-top: 0.4rem;
|
|
13677
|
+
padding-top: 0.8rem;
|
|
13678
|
+
border-top: 2px solid var(--pa-text-color-1);
|
|
13679
|
+
}
|
|
13680
|
+
|
|
13681
|
+
.pa-dot-leaders__label {
|
|
13682
|
+
font-size: 1.4rem;
|
|
13683
|
+
font-weight: 500;
|
|
13684
|
+
color: var(--pa-text-color-2);
|
|
13685
|
+
white-space: nowrap;
|
|
13686
|
+
flex-shrink: 0;
|
|
13687
|
+
}
|
|
13688
|
+
|
|
13689
|
+
.pa-dot-leaders__leader {
|
|
13690
|
+
flex: 1;
|
|
13691
|
+
border-bottom: 2px dotted var(--pa-border-color);
|
|
13692
|
+
margin: 0 0.8rem;
|
|
13693
|
+
margin-bottom: 0.25em;
|
|
13694
|
+
min-width: 2rem;
|
|
13695
|
+
}
|
|
13696
|
+
|
|
13697
|
+
.pa-dot-leaders__value {
|
|
13698
|
+
font-size: 1.4rem;
|
|
13699
|
+
font-weight: 600;
|
|
13700
|
+
color: var(--pa-text-color-1);
|
|
13701
|
+
white-space: nowrap;
|
|
13702
|
+
text-align: end;
|
|
13703
|
+
font-variant-numeric: tabular-nums;
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13706
|
+
.pa-dot-leaders__item--total .pa-dot-leaders__label {
|
|
13707
|
+
font-weight: 700;
|
|
13708
|
+
color: var(--pa-text-color-1);
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13711
|
+
.pa-dot-leaders__item--total .pa-dot-leaders__value {
|
|
13712
|
+
font-size: 1.6rem;
|
|
13713
|
+
font-weight: 700;
|
|
13714
|
+
}
|
|
13715
|
+
|
|
13716
|
+
.pa-prop-card {
|
|
13717
|
+
border: 1px solid var(--pa-border-color);
|
|
13718
|
+
border-radius: 6px;
|
|
13719
|
+
overflow: hidden;
|
|
13720
|
+
}
|
|
13721
|
+
|
|
13722
|
+
.pa-prop-card__header {
|
|
13723
|
+
padding: 1rem 1.6rem;
|
|
13724
|
+
font-weight: 600;
|
|
13725
|
+
font-size: 1.3rem;
|
|
13726
|
+
text-transform: uppercase;
|
|
13727
|
+
letter-spacing: 0.04em;
|
|
13728
|
+
color: var(--pa-text-color-2);
|
|
13729
|
+
background: rgba(128, 128, 128, 0.04);
|
|
13730
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
13731
|
+
}
|
|
13732
|
+
|
|
13733
|
+
.pa-prop-card__row {
|
|
13734
|
+
display: flex;
|
|
13735
|
+
justify-content: space-between;
|
|
13736
|
+
align-items: center;
|
|
13737
|
+
padding: 1rem 1.6rem;
|
|
13738
|
+
border-bottom: 1px solid rgba(128, 128, 128, 0.08);
|
|
13739
|
+
font-size: 1.4rem;
|
|
13740
|
+
gap: 1.6rem;
|
|
13741
|
+
}
|
|
13742
|
+
|
|
13743
|
+
.pa-prop-card__row:last-child {
|
|
13744
|
+
border-bottom: none;
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13747
|
+
.pa-prop-card__label {
|
|
13748
|
+
color: var(--pa-text-color-2);
|
|
13749
|
+
font-weight: 400;
|
|
13750
|
+
flex-shrink: 0;
|
|
13751
|
+
}
|
|
13752
|
+
|
|
13753
|
+
.pa-prop-card__value {
|
|
13754
|
+
color: var(--pa-text-color-1);
|
|
13755
|
+
font-weight: 500;
|
|
13756
|
+
text-align: end;
|
|
13757
|
+
overflow-wrap: anywhere;
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13760
|
+
.pa-prop-card__value--bold {
|
|
13761
|
+
font-weight: 700;
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
.pa-banded-container {
|
|
13765
|
+
container-type: inline-size;
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13768
|
+
.pa-banded {
|
|
13769
|
+
border: 1px solid var(--pa-border-color);
|
|
13770
|
+
border-radius: 4px;
|
|
13771
|
+
overflow: hidden;
|
|
13772
|
+
}
|
|
13773
|
+
|
|
13774
|
+
.pa-banded__row {
|
|
13775
|
+
display: flex;
|
|
13776
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
13777
|
+
font-size: 1.4rem;
|
|
13778
|
+
align-items: stretch;
|
|
13779
|
+
}
|
|
13780
|
+
|
|
13781
|
+
.pa-banded__row:last-child {
|
|
13782
|
+
border-bottom: none;
|
|
13783
|
+
}
|
|
13784
|
+
|
|
13785
|
+
.pa-banded__label {
|
|
13786
|
+
flex: 0 0 auto;
|
|
13787
|
+
width: 14rem;
|
|
13788
|
+
padding: 0.8rem 1.2rem;
|
|
13789
|
+
background: rgba(128, 128, 128, 0.06);
|
|
13790
|
+
color: var(--pa-text-color-2);
|
|
13791
|
+
font-weight: 500;
|
|
13792
|
+
border-inline-end: 1px solid var(--pa-border-color);
|
|
13793
|
+
display: flex;
|
|
13794
|
+
align-items: flex-start;
|
|
13795
|
+
}
|
|
13796
|
+
|
|
13797
|
+
.pa-banded__value {
|
|
13798
|
+
flex: 1;
|
|
13799
|
+
padding: 0.8rem 1.2rem;
|
|
13800
|
+
color: var(--pa-text-color-1);
|
|
13801
|
+
font-weight: 400;
|
|
13802
|
+
display: flex;
|
|
13803
|
+
align-items: flex-start;
|
|
13804
|
+
overflow-wrap: anywhere;
|
|
13805
|
+
min-width: 0;
|
|
13806
|
+
}
|
|
13807
|
+
|
|
13808
|
+
.pa-banded--narrow .pa-banded__label {
|
|
13809
|
+
width: 10rem;
|
|
13810
|
+
}
|
|
13811
|
+
|
|
13812
|
+
.pa-banded--wide .pa-banded__label {
|
|
13813
|
+
width: 20rem;
|
|
13814
|
+
}
|
|
13815
|
+
|
|
13816
|
+
.pa-banded--middle .pa-banded__label, .pa-banded--middle .pa-banded__value {
|
|
13817
|
+
align-items: center;
|
|
13818
|
+
}
|
|
13819
|
+
|
|
13820
|
+
.pa-banded--label-end .pa-banded__label {
|
|
13821
|
+
justify-content: flex-end;
|
|
13822
|
+
}
|
|
13823
|
+
|
|
13824
|
+
.pa-banded--label-center .pa-banded__label {
|
|
13825
|
+
justify-content: center;
|
|
13826
|
+
}
|
|
13827
|
+
|
|
13828
|
+
.pa-banded--truncate .pa-banded__label, .pa-banded--truncate .pa-banded__value {
|
|
13829
|
+
overflow: hidden;
|
|
13830
|
+
text-overflow: ellipsis;
|
|
13831
|
+
white-space: nowrap;
|
|
13832
|
+
}
|
|
13833
|
+
|
|
13834
|
+
@container (max-width: 768px) {
|
|
13835
|
+
.pa-banded__row {
|
|
13836
|
+
flex-direction: column;
|
|
13837
|
+
}
|
|
13838
|
+
.pa-banded .pa-banded__label {
|
|
13839
|
+
width: auto !important;
|
|
13840
|
+
border-inline-end: none;
|
|
13841
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
13842
|
+
}
|
|
13843
|
+
.pa-banded .pa-banded__label, .pa-banded .pa-banded__value {
|
|
13844
|
+
display: block;
|
|
13845
|
+
}
|
|
13846
|
+
}
|
|
13847
|
+
@media (max-width: 768px) {
|
|
13848
|
+
.pa-banded__row {
|
|
13849
|
+
flex-direction: column;
|
|
13850
|
+
}
|
|
13851
|
+
.pa-banded .pa-banded__label {
|
|
13852
|
+
width: auto !important;
|
|
13853
|
+
border-inline-end: none;
|
|
13854
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
13855
|
+
}
|
|
13856
|
+
.pa-banded .pa-banded__label, .pa-banded .pa-banded__value {
|
|
13857
|
+
display: block;
|
|
13858
|
+
}
|
|
13859
|
+
}
|
|
13860
|
+
.pa-accent-grid {
|
|
13861
|
+
display: grid;
|
|
13862
|
+
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
13863
|
+
gap: 0.8rem;
|
|
13864
|
+
}
|
|
13865
|
+
|
|
13866
|
+
.pa-accent-grid__item {
|
|
13867
|
+
padding: 0.8rem 1.2rem;
|
|
13868
|
+
padding-inline-start: 1.4rem;
|
|
13869
|
+
border-inline-start: 3px solid var(--pa-accent, #3b82f6);
|
|
13870
|
+
}
|
|
13871
|
+
|
|
13872
|
+
.pa-accent-grid__item--success {
|
|
13873
|
+
border-inline-start-color: var(--pa-success-color, #28a745);
|
|
13874
|
+
}
|
|
13875
|
+
|
|
13876
|
+
.pa-accent-grid__item--warning {
|
|
13877
|
+
border-inline-start-color: var(--pa-warning-color, #e68a00);
|
|
13878
|
+
}
|
|
13879
|
+
|
|
13880
|
+
.pa-accent-grid__item--danger {
|
|
13881
|
+
border-inline-start-color: var(--pa-danger-color, #dc3545);
|
|
13882
|
+
}
|
|
13883
|
+
|
|
13884
|
+
.pa-accent-grid__item--info {
|
|
13885
|
+
border-inline-start-color: var(--pa-info-color, #17a2b8);
|
|
13886
|
+
}
|
|
13887
|
+
|
|
13888
|
+
.pa-accent-grid__label {
|
|
13889
|
+
font-size: 1.1rem;
|
|
13890
|
+
font-weight: 500;
|
|
13891
|
+
color: var(--pa-text-color-2);
|
|
13892
|
+
margin-bottom: 0.2rem;
|
|
13893
|
+
text-transform: uppercase;
|
|
13894
|
+
letter-spacing: 0.03em;
|
|
13895
|
+
}
|
|
13896
|
+
|
|
13897
|
+
.pa-accent-grid__value {
|
|
13898
|
+
font-size: 1.5rem;
|
|
13899
|
+
font-weight: 600;
|
|
13900
|
+
color: var(--pa-text-color-1);
|
|
13901
|
+
line-height: 1.2;
|
|
13902
|
+
}
|
|
13903
|
+
|
|
13438
13904
|
/* ========================================
|
|
13439
13905
|
Utility Components
|
|
13440
13906
|
Font utilities, compact mode, component showcase
|
|
@@ -16248,6 +16714,26 @@ html.font-size-xlarge {
|
|
|
16248
16714
|
min-height: 50rem !important;
|
|
16249
16715
|
}
|
|
16250
16716
|
|
|
16717
|
+
.minhr-60 {
|
|
16718
|
+
min-height: 60rem !important;
|
|
16719
|
+
}
|
|
16720
|
+
|
|
16721
|
+
.minhr-70 {
|
|
16722
|
+
min-height: 70rem !important;
|
|
16723
|
+
}
|
|
16724
|
+
|
|
16725
|
+
.minhr-80 {
|
|
16726
|
+
min-height: 80rem !important;
|
|
16727
|
+
}
|
|
16728
|
+
|
|
16729
|
+
.minhr-90 {
|
|
16730
|
+
min-height: 90rem !important;
|
|
16731
|
+
}
|
|
16732
|
+
|
|
16733
|
+
.minhr-100 {
|
|
16734
|
+
min-height: 100rem !important;
|
|
16735
|
+
}
|
|
16736
|
+
|
|
16251
16737
|
.maxhr-1 {
|
|
16252
16738
|
max-height: 1rem !important;
|
|
16253
16739
|
}
|
|
@@ -16892,6 +17378,10 @@ html.font-size-xlarge {
|
|
|
16892
17378
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
|
|
16893
17379
|
}
|
|
16894
17380
|
|
|
17381
|
+
.pa-cq {
|
|
17382
|
+
container-type: inline-size;
|
|
17383
|
+
}
|
|
17384
|
+
|
|
16895
17385
|
.pa-header__brand h1 {
|
|
16896
17386
|
color: #000000 !important;
|
|
16897
17387
|
font-weight: 700 !important;
|