@keenmate/pure-admin-theme-audi 1.4.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/audi.css +41 -65
- package/package.json +1 -1
package/dist/audi.css
CHANGED
|
@@ -269,7 +269,7 @@ body.pa-container-2xl .pa-navbar {
|
|
|
269
269
|
gap: 1.6rem;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
.pa-
|
|
272
|
+
.pa-header__start {
|
|
273
273
|
display: flex;
|
|
274
274
|
align-items: center;
|
|
275
275
|
gap: 1.6rem;
|
|
@@ -284,7 +284,7 @@ body.pa-container-2xl .pa-navbar {
|
|
|
284
284
|
justify-content: center;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
.pa-
|
|
287
|
+
.pa-header__end {
|
|
288
288
|
display: flex;
|
|
289
289
|
align-items: center;
|
|
290
290
|
gap: 1.6rem;
|
|
@@ -386,7 +386,7 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
386
386
|
gap: 1.6rem;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
-
.pa-
|
|
389
|
+
.pa-footer__start {
|
|
390
390
|
display: flex;
|
|
391
391
|
align-items: center;
|
|
392
392
|
gap: 1.6rem;
|
|
@@ -401,14 +401,14 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
401
401
|
justify-content: center;
|
|
402
402
|
}
|
|
403
403
|
|
|
404
|
-
.pa-
|
|
404
|
+
.pa-footer__end {
|
|
405
405
|
display: flex;
|
|
406
406
|
align-items: center;
|
|
407
407
|
gap: 1.6rem;
|
|
408
408
|
flex-shrink: 0;
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
-
.pa-
|
|
411
|
+
.pa-footer__end--vertical {
|
|
412
412
|
flex-direction: column;
|
|
413
413
|
align-items: flex-end;
|
|
414
414
|
gap: 0.4rem;
|
|
@@ -420,22 +420,22 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
420
420
|
min-height: auto;
|
|
421
421
|
padding: 0.8rem 1.6rem;
|
|
422
422
|
}
|
|
423
|
-
.pa-
|
|
423
|
+
.pa-footer__start,
|
|
424
424
|
.pa-footer__center,
|
|
425
|
-
.pa-
|
|
425
|
+
.pa-footer__end {
|
|
426
426
|
flex-shrink: 1;
|
|
427
427
|
min-width: 0;
|
|
428
428
|
}
|
|
429
|
-
.pa-
|
|
429
|
+
.pa-footer__start {
|
|
430
430
|
flex: 1 1 auto;
|
|
431
431
|
}
|
|
432
432
|
.pa-footer__center {
|
|
433
433
|
display: none;
|
|
434
434
|
}
|
|
435
|
-
.pa-
|
|
435
|
+
.pa-footer__end {
|
|
436
436
|
flex: 0 1 auto;
|
|
437
437
|
}
|
|
438
|
-
.pa-
|
|
438
|
+
.pa-footer__end--vertical {
|
|
439
439
|
align-items: flex-end;
|
|
440
440
|
}
|
|
441
441
|
}
|
|
@@ -3589,21 +3589,21 @@ a.pa-card p {
|
|
|
3589
3589
|
background: linear-gradient(to right, var(--pa-main-bg), color-mix(in srgb, var(--pa-main-bg) 80%, transparent));
|
|
3590
3590
|
}
|
|
3591
3591
|
|
|
3592
|
-
.pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3592
|
+
.pa-tabs--scrollable .pa-tabs__scroll-btn--start {
|
|
3593
3593
|
inset-inline-start: 0;
|
|
3594
3594
|
background: linear-gradient(to right, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3595
3595
|
}
|
|
3596
3596
|
|
|
3597
|
-
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3597
|
+
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--start {
|
|
3598
3598
|
background: linear-gradient(to left, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3599
3599
|
}
|
|
3600
3600
|
|
|
3601
|
-
.pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3601
|
+
.pa-tabs--scrollable .pa-tabs__scroll-btn--end {
|
|
3602
3602
|
inset-inline-end: 0;
|
|
3603
3603
|
background: linear-gradient(to left, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3604
3604
|
}
|
|
3605
3605
|
|
|
3606
|
-
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--
|
|
3606
|
+
[dir=rtl] .pa-tabs--scrollable .pa-tabs__scroll-btn--end {
|
|
3607
3607
|
background: linear-gradient(to right, color-mix(in srgb, var(--pa-main-bg) 95%, transparent), transparent);
|
|
3608
3608
|
}
|
|
3609
3609
|
|
|
@@ -5306,19 +5306,19 @@ a.pa-card p {
|
|
|
5306
5306
|
margin: 0;
|
|
5307
5307
|
}
|
|
5308
5308
|
|
|
5309
|
-
.pa-btn--align-
|
|
5309
|
+
.pa-btn--align-start {
|
|
5310
5310
|
justify-content: flex-start;
|
|
5311
5311
|
}
|
|
5312
5312
|
|
|
5313
|
-
.pa-btn--align-
|
|
5313
|
+
.pa-btn--align-start .pa-btn__icon {
|
|
5314
5314
|
padding-inline-start: 0;
|
|
5315
5315
|
}
|
|
5316
5316
|
|
|
5317
|
-
.pa-btn--align-
|
|
5317
|
+
.pa-btn--align-end {
|
|
5318
5318
|
justify-content: flex-end;
|
|
5319
5319
|
}
|
|
5320
5320
|
|
|
5321
|
-
.pa-btn--align-
|
|
5321
|
+
.pa-btn--align-end .pa-btn__icon {
|
|
5322
5322
|
padding-inline-end: 0;
|
|
5323
5323
|
}
|
|
5324
5324
|
|
|
@@ -6341,7 +6341,7 @@ a.pa-card p {
|
|
|
6341
6341
|
text-align: end;
|
|
6342
6342
|
}
|
|
6343
6343
|
|
|
6344
|
-
.pa-popover--
|
|
6344
|
+
.pa-popover--end .pa-popover__body {
|
|
6345
6345
|
text-align: end;
|
|
6346
6346
|
}
|
|
6347
6347
|
|
|
@@ -9421,7 +9421,7 @@ web-multiselect {
|
|
|
9421
9421
|
justify-content: center;
|
|
9422
9422
|
}
|
|
9423
9423
|
|
|
9424
|
-
.pa-pager--
|
|
9424
|
+
.pa-pager--start {
|
|
9425
9425
|
justify-content: flex-start;
|
|
9426
9426
|
}
|
|
9427
9427
|
|
|
@@ -9429,7 +9429,7 @@ web-multiselect {
|
|
|
9429
9429
|
justify-content: center;
|
|
9430
9430
|
}
|
|
9431
9431
|
|
|
9432
|
-
.pa-pager--
|
|
9432
|
+
.pa-pager--end {
|
|
9433
9433
|
justify-content: flex-end;
|
|
9434
9434
|
}
|
|
9435
9435
|
|
|
@@ -9478,7 +9478,7 @@ web-multiselect {
|
|
|
9478
9478
|
justify-content: center;
|
|
9479
9479
|
}
|
|
9480
9480
|
|
|
9481
|
-
.pa-load-more--
|
|
9481
|
+
.pa-load-more--start {
|
|
9482
9482
|
justify-content: flex-start;
|
|
9483
9483
|
}
|
|
9484
9484
|
|
|
@@ -9486,7 +9486,7 @@ web-multiselect {
|
|
|
9486
9486
|
justify-content: center;
|
|
9487
9487
|
}
|
|
9488
9488
|
|
|
9489
|
-
.pa-load-more--
|
|
9489
|
+
.pa-load-more--end {
|
|
9490
9490
|
justify-content: flex-end;
|
|
9491
9491
|
}
|
|
9492
9492
|
|
|
@@ -10046,7 +10046,7 @@ code {
|
|
|
10046
10046
|
justify-content: center;
|
|
10047
10047
|
}
|
|
10048
10048
|
|
|
10049
|
-
.pa-pager--
|
|
10049
|
+
.pa-pager--start {
|
|
10050
10050
|
justify-content: flex-start;
|
|
10051
10051
|
}
|
|
10052
10052
|
|
|
@@ -10054,7 +10054,7 @@ code {
|
|
|
10054
10054
|
justify-content: center;
|
|
10055
10055
|
}
|
|
10056
10056
|
|
|
10057
|
-
.pa-pager--
|
|
10057
|
+
.pa-pager--end {
|
|
10058
10058
|
justify-content: flex-end;
|
|
10059
10059
|
}
|
|
10060
10060
|
|
|
@@ -10103,7 +10103,7 @@ code {
|
|
|
10103
10103
|
justify-content: center;
|
|
10104
10104
|
}
|
|
10105
10105
|
|
|
10106
|
-
.pa-load-more--
|
|
10106
|
+
.pa-load-more--start {
|
|
10107
10107
|
justify-content: flex-start;
|
|
10108
10108
|
}
|
|
10109
10109
|
|
|
@@ -10111,7 +10111,7 @@ code {
|
|
|
10111
10111
|
justify-content: center;
|
|
10112
10112
|
}
|
|
10113
10113
|
|
|
10114
|
-
.pa-load-more--
|
|
10114
|
+
.pa-load-more--end {
|
|
10115
10115
|
justify-content: flex-end;
|
|
10116
10116
|
}
|
|
10117
10117
|
|
|
@@ -11317,73 +11317,73 @@ code {
|
|
|
11317
11317
|
border-radius: 500px 0 0 500px;
|
|
11318
11318
|
}
|
|
11319
11319
|
|
|
11320
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11320
|
+
.pa-timeline--alternating.pa-timeline--start::after {
|
|
11321
11321
|
left: 90px;
|
|
11322
11322
|
}
|
|
11323
11323
|
|
|
11324
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11324
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item {
|
|
11325
11325
|
width: 100%;
|
|
11326
11326
|
padding-left: 120px;
|
|
11327
11327
|
padding-right: 0;
|
|
11328
11328
|
left: 0 !important;
|
|
11329
11329
|
}
|
|
11330
11330
|
|
|
11331
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11331
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item::after {
|
|
11332
11332
|
left: 82px;
|
|
11333
11333
|
}
|
|
11334
11334
|
|
|
11335
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11335
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item::before {
|
|
11336
11336
|
left: 100px;
|
|
11337
11337
|
}
|
|
11338
11338
|
|
|
11339
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11339
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__date {
|
|
11340
11340
|
right: auto;
|
|
11341
11341
|
left: 15px;
|
|
11342
11342
|
}
|
|
11343
11343
|
|
|
11344
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11344
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__icon {
|
|
11345
11345
|
right: auto;
|
|
11346
11346
|
left: 146px;
|
|
11347
11347
|
}
|
|
11348
11348
|
|
|
11349
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11349
|
+
.pa-timeline--alternating.pa-timeline--start .pa-timeline__item .pa-timeline__content {
|
|
11350
11350
|
padding: 3.2rem 3.2rem 3.2rem calc(6.4rem + 40px);
|
|
11351
11351
|
border-radius: 500px 0 0 500px;
|
|
11352
11352
|
}
|
|
11353
11353
|
|
|
11354
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11354
|
+
.pa-timeline--alternating.pa-timeline--end::after {
|
|
11355
11355
|
right: 90px;
|
|
11356
11356
|
left: auto;
|
|
11357
11357
|
}
|
|
11358
11358
|
|
|
11359
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11359
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item {
|
|
11360
11360
|
width: 100%;
|
|
11361
11361
|
padding-left: 0;
|
|
11362
11362
|
padding-right: 120px;
|
|
11363
11363
|
left: 0 !important;
|
|
11364
11364
|
}
|
|
11365
11365
|
|
|
11366
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11366
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item::after {
|
|
11367
11367
|
right: 82px;
|
|
11368
11368
|
left: auto;
|
|
11369
11369
|
}
|
|
11370
11370
|
|
|
11371
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11371
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item::before {
|
|
11372
11372
|
right: 100px;
|
|
11373
11373
|
left: auto;
|
|
11374
11374
|
}
|
|
11375
11375
|
|
|
11376
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11376
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__date {
|
|
11377
11377
|
left: auto;
|
|
11378
11378
|
right: 15px;
|
|
11379
11379
|
}
|
|
11380
11380
|
|
|
11381
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11381
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__icon {
|
|
11382
11382
|
left: auto;
|
|
11383
11383
|
right: 146px;
|
|
11384
11384
|
}
|
|
11385
11385
|
|
|
11386
|
-
.pa-timeline--alternating.pa-timeline--
|
|
11386
|
+
.pa-timeline--alternating.pa-timeline--end .pa-timeline__item .pa-timeline__content {
|
|
11387
11387
|
padding: 3.2rem calc(6.4rem + 40px) 3.2rem 3.2rem;
|
|
11388
11388
|
border-radius: 0 500px 500px 0;
|
|
11389
11389
|
}
|
|
@@ -13789,14 +13789,6 @@ html.font-size-xlarge {
|
|
|
13789
13789
|
text-align: end;
|
|
13790
13790
|
}
|
|
13791
13791
|
|
|
13792
|
-
.pa-text--left {
|
|
13793
|
-
text-align: start;
|
|
13794
|
-
}
|
|
13795
|
-
|
|
13796
|
-
.pa-text--right {
|
|
13797
|
-
text-align: end;
|
|
13798
|
-
}
|
|
13799
|
-
|
|
13800
13792
|
.pa-text--caption {
|
|
13801
13793
|
font-size: 1.2rem;
|
|
13802
13794
|
color: var(--pa-text-color-2);
|
|
@@ -14322,14 +14314,6 @@ html.font-size-xlarge {
|
|
|
14322
14314
|
text-align: end;
|
|
14323
14315
|
}
|
|
14324
14316
|
|
|
14325
|
-
.text-left {
|
|
14326
|
-
text-align: start;
|
|
14327
|
-
}
|
|
14328
|
-
|
|
14329
|
-
.text-right {
|
|
14330
|
-
text-align: end;
|
|
14331
|
-
}
|
|
14332
|
-
|
|
14333
14317
|
/* Pure Admin Visual Framework - SCSS Variables Only */
|
|
14334
14318
|
/* NOTE: 10px rem base - all rem values are now in 10px units (1rem = 10px) */
|
|
14335
14319
|
.m-0 {
|
|
@@ -15662,18 +15646,10 @@ html.font-size-xlarge {
|
|
|
15662
15646
|
flex-shrink: 1 !important;
|
|
15663
15647
|
}
|
|
15664
15648
|
|
|
15665
|
-
.text-left {
|
|
15666
|
-
text-align: left !important;
|
|
15667
|
-
}
|
|
15668
|
-
|
|
15669
15649
|
.text-center {
|
|
15670
15650
|
text-align: center !important;
|
|
15671
15651
|
}
|
|
15672
15652
|
|
|
15673
|
-
.text-right {
|
|
15674
|
-
text-align: right !important;
|
|
15675
|
-
}
|
|
15676
|
-
|
|
15677
15653
|
.text-nowrap {
|
|
15678
15654
|
white-space: nowrap !important;
|
|
15679
15655
|
}
|