@keenmate/pure-admin-theme-express 1.3.0 → 1.5.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/dist/express.css +181 -67
- package/package.json +10 -1
package/dist/express.css
CHANGED
|
@@ -268,7 +268,7 @@ body.pa-container-2xl .pa-navbar {
|
|
|
268
268
|
gap: 1.6rem;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
.pa-
|
|
271
|
+
.pa-header__start {
|
|
272
272
|
display: flex;
|
|
273
273
|
align-items: center;
|
|
274
274
|
gap: 1.6rem;
|
|
@@ -283,7 +283,7 @@ body.pa-container-2xl .pa-navbar {
|
|
|
283
283
|
justify-content: center;
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
-
.pa-
|
|
286
|
+
.pa-header__end {
|
|
287
287
|
display: flex;
|
|
288
288
|
align-items: center;
|
|
289
289
|
gap: 1.6rem;
|
|
@@ -385,7 +385,7 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
385
385
|
gap: 1.6rem;
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
.pa-
|
|
388
|
+
.pa-footer__start {
|
|
389
389
|
display: flex;
|
|
390
390
|
align-items: center;
|
|
391
391
|
gap: 1.6rem;
|
|
@@ -400,14 +400,14 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
400
400
|
justify-content: center;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
-
.pa-
|
|
403
|
+
.pa-footer__end {
|
|
404
404
|
display: flex;
|
|
405
405
|
align-items: center;
|
|
406
406
|
gap: 1.6rem;
|
|
407
407
|
flex-shrink: 0;
|
|
408
408
|
}
|
|
409
409
|
|
|
410
|
-
.pa-
|
|
410
|
+
.pa-footer__end--vertical {
|
|
411
411
|
flex-direction: column;
|
|
412
412
|
align-items: flex-end;
|
|
413
413
|
gap: 0.4rem;
|
|
@@ -419,22 +419,22 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
419
419
|
min-height: auto;
|
|
420
420
|
padding: 0.8rem 1.6rem;
|
|
421
421
|
}
|
|
422
|
-
.pa-
|
|
422
|
+
.pa-footer__start,
|
|
423
423
|
.pa-footer__center,
|
|
424
|
-
.pa-
|
|
424
|
+
.pa-footer__end {
|
|
425
425
|
flex-shrink: 1;
|
|
426
426
|
min-width: 0;
|
|
427
427
|
}
|
|
428
|
-
.pa-
|
|
428
|
+
.pa-footer__start {
|
|
429
429
|
flex: 1 1 auto;
|
|
430
430
|
}
|
|
431
431
|
.pa-footer__center {
|
|
432
432
|
display: none;
|
|
433
433
|
}
|
|
434
|
-
.pa-
|
|
434
|
+
.pa-footer__end {
|
|
435
435
|
flex: 0 1 auto;
|
|
436
436
|
}
|
|
437
|
-
.pa-
|
|
437
|
+
.pa-footer__end--vertical {
|
|
438
438
|
align-items: flex-end;
|
|
439
439
|
}
|
|
440
440
|
}
|
|
@@ -2906,6 +2906,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2906
2906
|
display: flex;
|
|
2907
2907
|
justify-content: space-between;
|
|
2908
2908
|
align-items: center;
|
|
2909
|
+
gap: 1.6rem;
|
|
2909
2910
|
min-width: 0;
|
|
2910
2911
|
}
|
|
2911
2912
|
|
|
@@ -2937,9 +2938,45 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2937
2938
|
font-size: 1.6rem;
|
|
2938
2939
|
}
|
|
2939
2940
|
|
|
2941
|
+
.pa-card__header > h1,
|
|
2942
|
+
.pa-card__header > h2,
|
|
2943
|
+
.pa-card__header > h3,
|
|
2944
|
+
.pa-card__header > h4,
|
|
2945
|
+
.pa-card__header > h5,
|
|
2946
|
+
.pa-card__header > h6 {
|
|
2947
|
+
flex-shrink: 0;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
.pa-card__header > p {
|
|
2951
|
+
flex: 1;
|
|
2952
|
+
min-width: 0;
|
|
2953
|
+
overflow: hidden;
|
|
2954
|
+
text-overflow: ellipsis;
|
|
2955
|
+
white-space: nowrap;
|
|
2956
|
+
color: var(--pa-text-color-2);
|
|
2957
|
+
font-size: 1.4rem;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
.pa-card__header .pa-card__actions,
|
|
2961
|
+
.pa-card__header .pa-btn-group {
|
|
2962
|
+
flex-shrink: 0;
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2940
2965
|
.pa-card__header .pa-btn {
|
|
2941
2966
|
margin-top: -0.25rem;
|
|
2942
2967
|
margin-bottom: -0.25rem;
|
|
2968
|
+
flex-shrink: 0;
|
|
2969
|
+
}
|
|
2970
|
+
|
|
2971
|
+
.pa-card__header--wrap {
|
|
2972
|
+
flex-wrap: wrap;
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
.pa-card__header--wrap > p {
|
|
2976
|
+
white-space: normal;
|
|
2977
|
+
flex-basis: 100%;
|
|
2978
|
+
order: 1;
|
|
2979
|
+
margin-top: 0.4rem;
|
|
2943
2980
|
}
|
|
2944
2981
|
|
|
2945
2982
|
.pa-card__title {
|
|
@@ -3551,21 +3588,21 @@ a.pa-card p {
|
|
|
3551
3588
|
background: linear-gradient(to right, var(--pa-main-bg), color-mix(in srgb, var(--pa-main-bg) 80%, transparent));
|
|
3552
3589
|
}
|
|
3553
3590
|
|
|
3554
|
-
.pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3591
|
+
.pa-tabs--scrollable .pa-tabs__scroll-btn--start {
|
|
3555
3592
|
inset-inline-start: 0;
|
|
3556
3593
|
background: linear-gradient(to right, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3557
3594
|
}
|
|
3558
3595
|
|
|
3559
|
-
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3596
|
+
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--start {
|
|
3560
3597
|
background: linear-gradient(to left, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3561
3598
|
}
|
|
3562
3599
|
|
|
3563
|
-
.pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3600
|
+
.pa-tabs--scrollable .pa-tabs__scroll-btn--end {
|
|
3564
3601
|
inset-inline-end: 0;
|
|
3565
3602
|
background: linear-gradient(to left, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3566
3603
|
}
|
|
3567
3604
|
|
|
3568
|
-
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3605
|
+
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--end {
|
|
3569
3606
|
background: linear-gradient(to right, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3570
3607
|
}
|
|
3571
3608
|
|
|
@@ -5268,19 +5305,19 @@ a.pa-card p {
|
|
|
5268
5305
|
margin: 0;
|
|
5269
5306
|
}
|
|
5270
5307
|
|
|
5271
|
-
.pa-btn--align-
|
|
5308
|
+
.pa-btn--align-start {
|
|
5272
5309
|
justify-content: flex-start;
|
|
5273
5310
|
}
|
|
5274
5311
|
|
|
5275
|
-
.pa-btn--align-
|
|
5312
|
+
.pa-btn--align-start .pa-btn__icon {
|
|
5276
5313
|
padding-inline-start: 0;
|
|
5277
5314
|
}
|
|
5278
5315
|
|
|
5279
|
-
.pa-btn--align-
|
|
5316
|
+
.pa-btn--align-end {
|
|
5280
5317
|
justify-content: flex-end;
|
|
5281
5318
|
}
|
|
5282
5319
|
|
|
5283
|
-
.pa-btn--align-
|
|
5320
|
+
.pa-btn--align-end .pa-btn__icon {
|
|
5284
5321
|
padding-inline-end: 0;
|
|
5285
5322
|
}
|
|
5286
5323
|
|
|
@@ -6303,7 +6340,7 @@ a.pa-card p {
|
|
|
6303
6340
|
text-align: end;
|
|
6304
6341
|
}
|
|
6305
6342
|
|
|
6306
|
-
.pa-popover--
|
|
6343
|
+
.pa-popover--end .pa-popover__body {
|
|
6307
6344
|
text-align: end;
|
|
6308
6345
|
}
|
|
6309
6346
|
|
|
@@ -8938,6 +8975,11 @@ web-multiselect {
|
|
|
8938
8975
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
8939
8976
|
}
|
|
8940
8977
|
|
|
8978
|
+
.pa-table-card:has(.pa-detail-view) .pa-table-card__body {
|
|
8979
|
+
position: relative;
|
|
8980
|
+
overflow: hidden;
|
|
8981
|
+
}
|
|
8982
|
+
|
|
8941
8983
|
.pa-table-card__header {
|
|
8942
8984
|
padding: 0.5rem 1rem;
|
|
8943
8985
|
min-height: 4rem;
|
|
@@ -9019,6 +9061,33 @@ web-multiselect {
|
|
|
9019
9061
|
border-bottom: none;
|
|
9020
9062
|
}
|
|
9021
9063
|
|
|
9064
|
+
.pa-table-card__body .pa-detail-view {
|
|
9065
|
+
height: 100%;
|
|
9066
|
+
}
|
|
9067
|
+
|
|
9068
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table {
|
|
9069
|
+
border-radius: 0;
|
|
9070
|
+
}
|
|
9071
|
+
|
|
9072
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table th:first-child,
|
|
9073
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table td:first-child {
|
|
9074
|
+
padding-inline-start: 1rem;
|
|
9075
|
+
}
|
|
9076
|
+
|
|
9077
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table th:last-child,
|
|
9078
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table td:last-child {
|
|
9079
|
+
padding-inline-end: 1rem;
|
|
9080
|
+
}
|
|
9081
|
+
|
|
9082
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main .pa-table tbody tr:last-child td {
|
|
9083
|
+
border-bottom: none;
|
|
9084
|
+
}
|
|
9085
|
+
|
|
9086
|
+
.pa-table-card__body .pa-detail-view .pa-detail-view__main web-grid {
|
|
9087
|
+
--wg-cell-padding-left: 1rem;
|
|
9088
|
+
--wg-cell-padding-right: 1rem;
|
|
9089
|
+
}
|
|
9090
|
+
|
|
9022
9091
|
.pa-table-card__footer {
|
|
9023
9092
|
padding: 1.2rem 1rem;
|
|
9024
9093
|
border-top: 1px solid var(--pa-border-color);
|
|
@@ -9217,6 +9286,11 @@ web-multiselect {
|
|
|
9217
9286
|
padding-inline: 0;
|
|
9218
9287
|
}
|
|
9219
9288
|
|
|
9289
|
+
.pa-table-card--plain .pa-table-card__body:has(.pa-detail-view--overlay) {
|
|
9290
|
+
position: relative;
|
|
9291
|
+
overflow: hidden;
|
|
9292
|
+
}
|
|
9293
|
+
|
|
9220
9294
|
.pa-table-card--plain .pa-table-card__footer {
|
|
9221
9295
|
background: transparent;
|
|
9222
9296
|
border-top: none;
|
|
@@ -9346,7 +9420,7 @@ web-multiselect {
|
|
|
9346
9420
|
justify-content: center;
|
|
9347
9421
|
}
|
|
9348
9422
|
|
|
9349
|
-
.pa-pager--
|
|
9423
|
+
.pa-pager--start {
|
|
9350
9424
|
justify-content: flex-start;
|
|
9351
9425
|
}
|
|
9352
9426
|
|
|
@@ -9354,7 +9428,7 @@ web-multiselect {
|
|
|
9354
9428
|
justify-content: center;
|
|
9355
9429
|
}
|
|
9356
9430
|
|
|
9357
|
-
.pa-pager--
|
|
9431
|
+
.pa-pager--end {
|
|
9358
9432
|
justify-content: flex-end;
|
|
9359
9433
|
}
|
|
9360
9434
|
|
|
@@ -9403,7 +9477,7 @@ web-multiselect {
|
|
|
9403
9477
|
justify-content: center;
|
|
9404
9478
|
}
|
|
9405
9479
|
|
|
9406
|
-
.pa-load-more--
|
|
9480
|
+
.pa-load-more--start {
|
|
9407
9481
|
justify-content: flex-start;
|
|
9408
9482
|
}
|
|
9409
9483
|
|
|
@@ -9411,7 +9485,7 @@ web-multiselect {
|
|
|
9411
9485
|
justify-content: center;
|
|
9412
9486
|
}
|
|
9413
9487
|
|
|
9414
|
-
.pa-load-more--
|
|
9488
|
+
.pa-load-more--end {
|
|
9415
9489
|
justify-content: flex-end;
|
|
9416
9490
|
}
|
|
9417
9491
|
|
|
@@ -9971,7 +10045,7 @@ code {
|
|
|
9971
10045
|
justify-content: center;
|
|
9972
10046
|
}
|
|
9973
10047
|
|
|
9974
|
-
.pa-pager--
|
|
10048
|
+
.pa-pager--start {
|
|
9975
10049
|
justify-content: flex-start;
|
|
9976
10050
|
}
|
|
9977
10051
|
|
|
@@ -9979,7 +10053,7 @@ code {
|
|
|
9979
10053
|
justify-content: center;
|
|
9980
10054
|
}
|
|
9981
10055
|
|
|
9982
|
-
.pa-pager--
|
|
10056
|
+
.pa-pager--end {
|
|
9983
10057
|
justify-content: flex-end;
|
|
9984
10058
|
}
|
|
9985
10059
|
|
|
@@ -10028,7 +10102,7 @@ code {
|
|
|
10028
10102
|
justify-content: center;
|
|
10029
10103
|
}
|
|
10030
10104
|
|
|
10031
|
-
.pa-load-more--
|
|
10105
|
+
.pa-load-more--start {
|
|
10032
10106
|
justify-content: flex-start;
|
|
10033
10107
|
}
|
|
10034
10108
|
|
|
@@ -10036,7 +10110,7 @@ code {
|
|
|
10036
10110
|
justify-content: center;
|
|
10037
10111
|
}
|
|
10038
10112
|
|
|
10039
|
-
.pa-load-more--
|
|
10113
|
+
.pa-load-more--end {
|
|
10040
10114
|
justify-content: flex-end;
|
|
10041
10115
|
}
|
|
10042
10116
|
|
|
@@ -11242,73 +11316,73 @@ code {
|
|
|
11242
11316
|
border-radius: 500px 0 0 500px;
|
|
11243
11317
|
}
|
|
11244
11318
|
|
|
11245
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11319
|
+
.pa-timeline--alternating.pa-timeline--start::after {
|
|
11246
11320
|
left: 90px;
|
|
11247
11321
|
}
|
|
11248
11322
|
|
|
11249
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11323
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item {
|
|
11250
11324
|
width: 100%;
|
|
11251
11325
|
padding-left: 120px;
|
|
11252
11326
|
padding-right: 0;
|
|
11253
11327
|
left: 0 !important;
|
|
11254
11328
|
}
|
|
11255
11329
|
|
|
11256
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11330
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item::after {
|
|
11257
11331
|
left: 82px;
|
|
11258
11332
|
}
|
|
11259
11333
|
|
|
11260
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11334
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item::before {
|
|
11261
11335
|
left: 100px;
|
|
11262
11336
|
}
|
|
11263
11337
|
|
|
11264
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11338
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__date {
|
|
11265
11339
|
right: auto;
|
|
11266
11340
|
left: 15px;
|
|
11267
11341
|
}
|
|
11268
11342
|
|
|
11269
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11343
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__icon {
|
|
11270
11344
|
right: auto;
|
|
11271
11345
|
left: 146px;
|
|
11272
11346
|
}
|
|
11273
11347
|
|
|
11274
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11348
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__content {
|
|
11275
11349
|
padding: 3.2rem 3.2rem 3.2rem calc(6.4rem + 40px);
|
|
11276
11350
|
border-radius: 500px 0 0 500px;
|
|
11277
11351
|
}
|
|
11278
11352
|
|
|
11279
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11353
|
+
.pa-timeline--alternating.pa-timeline--end::after {
|
|
11280
11354
|
right: 90px;
|
|
11281
11355
|
left: auto;
|
|
11282
11356
|
}
|
|
11283
11357
|
|
|
11284
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11358
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item {
|
|
11285
11359
|
width: 100%;
|
|
11286
11360
|
padding-left: 0;
|
|
11287
11361
|
padding-right: 120px;
|
|
11288
11362
|
left: 0 !important;
|
|
11289
11363
|
}
|
|
11290
11364
|
|
|
11291
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11365
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item::after {
|
|
11292
11366
|
right: 82px;
|
|
11293
11367
|
left: auto;
|
|
11294
11368
|
}
|
|
11295
11369
|
|
|
11296
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11370
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item::before {
|
|
11297
11371
|
right: 100px;
|
|
11298
11372
|
left: auto;
|
|
11299
11373
|
}
|
|
11300
11374
|
|
|
11301
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11375
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__date {
|
|
11302
11376
|
left: auto;
|
|
11303
11377
|
right: 15px;
|
|
11304
11378
|
}
|
|
11305
11379
|
|
|
11306
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11380
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__icon {
|
|
11307
11381
|
left: auto;
|
|
11308
11382
|
right: 146px;
|
|
11309
11383
|
}
|
|
11310
11384
|
|
|
11311
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11385
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__content {
|
|
11312
11386
|
padding: 3.2rem calc(6.4rem + 40px) 3.2rem 3.2rem;
|
|
11313
11387
|
border-radius: 0 500px 500px 0;
|
|
11314
11388
|
}
|
|
@@ -12653,14 +12727,18 @@ code {
|
|
|
12653
12727
|
top: 0;
|
|
12654
12728
|
inset-inline-end: 0;
|
|
12655
12729
|
height: 100%;
|
|
12656
|
-
z-index:
|
|
12730
|
+
z-index: 3501;
|
|
12731
|
+
}
|
|
12732
|
+
|
|
12733
|
+
.pa-detail-view--overlay .pa-detail-view__panel--open {
|
|
12734
|
+
max-width: 100%;
|
|
12657
12735
|
}
|
|
12658
12736
|
|
|
12659
12737
|
.pa-detail-view__overlay {
|
|
12660
12738
|
position: absolute;
|
|
12661
12739
|
inset: 0;
|
|
12662
12740
|
background-color: var(--pa-detail-panel-overlay-bg);
|
|
12663
|
-
z-index:
|
|
12741
|
+
z-index: 3500;
|
|
12664
12742
|
opacity: 0;
|
|
12665
12743
|
visibility: hidden;
|
|
12666
12744
|
cursor: pointer;
|
|
@@ -13530,6 +13608,62 @@ html.font-size-xlarge {
|
|
|
13530
13608
|
max-height: 50rem;
|
|
13531
13609
|
}
|
|
13532
13610
|
|
|
13611
|
+
.h-full {
|
|
13612
|
+
height: 100%;
|
|
13613
|
+
}
|
|
13614
|
+
|
|
13615
|
+
.h-screen {
|
|
13616
|
+
height: 100vh;
|
|
13617
|
+
}
|
|
13618
|
+
|
|
13619
|
+
.min-h-full {
|
|
13620
|
+
min-height: 100%;
|
|
13621
|
+
}
|
|
13622
|
+
|
|
13623
|
+
.min-h-screen {
|
|
13624
|
+
min-height: 100vh;
|
|
13625
|
+
}
|
|
13626
|
+
|
|
13627
|
+
.max-h-full {
|
|
13628
|
+
max-height: 100%;
|
|
13629
|
+
}
|
|
13630
|
+
|
|
13631
|
+
.max-h-screen {
|
|
13632
|
+
max-height: 100vh;
|
|
13633
|
+
}
|
|
13634
|
+
|
|
13635
|
+
.flex-1 {
|
|
13636
|
+
flex: 1 1 0%;
|
|
13637
|
+
}
|
|
13638
|
+
|
|
13639
|
+
.flex-auto {
|
|
13640
|
+
flex: 1 1 auto;
|
|
13641
|
+
}
|
|
13642
|
+
|
|
13643
|
+
.flex-initial {
|
|
13644
|
+
flex: 0 1 auto;
|
|
13645
|
+
}
|
|
13646
|
+
|
|
13647
|
+
.flex-none {
|
|
13648
|
+
flex: none;
|
|
13649
|
+
}
|
|
13650
|
+
|
|
13651
|
+
.flex-grow {
|
|
13652
|
+
flex-grow: 1;
|
|
13653
|
+
}
|
|
13654
|
+
|
|
13655
|
+
.flex-grow-0 {
|
|
13656
|
+
flex-grow: 0;
|
|
13657
|
+
}
|
|
13658
|
+
|
|
13659
|
+
.flex-shrink {
|
|
13660
|
+
flex-shrink: 1;
|
|
13661
|
+
}
|
|
13662
|
+
|
|
13663
|
+
.flex-shrink-0 {
|
|
13664
|
+
flex-shrink: 0;
|
|
13665
|
+
}
|
|
13666
|
+
|
|
13533
13667
|
.overflow-auto {
|
|
13534
13668
|
overflow: auto;
|
|
13535
13669
|
}
|
|
@@ -13565,6 +13699,10 @@ html.font-size-xlarge {
|
|
|
13565
13699
|
overflow-x: overlay;
|
|
13566
13700
|
}
|
|
13567
13701
|
|
|
13702
|
+
.pa-scroll-lock {
|
|
13703
|
+
overflow: hidden !important;
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13568
13706
|
.cursor-pointer {
|
|
13569
13707
|
cursor: pointer;
|
|
13570
13708
|
}
|
|
@@ -13650,14 +13788,6 @@ html.font-size-xlarge {
|
|
|
13650
13788
|
text-align: end;
|
|
13651
13789
|
}
|
|
13652
13790
|
|
|
13653
|
-
.pa-text--left {
|
|
13654
|
-
text-align: start;
|
|
13655
|
-
}
|
|
13656
|
-
|
|
13657
|
-
.pa-text--right {
|
|
13658
|
-
text-align: end;
|
|
13659
|
-
}
|
|
13660
|
-
|
|
13661
13791
|
.pa-text--caption {
|
|
13662
13792
|
font-size: 1.2rem;
|
|
13663
13793
|
color: var(--pa-text-color-2);
|
|
@@ -14183,14 +14313,6 @@ html.font-size-xlarge {
|
|
|
14183
14313
|
text-align: end;
|
|
14184
14314
|
}
|
|
14185
14315
|
|
|
14186
|
-
.text-left {
|
|
14187
|
-
text-align: start;
|
|
14188
|
-
}
|
|
14189
|
-
|
|
14190
|
-
.text-right {
|
|
14191
|
-
text-align: end;
|
|
14192
|
-
}
|
|
14193
|
-
|
|
14194
14316
|
/* Pure Admin Visual Framework - SCSS Variables Only */
|
|
14195
14317
|
/* NOTE: 10px rem base - all rem values are now in 10px units (1rem = 10px) */
|
|
14196
14318
|
.m-0 {
|
|
@@ -15523,18 +15645,10 @@ html.font-size-xlarge {
|
|
|
15523
15645
|
flex-shrink: 1 !important;
|
|
15524
15646
|
}
|
|
15525
15647
|
|
|
15526
|
-
.text-left {
|
|
15527
|
-
text-align: left !important;
|
|
15528
|
-
}
|
|
15529
|
-
|
|
15530
15648
|
.text-center {
|
|
15531
15649
|
text-align: center !important;
|
|
15532
15650
|
}
|
|
15533
15651
|
|
|
15534
|
-
.text-right {
|
|
15535
|
-
text-align: right !important;
|
|
15536
|
-
}
|
|
15537
|
-
|
|
15538
15652
|
.text-nowrap {
|
|
15539
15653
|
white-space: nowrap !important;
|
|
15540
15654
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-express",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Express theme for Pure Admin",
|
|
5
5
|
"style": "dist/express.css",
|
|
6
6
|
"exports": {
|
|
@@ -23,6 +23,15 @@
|
|
|
23
23
|
],
|
|
24
24
|
"author": "KeenMate",
|
|
25
25
|
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/KeenMate/pure-admin.git",
|
|
29
|
+
"directory": "packages/theme-express"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/KeenMate/pure-admin/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/KeenMate/pure-admin#readme",
|
|
26
35
|
"peerDependencies": {
|
|
27
36
|
"@keenmate/pure-admin-core": "^1.0.0"
|
|
28
37
|
},
|