@keenmate/pure-admin-theme-corporate 1.0.0-rc06 → 1.0.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/corporate.css +532 -20
- package/package.json +3 -3
- package/src/scss/corporate.scss +6 -0
package/dist/corporate.css
CHANGED
|
@@ -119,18 +119,17 @@ label {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
*::-webkit-scrollbar-thumb {
|
|
122
|
-
background:
|
|
122
|
+
background: var(--pa-border-color);
|
|
123
123
|
border-radius: 3px;
|
|
124
124
|
border: 1px solid var(--pa-primary-bg);
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
*::-webkit-scrollbar-thumb:hover {
|
|
128
|
-
background:
|
|
129
|
-
border-color: rgba(14, 165, 233, 0.08);
|
|
128
|
+
background: var(--pa-accent);
|
|
130
129
|
}
|
|
131
130
|
|
|
132
131
|
*::-webkit-scrollbar-thumb:active {
|
|
133
|
-
background:
|
|
132
|
+
background: var(--pa-accent-hover);
|
|
134
133
|
}
|
|
135
134
|
|
|
136
135
|
*::-webkit-scrollbar-corner {
|
|
@@ -361,19 +360,90 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
361
360
|
gap: 0.4rem;
|
|
362
361
|
}
|
|
363
362
|
|
|
363
|
+
@media (max-width: 768px) {
|
|
364
|
+
.pa-layout__footer {
|
|
365
|
+
flex-wrap: wrap;
|
|
366
|
+
min-height: auto;
|
|
367
|
+
padding: 0.8rem 1.6rem;
|
|
368
|
+
}
|
|
369
|
+
.pa-footer__left,
|
|
370
|
+
.pa-footer__center,
|
|
371
|
+
.pa-footer__right {
|
|
372
|
+
flex-shrink: 1;
|
|
373
|
+
min-width: 0;
|
|
374
|
+
}
|
|
375
|
+
.pa-footer__left {
|
|
376
|
+
flex: 1 1 auto;
|
|
377
|
+
}
|
|
378
|
+
.pa-footer__center {
|
|
379
|
+
display: none;
|
|
380
|
+
}
|
|
381
|
+
.pa-footer__right {
|
|
382
|
+
flex: 0 1 auto;
|
|
383
|
+
}
|
|
384
|
+
.pa-footer__right--vertical {
|
|
385
|
+
align-items: flex-end;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
364
388
|
/* ========================================
|
|
365
389
|
Sidebar Component
|
|
366
390
|
Sidebar navigation with nested submenus
|
|
367
391
|
======================================== */
|
|
392
|
+
:root {
|
|
393
|
+
--pa-sidebar-width: 29rem;
|
|
394
|
+
--pa-sidebar-min-width: 18rem;
|
|
395
|
+
--pa-sidebar-max-width: 50rem;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
:where(.pa-layout__sidebar) {
|
|
399
|
+
width: var(--pa-sidebar-width);
|
|
400
|
+
}
|
|
401
|
+
|
|
368
402
|
.pa-layout__sidebar {
|
|
369
|
-
width: 29rem;
|
|
370
403
|
background-color: var(--pa-sidebar-bg);
|
|
371
404
|
border-right: 1px solid var(--pa-border-color);
|
|
372
405
|
flex-shrink: 0;
|
|
406
|
+
position: relative;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.pa-sidebar-resize {
|
|
410
|
+
position: absolute;
|
|
411
|
+
top: 0;
|
|
412
|
+
right: 0;
|
|
413
|
+
width: 6px;
|
|
414
|
+
height: 100%;
|
|
415
|
+
cursor: ew-resize;
|
|
416
|
+
z-index: 100;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.pa-sidebar-resize::after {
|
|
420
|
+
content: "";
|
|
421
|
+
position: absolute;
|
|
422
|
+
top: 0;
|
|
423
|
+
left: 50%;
|
|
424
|
+
transform: translateX(-50%);
|
|
425
|
+
width: 2px;
|
|
426
|
+
height: 100%;
|
|
427
|
+
background-color: transparent;
|
|
428
|
+
transition: background-color 0.1s ease-out;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.pa-sidebar-resize:hover::after, .pa-sidebar-resize--active::after {
|
|
432
|
+
background-color: var(--pa-accent);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
body.pa-sidebar-resizing {
|
|
436
|
+
cursor: ew-resize !important;
|
|
437
|
+
user-select: none;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
body.pa-sidebar-resizing * {
|
|
441
|
+
cursor: ew-resize !important;
|
|
373
442
|
}
|
|
374
443
|
|
|
375
444
|
body.pa-layout--sticky .pa-layout__sidebar {
|
|
376
445
|
overflow-y: auto;
|
|
446
|
+
overflow-y: overlay;
|
|
377
447
|
overflow-x: visible;
|
|
378
448
|
}
|
|
379
449
|
|
|
@@ -2498,6 +2568,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2498
2568
|
padding-bottom: 0;
|
|
2499
2569
|
}
|
|
2500
2570
|
|
|
2571
|
+
@media (max-width: 768px) {
|
|
2572
|
+
.pa-col-5 {
|
|
2573
|
+
flex: 0 0 100%;
|
|
2574
|
+
max-width: 100%;
|
|
2575
|
+
}
|
|
2576
|
+
.pa-col-10 {
|
|
2577
|
+
flex: 0 0 100%;
|
|
2578
|
+
max-width: 100%;
|
|
2579
|
+
}
|
|
2580
|
+
.pa-col-15 {
|
|
2581
|
+
flex: 0 0 100%;
|
|
2582
|
+
max-width: 100%;
|
|
2583
|
+
}
|
|
2584
|
+
.pa-col-20 {
|
|
2585
|
+
flex: 0 0 100%;
|
|
2586
|
+
max-width: 100%;
|
|
2587
|
+
}
|
|
2588
|
+
.pa-col-25 {
|
|
2589
|
+
flex: 0 0 100%;
|
|
2590
|
+
max-width: 100%;
|
|
2591
|
+
}
|
|
2592
|
+
.pa-col-30 {
|
|
2593
|
+
flex: 0 0 100%;
|
|
2594
|
+
max-width: 100%;
|
|
2595
|
+
}
|
|
2596
|
+
.pa-col-35 {
|
|
2597
|
+
flex: 0 0 100%;
|
|
2598
|
+
max-width: 100%;
|
|
2599
|
+
}
|
|
2600
|
+
.pa-col-40 {
|
|
2601
|
+
flex: 0 0 100%;
|
|
2602
|
+
max-width: 100%;
|
|
2603
|
+
}
|
|
2604
|
+
.pa-col-45 {
|
|
2605
|
+
flex: 0 0 100%;
|
|
2606
|
+
max-width: 100%;
|
|
2607
|
+
}
|
|
2608
|
+
.pa-col-50 {
|
|
2609
|
+
flex: 0 0 100%;
|
|
2610
|
+
max-width: 100%;
|
|
2611
|
+
}
|
|
2612
|
+
.pa-col-55 {
|
|
2613
|
+
flex: 0 0 100%;
|
|
2614
|
+
max-width: 100%;
|
|
2615
|
+
}
|
|
2616
|
+
.pa-col-60 {
|
|
2617
|
+
flex: 0 0 100%;
|
|
2618
|
+
max-width: 100%;
|
|
2619
|
+
}
|
|
2620
|
+
.pa-col-65 {
|
|
2621
|
+
flex: 0 0 100%;
|
|
2622
|
+
max-width: 100%;
|
|
2623
|
+
}
|
|
2624
|
+
.pa-col-70 {
|
|
2625
|
+
flex: 0 0 100%;
|
|
2626
|
+
max-width: 100%;
|
|
2627
|
+
}
|
|
2628
|
+
.pa-col-75 {
|
|
2629
|
+
flex: 0 0 100%;
|
|
2630
|
+
max-width: 100%;
|
|
2631
|
+
}
|
|
2632
|
+
.pa-col-80 {
|
|
2633
|
+
flex: 0 0 100%;
|
|
2634
|
+
max-width: 100%;
|
|
2635
|
+
}
|
|
2636
|
+
.pa-col-85 {
|
|
2637
|
+
flex: 0 0 100%;
|
|
2638
|
+
max-width: 100%;
|
|
2639
|
+
}
|
|
2640
|
+
.pa-col-90 {
|
|
2641
|
+
flex: 0 0 100%;
|
|
2642
|
+
max-width: 100%;
|
|
2643
|
+
}
|
|
2644
|
+
.pa-col-95 {
|
|
2645
|
+
flex: 0 0 100%;
|
|
2646
|
+
max-width: 100%;
|
|
2647
|
+
}
|
|
2648
|
+
.pa-col-1-2 {
|
|
2649
|
+
flex: 0 0 100%;
|
|
2650
|
+
max-width: 100%;
|
|
2651
|
+
}
|
|
2652
|
+
.pa-col-1-3 {
|
|
2653
|
+
flex: 0 0 100%;
|
|
2654
|
+
max-width: 100%;
|
|
2655
|
+
}
|
|
2656
|
+
.pa-col-2-3 {
|
|
2657
|
+
flex: 0 0 100%;
|
|
2658
|
+
max-width: 100%;
|
|
2659
|
+
}
|
|
2660
|
+
.pa-col-1-4 {
|
|
2661
|
+
flex: 0 0 100%;
|
|
2662
|
+
max-width: 100%;
|
|
2663
|
+
}
|
|
2664
|
+
.pa-col-3-4 {
|
|
2665
|
+
flex: 0 0 100%;
|
|
2666
|
+
max-width: 100%;
|
|
2667
|
+
}
|
|
2668
|
+
.pa-col-1-5 {
|
|
2669
|
+
flex: 0 0 100%;
|
|
2670
|
+
max-width: 100%;
|
|
2671
|
+
}
|
|
2672
|
+
.pa-col-2-5 {
|
|
2673
|
+
flex: 0 0 100%;
|
|
2674
|
+
max-width: 100%;
|
|
2675
|
+
}
|
|
2676
|
+
.pa-col-3-5 {
|
|
2677
|
+
flex: 0 0 100%;
|
|
2678
|
+
max-width: 100%;
|
|
2679
|
+
}
|
|
2680
|
+
.pa-col-4-5 {
|
|
2681
|
+
flex: 0 0 100%;
|
|
2682
|
+
max-width: 100%;
|
|
2683
|
+
}
|
|
2684
|
+
.pa-col-1-6 {
|
|
2685
|
+
flex: 0 0 100%;
|
|
2686
|
+
max-width: 100%;
|
|
2687
|
+
}
|
|
2688
|
+
.pa-col-5-6 {
|
|
2689
|
+
flex: 0 0 100%;
|
|
2690
|
+
max-width: 100%;
|
|
2691
|
+
}
|
|
2692
|
+
.pa-col-1-12 {
|
|
2693
|
+
flex: 0 0 100%;
|
|
2694
|
+
max-width: 100%;
|
|
2695
|
+
}
|
|
2696
|
+
.pa-col-5-12 {
|
|
2697
|
+
flex: 0 0 100%;
|
|
2698
|
+
max-width: 100%;
|
|
2699
|
+
}
|
|
2700
|
+
.pa-col-7-12 {
|
|
2701
|
+
flex: 0 0 100%;
|
|
2702
|
+
max-width: 100%;
|
|
2703
|
+
}
|
|
2704
|
+
.pa-col-11-12 {
|
|
2705
|
+
flex: 0 0 100%;
|
|
2706
|
+
max-width: 100%;
|
|
2707
|
+
}
|
|
2708
|
+
}
|
|
2501
2709
|
/* ========================================
|
|
2502
2710
|
Card Components
|
|
2503
2711
|
Cards with headers, bodies, footers, variants, and card sections
|
|
@@ -6427,10 +6635,11 @@ a.pa-card p {
|
|
|
6427
6635
|
.pa-input-group__prepend, .pa-input-group__append {
|
|
6428
6636
|
display: flex;
|
|
6429
6637
|
align-items: center;
|
|
6430
|
-
|
|
6638
|
+
height: 3.5rem;
|
|
6639
|
+
line-height: 3.5rem;
|
|
6640
|
+
padding: 0 0.8rem;
|
|
6431
6641
|
border: 1px solid var(--pa-border-color);
|
|
6432
6642
|
font-size: 1.4rem;
|
|
6433
|
-
line-height: 1;
|
|
6434
6643
|
white-space: nowrap;
|
|
6435
6644
|
border-radius: 0;
|
|
6436
6645
|
}
|
|
@@ -6465,32 +6674,29 @@ a.pa-card p {
|
|
|
6465
6674
|
border-left: 1px solid var(--pa-border-color);
|
|
6466
6675
|
}
|
|
6467
6676
|
|
|
6468
|
-
.pa-input-group:focus
|
|
6677
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
|
|
6469
6678
|
border-right: 1px solid var(--pa-input-focus-border-color);
|
|
6470
6679
|
}
|
|
6471
6680
|
|
|
6472
|
-
.pa-input-group:focus
|
|
6681
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
|
|
6473
6682
|
border-right: none;
|
|
6474
6683
|
}
|
|
6475
6684
|
|
|
6476
|
-
.pa-input-group:focus
|
|
6685
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append {
|
|
6477
6686
|
border-left: 1px solid var(--pa-input-focus-border-color);
|
|
6478
6687
|
}
|
|
6479
6688
|
|
|
6480
|
-
.pa-input-group:focus
|
|
6689
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
|
|
6481
6690
|
border-left: 1px solid var(--pa-border-color);
|
|
6482
6691
|
}
|
|
6483
6692
|
|
|
6484
6693
|
.pa-input-group__button {
|
|
6485
6694
|
border-radius: 0;
|
|
6486
|
-
border-color: var(--pa-border-color);
|
|
6487
|
-
border-left: none;
|
|
6488
6695
|
}
|
|
6489
6696
|
|
|
6490
6697
|
.pa-input-group__button:first-child {
|
|
6491
6698
|
border-top-left-radius: 4px;
|
|
6492
6699
|
border-bottom-left-radius: 4px;
|
|
6493
|
-
border-left: 1px solid var(--pa-border-color);
|
|
6494
6700
|
}
|
|
6495
6701
|
|
|
6496
6702
|
.pa-input-group__button:last-child {
|
|
@@ -6500,25 +6706,29 @@ a.pa-card p {
|
|
|
6500
6706
|
|
|
6501
6707
|
.pa-input-group--xs .pa-input-group__prepend,
|
|
6502
6708
|
.pa-input-group--xs .pa-input-group__append {
|
|
6503
|
-
|
|
6709
|
+
height: 3.1rem;
|
|
6710
|
+
line-height: 3.1rem;
|
|
6504
6711
|
font-size: 1.2rem;
|
|
6505
6712
|
}
|
|
6506
6713
|
|
|
6507
6714
|
.pa-input-group--sm .pa-input-group__prepend,
|
|
6508
6715
|
.pa-input-group--sm .pa-input-group__append {
|
|
6509
|
-
|
|
6716
|
+
height: 3.3rem;
|
|
6717
|
+
line-height: 3.3rem;
|
|
6510
6718
|
font-size: 1.4rem;
|
|
6511
6719
|
}
|
|
6512
6720
|
|
|
6513
6721
|
.pa-input-group--lg .pa-input-group__prepend,
|
|
6514
6722
|
.pa-input-group--lg .pa-input-group__append {
|
|
6515
|
-
|
|
6723
|
+
height: 3.8rem;
|
|
6724
|
+
line-height: 3.8rem;
|
|
6516
6725
|
font-size: 1.6rem;
|
|
6517
6726
|
}
|
|
6518
6727
|
|
|
6519
6728
|
.pa-input-group--xl .pa-input-group__prepend,
|
|
6520
6729
|
.pa-input-group--xl .pa-input-group__append {
|
|
6521
|
-
|
|
6730
|
+
height: 4.1rem;
|
|
6731
|
+
line-height: 4.1rem;
|
|
6522
6732
|
font-size: 1.8rem;
|
|
6523
6733
|
}
|
|
6524
6734
|
|
|
@@ -9180,6 +9390,16 @@ code {
|
|
|
9180
9390
|
Profile Panel Components
|
|
9181
9391
|
Profile panel and header button
|
|
9182
9392
|
======================================== */
|
|
9393
|
+
:root {
|
|
9394
|
+
--pa-profile-panel-width: 20vw;
|
|
9395
|
+
--pa-profile-panel-max-width: 48rem;
|
|
9396
|
+
}
|
|
9397
|
+
|
|
9398
|
+
:where(.pa-profile-panel__content) {
|
|
9399
|
+
width: var(--pa-profile-panel-width);
|
|
9400
|
+
max-width: var(--pa-profile-panel-max-width);
|
|
9401
|
+
}
|
|
9402
|
+
|
|
9183
9403
|
.pa-header__profile-btn {
|
|
9184
9404
|
display: flex;
|
|
9185
9405
|
align-items: center;
|
|
@@ -9243,8 +9463,6 @@ code {
|
|
|
9243
9463
|
position: absolute;
|
|
9244
9464
|
top: 0;
|
|
9245
9465
|
right: 0;
|
|
9246
|
-
width: 20vw;
|
|
9247
|
-
max-width: 48rem;
|
|
9248
9466
|
height: 100vh;
|
|
9249
9467
|
background-color: var(--pa-card-bg);
|
|
9250
9468
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
|
|
@@ -11455,6 +11673,60 @@ code {
|
|
|
11455
11673
|
right: -1.6rem;
|
|
11456
11674
|
}
|
|
11457
11675
|
}
|
|
11676
|
+
.pa-notifications__list--page {
|
|
11677
|
+
max-height: none;
|
|
11678
|
+
overflow: visible;
|
|
11679
|
+
}
|
|
11680
|
+
|
|
11681
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11682
|
+
padding: 1.6rem 2.4rem;
|
|
11683
|
+
}
|
|
11684
|
+
|
|
11685
|
+
.pa-notifications__list--page .pa-notifications__icon-wrapper {
|
|
11686
|
+
width: 4rem;
|
|
11687
|
+
height: 4rem;
|
|
11688
|
+
font-size: 1.8rem;
|
|
11689
|
+
}
|
|
11690
|
+
|
|
11691
|
+
.pa-notifications__list--page .pa-notifications__content h4 {
|
|
11692
|
+
font-size: 1.4rem;
|
|
11693
|
+
margin-bottom: 0.4rem;
|
|
11694
|
+
}
|
|
11695
|
+
|
|
11696
|
+
.pa-notifications__list--page .pa-notifications__content p {
|
|
11697
|
+
font-size: 1.4rem;
|
|
11698
|
+
-webkit-line-clamp: 3;
|
|
11699
|
+
}
|
|
11700
|
+
|
|
11701
|
+
.pa-notifications__list--page .pa-notifications__time {
|
|
11702
|
+
font-size: 1.2rem;
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11705
|
+
.pa-notifications__actions {
|
|
11706
|
+
display: flex;
|
|
11707
|
+
gap: 0.4rem;
|
|
11708
|
+
flex-shrink: 0;
|
|
11709
|
+
opacity: 0;
|
|
11710
|
+
transition: opacity 0.1s ease-out;
|
|
11711
|
+
}
|
|
11712
|
+
|
|
11713
|
+
.pa-notifications__item:hover .pa-notifications__actions {
|
|
11714
|
+
opacity: 1;
|
|
11715
|
+
}
|
|
11716
|
+
|
|
11717
|
+
@media (max-width: 768px) {
|
|
11718
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
11719
|
+
flex-wrap: wrap;
|
|
11720
|
+
}
|
|
11721
|
+
.pa-notifications__list--page .pa-notifications__actions {
|
|
11722
|
+
opacity: 1;
|
|
11723
|
+
width: 100%;
|
|
11724
|
+
justify-content: flex-end;
|
|
11725
|
+
margin-top: 0.8rem;
|
|
11726
|
+
padding-top: 0.8rem;
|
|
11727
|
+
border-top: 1px solid var(--pa-border-color);
|
|
11728
|
+
}
|
|
11729
|
+
}
|
|
11458
11730
|
/* ========================================
|
|
11459
11731
|
Popconfirm Component
|
|
11460
11732
|
Small confirmation dialog anchored to trigger button
|
|
@@ -11946,6 +12218,21 @@ html.font-size-4xl {
|
|
|
11946
12218
|
overflow: visible;
|
|
11947
12219
|
}
|
|
11948
12220
|
|
|
12221
|
+
.overflow-overlay {
|
|
12222
|
+
overflow: auto;
|
|
12223
|
+
overflow: overlay;
|
|
12224
|
+
}
|
|
12225
|
+
|
|
12226
|
+
.overflow-y-overlay {
|
|
12227
|
+
overflow-y: auto;
|
|
12228
|
+
overflow-y: overlay;
|
|
12229
|
+
}
|
|
12230
|
+
|
|
12231
|
+
.overflow-x-overlay {
|
|
12232
|
+
overflow-x: auto;
|
|
12233
|
+
overflow-x: overlay;
|
|
12234
|
+
}
|
|
12235
|
+
|
|
11949
12236
|
.cursor-pointer {
|
|
11950
12237
|
cursor: pointer;
|
|
11951
12238
|
}
|
|
@@ -12226,6 +12513,12 @@ html.font-size-4xl {
|
|
|
12226
12513
|
font-size: 3.2rem;
|
|
12227
12514
|
}
|
|
12228
12515
|
|
|
12516
|
+
.text-truncate {
|
|
12517
|
+
overflow: hidden;
|
|
12518
|
+
text-overflow: ellipsis;
|
|
12519
|
+
white-space: nowrap;
|
|
12520
|
+
}
|
|
12521
|
+
|
|
12229
12522
|
.component-showcase {
|
|
12230
12523
|
display: flex;
|
|
12231
12524
|
flex-wrap: wrap;
|
|
@@ -13333,6 +13626,10 @@ html.font-size-4xl {
|
|
|
13333
13626
|
width: auto !important;
|
|
13334
13627
|
}
|
|
13335
13628
|
|
|
13629
|
+
.w-1-2 {
|
|
13630
|
+
width: 50% !important;
|
|
13631
|
+
}
|
|
13632
|
+
|
|
13336
13633
|
.w-1-3 {
|
|
13337
13634
|
width: 33.333333% !important;
|
|
13338
13635
|
}
|
|
@@ -13341,6 +13638,14 @@ html.font-size-4xl {
|
|
|
13341
13638
|
width: 66.666667% !important;
|
|
13342
13639
|
}
|
|
13343
13640
|
|
|
13641
|
+
.w-1-4 {
|
|
13642
|
+
width: 25% !important;
|
|
13643
|
+
}
|
|
13644
|
+
|
|
13645
|
+
.w-3-4 {
|
|
13646
|
+
width: 75% !important;
|
|
13647
|
+
}
|
|
13648
|
+
|
|
13344
13649
|
.mw-25 {
|
|
13345
13650
|
min-width: 25% !important;
|
|
13346
13651
|
}
|
|
@@ -13361,6 +13666,10 @@ html.font-size-4xl {
|
|
|
13361
13666
|
min-width: auto !important;
|
|
13362
13667
|
}
|
|
13363
13668
|
|
|
13669
|
+
.mw-1-2 {
|
|
13670
|
+
min-width: 50% !important;
|
|
13671
|
+
}
|
|
13672
|
+
|
|
13364
13673
|
.mw-1-3 {
|
|
13365
13674
|
min-width: 33.333333% !important;
|
|
13366
13675
|
}
|
|
@@ -13369,6 +13678,14 @@ html.font-size-4xl {
|
|
|
13369
13678
|
min-width: 66.666667% !important;
|
|
13370
13679
|
}
|
|
13371
13680
|
|
|
13681
|
+
.mw-1-4 {
|
|
13682
|
+
min-width: 25% !important;
|
|
13683
|
+
}
|
|
13684
|
+
|
|
13685
|
+
.mw-3-4 {
|
|
13686
|
+
min-width: 75% !important;
|
|
13687
|
+
}
|
|
13688
|
+
|
|
13372
13689
|
.w-25-fixed {
|
|
13373
13690
|
min-width: 25% !important;
|
|
13374
13691
|
width: 25% !important;
|
|
@@ -13389,6 +13706,11 @@ html.font-size-4xl {
|
|
|
13389
13706
|
width: 100% !important;
|
|
13390
13707
|
}
|
|
13391
13708
|
|
|
13709
|
+
.w-1-2-fixed {
|
|
13710
|
+
min-width: 50% !important;
|
|
13711
|
+
width: 50% !important;
|
|
13712
|
+
}
|
|
13713
|
+
|
|
13392
13714
|
.w-1-3-fixed {
|
|
13393
13715
|
min-width: 33.333333% !important;
|
|
13394
13716
|
width: 33.333333% !important;
|
|
@@ -13399,6 +13721,16 @@ html.font-size-4xl {
|
|
|
13399
13721
|
width: 66.666667% !important;
|
|
13400
13722
|
}
|
|
13401
13723
|
|
|
13724
|
+
.w-1-4-fixed {
|
|
13725
|
+
min-width: 25% !important;
|
|
13726
|
+
width: 25% !important;
|
|
13727
|
+
}
|
|
13728
|
+
|
|
13729
|
+
.w-3-4-fixed {
|
|
13730
|
+
min-width: 75% !important;
|
|
13731
|
+
width: 75% !important;
|
|
13732
|
+
}
|
|
13733
|
+
|
|
13402
13734
|
.h-25 {
|
|
13403
13735
|
height: 25% !important;
|
|
13404
13736
|
}
|
|
@@ -13419,6 +13751,26 @@ html.font-size-4xl {
|
|
|
13419
13751
|
height: auto !important;
|
|
13420
13752
|
}
|
|
13421
13753
|
|
|
13754
|
+
.h-1-2 {
|
|
13755
|
+
height: 50% !important;
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
.h-1-3 {
|
|
13759
|
+
height: 33.333333% !important;
|
|
13760
|
+
}
|
|
13761
|
+
|
|
13762
|
+
.h-2-3 {
|
|
13763
|
+
height: 66.666667% !important;
|
|
13764
|
+
}
|
|
13765
|
+
|
|
13766
|
+
.h-1-4 {
|
|
13767
|
+
height: 25% !important;
|
|
13768
|
+
}
|
|
13769
|
+
|
|
13770
|
+
.h-3-4 {
|
|
13771
|
+
height: 75% !important;
|
|
13772
|
+
}
|
|
13773
|
+
|
|
13422
13774
|
.wr-1 {
|
|
13423
13775
|
width: 1rem !important;
|
|
13424
13776
|
}
|
|
@@ -13471,6 +13823,26 @@ html.font-size-4xl {
|
|
|
13471
13823
|
width: 25rem !important;
|
|
13472
13824
|
}
|
|
13473
13825
|
|
|
13826
|
+
.wr-30 {
|
|
13827
|
+
width: 30rem !important;
|
|
13828
|
+
}
|
|
13829
|
+
|
|
13830
|
+
.wr-35 {
|
|
13831
|
+
width: 35rem !important;
|
|
13832
|
+
}
|
|
13833
|
+
|
|
13834
|
+
.wr-40 {
|
|
13835
|
+
width: 40rem !important;
|
|
13836
|
+
}
|
|
13837
|
+
|
|
13838
|
+
.wr-45 {
|
|
13839
|
+
width: 45rem !important;
|
|
13840
|
+
}
|
|
13841
|
+
|
|
13842
|
+
.wr-50 {
|
|
13843
|
+
width: 50rem !important;
|
|
13844
|
+
}
|
|
13845
|
+
|
|
13474
13846
|
.minwr-1 {
|
|
13475
13847
|
min-width: 1rem !important;
|
|
13476
13848
|
}
|
|
@@ -13523,6 +13895,26 @@ html.font-size-4xl {
|
|
|
13523
13895
|
min-width: 25rem !important;
|
|
13524
13896
|
}
|
|
13525
13897
|
|
|
13898
|
+
.minwr-30 {
|
|
13899
|
+
min-width: 30rem !important;
|
|
13900
|
+
}
|
|
13901
|
+
|
|
13902
|
+
.minwr-35 {
|
|
13903
|
+
min-width: 35rem !important;
|
|
13904
|
+
}
|
|
13905
|
+
|
|
13906
|
+
.minwr-40 {
|
|
13907
|
+
min-width: 40rem !important;
|
|
13908
|
+
}
|
|
13909
|
+
|
|
13910
|
+
.minwr-45 {
|
|
13911
|
+
min-width: 45rem !important;
|
|
13912
|
+
}
|
|
13913
|
+
|
|
13914
|
+
.minwr-50 {
|
|
13915
|
+
min-width: 50rem !important;
|
|
13916
|
+
}
|
|
13917
|
+
|
|
13526
13918
|
.maxwr-1 {
|
|
13527
13919
|
max-width: 1rem !important;
|
|
13528
13920
|
}
|
|
@@ -13575,6 +13967,26 @@ html.font-size-4xl {
|
|
|
13575
13967
|
max-width: 25rem !important;
|
|
13576
13968
|
}
|
|
13577
13969
|
|
|
13970
|
+
.maxwr-30 {
|
|
13971
|
+
max-width: 30rem !important;
|
|
13972
|
+
}
|
|
13973
|
+
|
|
13974
|
+
.maxwr-35 {
|
|
13975
|
+
max-width: 35rem !important;
|
|
13976
|
+
}
|
|
13977
|
+
|
|
13978
|
+
.maxwr-40 {
|
|
13979
|
+
max-width: 40rem !important;
|
|
13980
|
+
}
|
|
13981
|
+
|
|
13982
|
+
.maxwr-45 {
|
|
13983
|
+
max-width: 45rem !important;
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
.maxwr-50 {
|
|
13987
|
+
max-width: 50rem !important;
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13578
13990
|
.hr-1 {
|
|
13579
13991
|
height: 1rem !important;
|
|
13580
13992
|
}
|
|
@@ -13627,6 +14039,26 @@ html.font-size-4xl {
|
|
|
13627
14039
|
height: 25rem !important;
|
|
13628
14040
|
}
|
|
13629
14041
|
|
|
14042
|
+
.hr-30 {
|
|
14043
|
+
height: 30rem !important;
|
|
14044
|
+
}
|
|
14045
|
+
|
|
14046
|
+
.hr-35 {
|
|
14047
|
+
height: 35rem !important;
|
|
14048
|
+
}
|
|
14049
|
+
|
|
14050
|
+
.hr-40 {
|
|
14051
|
+
height: 40rem !important;
|
|
14052
|
+
}
|
|
14053
|
+
|
|
14054
|
+
.hr-45 {
|
|
14055
|
+
height: 45rem !important;
|
|
14056
|
+
}
|
|
14057
|
+
|
|
14058
|
+
.hr-50 {
|
|
14059
|
+
height: 50rem !important;
|
|
14060
|
+
}
|
|
14061
|
+
|
|
13630
14062
|
.minhr-1 {
|
|
13631
14063
|
min-height: 1rem !important;
|
|
13632
14064
|
}
|
|
@@ -13679,6 +14111,26 @@ html.font-size-4xl {
|
|
|
13679
14111
|
min-height: 25rem !important;
|
|
13680
14112
|
}
|
|
13681
14113
|
|
|
14114
|
+
.minhr-30 {
|
|
14115
|
+
min-height: 30rem !important;
|
|
14116
|
+
}
|
|
14117
|
+
|
|
14118
|
+
.minhr-35 {
|
|
14119
|
+
min-height: 35rem !important;
|
|
14120
|
+
}
|
|
14121
|
+
|
|
14122
|
+
.minhr-40 {
|
|
14123
|
+
min-height: 40rem !important;
|
|
14124
|
+
}
|
|
14125
|
+
|
|
14126
|
+
.minhr-45 {
|
|
14127
|
+
min-height: 45rem !important;
|
|
14128
|
+
}
|
|
14129
|
+
|
|
14130
|
+
.minhr-50 {
|
|
14131
|
+
min-height: 50rem !important;
|
|
14132
|
+
}
|
|
14133
|
+
|
|
13682
14134
|
.maxhr-1 {
|
|
13683
14135
|
max-height: 1rem !important;
|
|
13684
14136
|
}
|
|
@@ -13731,6 +14183,26 @@ html.font-size-4xl {
|
|
|
13731
14183
|
max-height: 25rem !important;
|
|
13732
14184
|
}
|
|
13733
14185
|
|
|
14186
|
+
.maxhr-30 {
|
|
14187
|
+
max-height: 30rem !important;
|
|
14188
|
+
}
|
|
14189
|
+
|
|
14190
|
+
.maxhr-35 {
|
|
14191
|
+
max-height: 35rem !important;
|
|
14192
|
+
}
|
|
14193
|
+
|
|
14194
|
+
.maxhr-40 {
|
|
14195
|
+
max-height: 40rem !important;
|
|
14196
|
+
}
|
|
14197
|
+
|
|
14198
|
+
.maxhr-45 {
|
|
14199
|
+
max-height: 45rem !important;
|
|
14200
|
+
}
|
|
14201
|
+
|
|
14202
|
+
.maxhr-50 {
|
|
14203
|
+
max-height: 50rem !important;
|
|
14204
|
+
}
|
|
14205
|
+
|
|
13734
14206
|
.minw-5 {
|
|
13735
14207
|
min-width: 5% !important;
|
|
13736
14208
|
}
|
|
@@ -13899,6 +14371,10 @@ html.font-size-4xl {
|
|
|
13899
14371
|
max-width: 100% !important;
|
|
13900
14372
|
}
|
|
13901
14373
|
|
|
14374
|
+
.maxw-1-2 {
|
|
14375
|
+
max-width: 50% !important;
|
|
14376
|
+
}
|
|
14377
|
+
|
|
13902
14378
|
.maxw-1-3 {
|
|
13903
14379
|
max-width: 33.333333% !important;
|
|
13904
14380
|
}
|
|
@@ -13907,6 +14383,14 @@ html.font-size-4xl {
|
|
|
13907
14383
|
max-width: 66.666667% !important;
|
|
13908
14384
|
}
|
|
13909
14385
|
|
|
14386
|
+
.maxw-1-4 {
|
|
14387
|
+
max-width: 25% !important;
|
|
14388
|
+
}
|
|
14389
|
+
|
|
14390
|
+
.maxw-3-4 {
|
|
14391
|
+
max-width: 75% !important;
|
|
14392
|
+
}
|
|
14393
|
+
|
|
13910
14394
|
.minh-5 {
|
|
13911
14395
|
min-height: 5% !important;
|
|
13912
14396
|
}
|
|
@@ -13987,6 +14471,10 @@ html.font-size-4xl {
|
|
|
13987
14471
|
min-height: 100% !important;
|
|
13988
14472
|
}
|
|
13989
14473
|
|
|
14474
|
+
.minh-1-2 {
|
|
14475
|
+
min-height: 50% !important;
|
|
14476
|
+
}
|
|
14477
|
+
|
|
13990
14478
|
.minh-1-3 {
|
|
13991
14479
|
min-height: 33.333333% !important;
|
|
13992
14480
|
}
|
|
@@ -13995,6 +14483,14 @@ html.font-size-4xl {
|
|
|
13995
14483
|
min-height: 66.666667% !important;
|
|
13996
14484
|
}
|
|
13997
14485
|
|
|
14486
|
+
.minh-1-4 {
|
|
14487
|
+
min-height: 25% !important;
|
|
14488
|
+
}
|
|
14489
|
+
|
|
14490
|
+
.minh-3-4 {
|
|
14491
|
+
min-height: 75% !important;
|
|
14492
|
+
}
|
|
14493
|
+
|
|
13998
14494
|
.maxh-5 {
|
|
13999
14495
|
max-height: 5% !important;
|
|
14000
14496
|
}
|
|
@@ -14075,6 +14571,10 @@ html.font-size-4xl {
|
|
|
14075
14571
|
max-height: 100% !important;
|
|
14076
14572
|
}
|
|
14077
14573
|
|
|
14574
|
+
.maxh-1-2 {
|
|
14575
|
+
max-height: 50% !important;
|
|
14576
|
+
}
|
|
14577
|
+
|
|
14078
14578
|
.maxh-1-3 {
|
|
14079
14579
|
max-height: 33.333333% !important;
|
|
14080
14580
|
}
|
|
@@ -14083,6 +14583,14 @@ html.font-size-4xl {
|
|
|
14083
14583
|
max-height: 66.666667% !important;
|
|
14084
14584
|
}
|
|
14085
14585
|
|
|
14586
|
+
.maxh-1-4 {
|
|
14587
|
+
max-height: 25% !important;
|
|
14588
|
+
}
|
|
14589
|
+
|
|
14590
|
+
.maxh-3-4 {
|
|
14591
|
+
max-height: 75% !important;
|
|
14592
|
+
}
|
|
14593
|
+
|
|
14086
14594
|
.position-static {
|
|
14087
14595
|
position: static !important;
|
|
14088
14596
|
}
|
|
@@ -14576,6 +15084,10 @@ html.font-size-4xl {
|
|
|
14576
15084
|
--pa-color-7: #64748b;
|
|
14577
15085
|
--pa-color-8: #334155;
|
|
14578
15086
|
--pa-color-9: #ec4899;
|
|
15087
|
+
--pa-input-group-prepend-bg: #f1f5f9;
|
|
15088
|
+
--pa-input-group-prepend-text: #334155;
|
|
15089
|
+
--pa-input-group-append-bg: #f1f5f9;
|
|
15090
|
+
--pa-input-group-append-text: #334155;
|
|
14579
15091
|
--drp-dropdown-bg: #ffffff;
|
|
14580
15092
|
--drp-border-color: #e2e8f0;
|
|
14581
15093
|
--drp-primary-bg: #f8fafc;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-corporate",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Corporate theme for Pure Admin",
|
|
5
5
|
"style": "dist/corporate.css",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "KeenMate",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
22
|
+
"@keenmate/pure-admin-core": "^1.0.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0",
|
|
26
26
|
"sass": "^1.70.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
package/src/scss/corporate.scss
CHANGED
|
@@ -273,6 +273,12 @@ $checkbox-focus-shadow: 0 0 0 2px rgba($base-accent-color, 0.25);
|
|
|
273
273
|
@include output-base-css-variables;
|
|
274
274
|
@include output-pa-css-variables;
|
|
275
275
|
|
|
276
|
+
// Input group - light gray background for light mode
|
|
277
|
+
--pa-input-group-prepend-bg: #{$corporate-slate-100};
|
|
278
|
+
--pa-input-group-prepend-text: #{$corporate-slate-700};
|
|
279
|
+
--pa-input-group-append-bg: #{$corporate-slate-100};
|
|
280
|
+
--pa-input-group-append-text: #{$corporate-slate-700};
|
|
281
|
+
|
|
276
282
|
// Web component overrides (light mode)
|
|
277
283
|
--drp-dropdown-bg: #ffffff;
|
|
278
284
|
--drp-border-color: #{$corporate-slate-200};
|