@keenmate/pure-admin-core 1.0.0-rc05 → 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/README.md +56 -0
- package/dist/css/main.css +703 -28
- package/package.json +1 -1
- package/snippets/layout.html +145 -38
- package/src/scss/core-components/_grid.scss +25 -0
- package/src/scss/core-components/_notifications.scss +67 -0
- package/src/scss/core-components/_profile.scss +12 -2
- package/src/scss/core-components/_scrollbars.scss +3 -4
- package/src/scss/core-components/_tabs.scss +3 -0
- package/src/scss/core-components/_utilities.scss +39 -0
- package/src/scss/core-components/forms/_input-groups.scss +13 -11
- package/src/scss/core-components/layout/_layout-container.scss +64 -2
- package/src/scss/core-components/layout/_navbar-elements.scss +3 -2
- package/src/scss/core-components/layout/_navbar.scss +23 -0
- package/src/scss/core-components/layout/_sidebar.scss +53 -2
- package/src/scss/themes/audi-light.scss +26 -0
- package/src/scss/themes/audi.scss +13 -0
- package/src/scss/themes/corporate.scss +26 -0
- package/src/scss/themes/dark-blue.scss +13 -0
- package/src/scss/themes/dark-green.scss +13 -0
- package/src/scss/themes/dark-red.scss +13 -0
- package/src/scss/themes/dark.scss +13 -0
- package/src/scss/themes/express.scss +13 -0
- package/src/scss/themes/minimal.scss +13 -0
- package/src/scss/utilities.scss +57 -2
package/dist/css/main.css
CHANGED
|
@@ -956,6 +956,10 @@
|
|
|
956
956
|
width: auto !important;
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
+
.w-1-2 {
|
|
960
|
+
width: 50% !important;
|
|
961
|
+
}
|
|
962
|
+
|
|
959
963
|
.w-1-3 {
|
|
960
964
|
width: 33.333333% !important;
|
|
961
965
|
}
|
|
@@ -964,6 +968,14 @@
|
|
|
964
968
|
width: 66.666667% !important;
|
|
965
969
|
}
|
|
966
970
|
|
|
971
|
+
.w-1-4 {
|
|
972
|
+
width: 25% !important;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.w-3-4 {
|
|
976
|
+
width: 75% !important;
|
|
977
|
+
}
|
|
978
|
+
|
|
967
979
|
.mw-25 {
|
|
968
980
|
min-width: 25% !important;
|
|
969
981
|
}
|
|
@@ -984,6 +996,10 @@
|
|
|
984
996
|
min-width: auto !important;
|
|
985
997
|
}
|
|
986
998
|
|
|
999
|
+
.mw-1-2 {
|
|
1000
|
+
min-width: 50% !important;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
987
1003
|
.mw-1-3 {
|
|
988
1004
|
min-width: 33.333333% !important;
|
|
989
1005
|
}
|
|
@@ -992,6 +1008,14 @@
|
|
|
992
1008
|
min-width: 66.666667% !important;
|
|
993
1009
|
}
|
|
994
1010
|
|
|
1011
|
+
.mw-1-4 {
|
|
1012
|
+
min-width: 25% !important;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.mw-3-4 {
|
|
1016
|
+
min-width: 75% !important;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
995
1019
|
.w-25-fixed {
|
|
996
1020
|
min-width: 25% !important;
|
|
997
1021
|
width: 25% !important;
|
|
@@ -1012,6 +1036,11 @@
|
|
|
1012
1036
|
width: 100% !important;
|
|
1013
1037
|
}
|
|
1014
1038
|
|
|
1039
|
+
.w-1-2-fixed {
|
|
1040
|
+
min-width: 50% !important;
|
|
1041
|
+
width: 50% !important;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1015
1044
|
.w-1-3-fixed {
|
|
1016
1045
|
min-width: 33.333333% !important;
|
|
1017
1046
|
width: 33.333333% !important;
|
|
@@ -1022,6 +1051,16 @@
|
|
|
1022
1051
|
width: 66.666667% !important;
|
|
1023
1052
|
}
|
|
1024
1053
|
|
|
1054
|
+
.w-1-4-fixed {
|
|
1055
|
+
min-width: 25% !important;
|
|
1056
|
+
width: 25% !important;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.w-3-4-fixed {
|
|
1060
|
+
min-width: 75% !important;
|
|
1061
|
+
width: 75% !important;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1025
1064
|
.h-25 {
|
|
1026
1065
|
height: 25% !important;
|
|
1027
1066
|
}
|
|
@@ -1042,6 +1081,26 @@
|
|
|
1042
1081
|
height: auto !important;
|
|
1043
1082
|
}
|
|
1044
1083
|
|
|
1084
|
+
.h-1-2 {
|
|
1085
|
+
height: 50% !important;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.h-1-3 {
|
|
1089
|
+
height: 33.333333% !important;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.h-2-3 {
|
|
1093
|
+
height: 66.666667% !important;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.h-1-4 {
|
|
1097
|
+
height: 25% !important;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.h-3-4 {
|
|
1101
|
+
height: 75% !important;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1045
1104
|
.wr-1 {
|
|
1046
1105
|
width: 1rem !important;
|
|
1047
1106
|
}
|
|
@@ -1094,6 +1153,26 @@
|
|
|
1094
1153
|
width: 25rem !important;
|
|
1095
1154
|
}
|
|
1096
1155
|
|
|
1156
|
+
.wr-30 {
|
|
1157
|
+
width: 30rem !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.wr-35 {
|
|
1161
|
+
width: 35rem !important;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.wr-40 {
|
|
1165
|
+
width: 40rem !important;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.wr-45 {
|
|
1169
|
+
width: 45rem !important;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.wr-50 {
|
|
1173
|
+
width: 50rem !important;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1097
1176
|
.minwr-1 {
|
|
1098
1177
|
min-width: 1rem !important;
|
|
1099
1178
|
}
|
|
@@ -1146,6 +1225,26 @@
|
|
|
1146
1225
|
min-width: 25rem !important;
|
|
1147
1226
|
}
|
|
1148
1227
|
|
|
1228
|
+
.minwr-30 {
|
|
1229
|
+
min-width: 30rem !important;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.minwr-35 {
|
|
1233
|
+
min-width: 35rem !important;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.minwr-40 {
|
|
1237
|
+
min-width: 40rem !important;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.minwr-45 {
|
|
1241
|
+
min-width: 45rem !important;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.minwr-50 {
|
|
1245
|
+
min-width: 50rem !important;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1149
1248
|
.maxwr-1 {
|
|
1150
1249
|
max-width: 1rem !important;
|
|
1151
1250
|
}
|
|
@@ -1198,6 +1297,26 @@
|
|
|
1198
1297
|
max-width: 25rem !important;
|
|
1199
1298
|
}
|
|
1200
1299
|
|
|
1300
|
+
.maxwr-30 {
|
|
1301
|
+
max-width: 30rem !important;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.maxwr-35 {
|
|
1305
|
+
max-width: 35rem !important;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.maxwr-40 {
|
|
1309
|
+
max-width: 40rem !important;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
.maxwr-45 {
|
|
1313
|
+
max-width: 45rem !important;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.maxwr-50 {
|
|
1317
|
+
max-width: 50rem !important;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1201
1320
|
.hr-1 {
|
|
1202
1321
|
height: 1rem !important;
|
|
1203
1322
|
}
|
|
@@ -1250,6 +1369,26 @@
|
|
|
1250
1369
|
height: 25rem !important;
|
|
1251
1370
|
}
|
|
1252
1371
|
|
|
1372
|
+
.hr-30 {
|
|
1373
|
+
height: 30rem !important;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.hr-35 {
|
|
1377
|
+
height: 35rem !important;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.hr-40 {
|
|
1381
|
+
height: 40rem !important;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.hr-45 {
|
|
1385
|
+
height: 45rem !important;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.hr-50 {
|
|
1389
|
+
height: 50rem !important;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1253
1392
|
.minhr-1 {
|
|
1254
1393
|
min-height: 1rem !important;
|
|
1255
1394
|
}
|
|
@@ -1302,6 +1441,26 @@
|
|
|
1302
1441
|
min-height: 25rem !important;
|
|
1303
1442
|
}
|
|
1304
1443
|
|
|
1444
|
+
.minhr-30 {
|
|
1445
|
+
min-height: 30rem !important;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.minhr-35 {
|
|
1449
|
+
min-height: 35rem !important;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.minhr-40 {
|
|
1453
|
+
min-height: 40rem !important;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.minhr-45 {
|
|
1457
|
+
min-height: 45rem !important;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.minhr-50 {
|
|
1461
|
+
min-height: 50rem !important;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1305
1464
|
.maxhr-1 {
|
|
1306
1465
|
max-height: 1rem !important;
|
|
1307
1466
|
}
|
|
@@ -1354,6 +1513,26 @@
|
|
|
1354
1513
|
max-height: 25rem !important;
|
|
1355
1514
|
}
|
|
1356
1515
|
|
|
1516
|
+
.maxhr-30 {
|
|
1517
|
+
max-height: 30rem !important;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.maxhr-35 {
|
|
1521
|
+
max-height: 35rem !important;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.maxhr-40 {
|
|
1525
|
+
max-height: 40rem !important;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.maxhr-45 {
|
|
1529
|
+
max-height: 45rem !important;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.maxhr-50 {
|
|
1533
|
+
max-height: 50rem !important;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1357
1536
|
.minw-5 {
|
|
1358
1537
|
min-width: 5% !important;
|
|
1359
1538
|
}
|
|
@@ -1522,6 +1701,10 @@
|
|
|
1522
1701
|
max-width: 100% !important;
|
|
1523
1702
|
}
|
|
1524
1703
|
|
|
1704
|
+
.maxw-1-2 {
|
|
1705
|
+
max-width: 50% !important;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1525
1708
|
.maxw-1-3 {
|
|
1526
1709
|
max-width: 33.333333% !important;
|
|
1527
1710
|
}
|
|
@@ -1530,6 +1713,14 @@
|
|
|
1530
1713
|
max-width: 66.666667% !important;
|
|
1531
1714
|
}
|
|
1532
1715
|
|
|
1716
|
+
.maxw-1-4 {
|
|
1717
|
+
max-width: 25% !important;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.maxw-3-4 {
|
|
1721
|
+
max-width: 75% !important;
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1533
1724
|
.minh-5 {
|
|
1534
1725
|
min-height: 5% !important;
|
|
1535
1726
|
}
|
|
@@ -1610,6 +1801,10 @@
|
|
|
1610
1801
|
min-height: 100% !important;
|
|
1611
1802
|
}
|
|
1612
1803
|
|
|
1804
|
+
.minh-1-2 {
|
|
1805
|
+
min-height: 50% !important;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1613
1808
|
.minh-1-3 {
|
|
1614
1809
|
min-height: 33.333333% !important;
|
|
1615
1810
|
}
|
|
@@ -1618,6 +1813,14 @@
|
|
|
1618
1813
|
min-height: 66.666667% !important;
|
|
1619
1814
|
}
|
|
1620
1815
|
|
|
1816
|
+
.minh-1-4 {
|
|
1817
|
+
min-height: 25% !important;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.minh-3-4 {
|
|
1821
|
+
min-height: 75% !important;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1621
1824
|
.maxh-5 {
|
|
1622
1825
|
max-height: 5% !important;
|
|
1623
1826
|
}
|
|
@@ -1698,6 +1901,10 @@
|
|
|
1698
1901
|
max-height: 100% !important;
|
|
1699
1902
|
}
|
|
1700
1903
|
|
|
1904
|
+
.maxh-1-2 {
|
|
1905
|
+
max-height: 50% !important;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1701
1908
|
.maxh-1-3 {
|
|
1702
1909
|
max-height: 33.333333% !important;
|
|
1703
1910
|
}
|
|
@@ -1706,6 +1913,14 @@
|
|
|
1706
1913
|
max-height: 66.666667% !important;
|
|
1707
1914
|
}
|
|
1708
1915
|
|
|
1916
|
+
.maxh-1-4 {
|
|
1917
|
+
max-height: 25% !important;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.maxh-3-4 {
|
|
1921
|
+
max-height: 75% !important;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1709
1924
|
.position-static {
|
|
1710
1925
|
position: static !important;
|
|
1711
1926
|
}
|
|
@@ -2015,16 +2230,15 @@ label {
|
|
|
2015
2230
|
}
|
|
2016
2231
|
|
|
2017
2232
|
*::-webkit-scrollbar-thumb {
|
|
2018
|
-
background:
|
|
2233
|
+
background: var(--pa-border-color);
|
|
2019
2234
|
border-radius: 3px;
|
|
2020
2235
|
border: 1px solid var(--pa-primary-bg);
|
|
2021
2236
|
}
|
|
2022
2237
|
*::-webkit-scrollbar-thumb:hover {
|
|
2023
|
-
background:
|
|
2024
|
-
border-color: rgba(0, 123, 255, 0.12);
|
|
2238
|
+
background: var(--pa-accent);
|
|
2025
2239
|
}
|
|
2026
2240
|
*::-webkit-scrollbar-thumb:active {
|
|
2027
|
-
background:
|
|
2241
|
+
background: var(--pa-accent-hover);
|
|
2028
2242
|
}
|
|
2029
2243
|
|
|
2030
2244
|
*::-webkit-scrollbar-corner {
|
|
@@ -2113,6 +2327,28 @@ body.pa-container-2xl .pa-navbar {
|
|
|
2113
2327
|
gap: 1.6rem;
|
|
2114
2328
|
}
|
|
2115
2329
|
|
|
2330
|
+
.pa-header__left {
|
|
2331
|
+
display: flex;
|
|
2332
|
+
align-items: center;
|
|
2333
|
+
gap: 1.6rem;
|
|
2334
|
+
flex-shrink: 0;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
.pa-header__center {
|
|
2338
|
+
flex: 1;
|
|
2339
|
+
min-width: 0;
|
|
2340
|
+
display: flex;
|
|
2341
|
+
align-items: center;
|
|
2342
|
+
justify-content: center;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
.pa-header__right {
|
|
2346
|
+
display: flex;
|
|
2347
|
+
align-items: center;
|
|
2348
|
+
gap: 1.6rem;
|
|
2349
|
+
flex-shrink: 0;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2116
2352
|
/* ========================================
|
|
2117
2353
|
Reset and Base Styles
|
|
2118
2354
|
======================================== */
|
|
@@ -2201,15 +2437,68 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
2201
2437
|
}
|
|
2202
2438
|
|
|
2203
2439
|
.pa-layout__footer {
|
|
2204
|
-
height: 4.8rem;
|
|
2440
|
+
min-height: 4.8rem;
|
|
2205
2441
|
background-color: var(--pa-footer-bg);
|
|
2206
2442
|
border-top: 1px solid var(--pa-footer-border-color);
|
|
2207
2443
|
display: flex;
|
|
2208
2444
|
align-items: center;
|
|
2209
|
-
padding: 0 1.6rem;
|
|
2445
|
+
padding: 0.4rem 1.6rem;
|
|
2446
|
+
flex-shrink: 0;
|
|
2447
|
+
gap: 1.6rem;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.pa-footer__left {
|
|
2451
|
+
display: flex;
|
|
2452
|
+
align-items: center;
|
|
2453
|
+
gap: 1.6rem;
|
|
2210
2454
|
flex-shrink: 0;
|
|
2211
2455
|
}
|
|
2212
2456
|
|
|
2457
|
+
.pa-footer__center {
|
|
2458
|
+
flex: 1;
|
|
2459
|
+
min-width: 0;
|
|
2460
|
+
display: flex;
|
|
2461
|
+
align-items: center;
|
|
2462
|
+
justify-content: center;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
.pa-footer__right {
|
|
2466
|
+
display: flex;
|
|
2467
|
+
align-items: center;
|
|
2468
|
+
gap: 1.6rem;
|
|
2469
|
+
flex-shrink: 0;
|
|
2470
|
+
}
|
|
2471
|
+
.pa-footer__right--vertical {
|
|
2472
|
+
flex-direction: column;
|
|
2473
|
+
align-items: flex-end;
|
|
2474
|
+
gap: 0.4rem;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
@media (max-width: 768px) {
|
|
2478
|
+
.pa-layout__footer {
|
|
2479
|
+
flex-wrap: wrap;
|
|
2480
|
+
min-height: auto;
|
|
2481
|
+
padding: 0.8rem 1.6rem;
|
|
2482
|
+
}
|
|
2483
|
+
.pa-footer__left,
|
|
2484
|
+
.pa-footer__center,
|
|
2485
|
+
.pa-footer__right {
|
|
2486
|
+
flex-shrink: 1;
|
|
2487
|
+
min-width: 0;
|
|
2488
|
+
}
|
|
2489
|
+
.pa-footer__left {
|
|
2490
|
+
flex: 1 1 auto;
|
|
2491
|
+
}
|
|
2492
|
+
.pa-footer__center {
|
|
2493
|
+
display: none;
|
|
2494
|
+
}
|
|
2495
|
+
.pa-footer__right {
|
|
2496
|
+
flex: 0 1 auto;
|
|
2497
|
+
}
|
|
2498
|
+
.pa-footer__right--vertical {
|
|
2499
|
+
align-items: flex-end;
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2213
2502
|
/* ========================================
|
|
2214
2503
|
Reset and Base Styles
|
|
2215
2504
|
======================================== */
|
|
@@ -2217,15 +2506,58 @@ body.pa-layout--sticky .pa-layout__inner {
|
|
|
2217
2506
|
Sidebar Component
|
|
2218
2507
|
Sidebar navigation with nested submenus
|
|
2219
2508
|
======================================== */
|
|
2509
|
+
:root {
|
|
2510
|
+
--pa-sidebar-width: 28.8rem;
|
|
2511
|
+
--pa-sidebar-min-width: 18rem;
|
|
2512
|
+
--pa-sidebar-max-width: 50rem;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
:where(.pa-layout__sidebar) {
|
|
2516
|
+
width: var(--pa-sidebar-width);
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2220
2519
|
.pa-layout__sidebar {
|
|
2221
|
-
width: 28.8rem;
|
|
2222
2520
|
background-color: var(--pa-sidebar-bg);
|
|
2223
2521
|
border-right: 1px solid var(--pa-border-color);
|
|
2224
2522
|
flex-shrink: 0;
|
|
2523
|
+
position: relative;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
.pa-sidebar-resize {
|
|
2527
|
+
position: absolute;
|
|
2528
|
+
top: 0;
|
|
2529
|
+
right: 0;
|
|
2530
|
+
width: 6px;
|
|
2531
|
+
height: 100%;
|
|
2532
|
+
cursor: ew-resize;
|
|
2533
|
+
z-index: 100;
|
|
2534
|
+
}
|
|
2535
|
+
.pa-sidebar-resize::after {
|
|
2536
|
+
content: "";
|
|
2537
|
+
position: absolute;
|
|
2538
|
+
top: 0;
|
|
2539
|
+
left: 50%;
|
|
2540
|
+
transform: translateX(-50%);
|
|
2541
|
+
width: 2px;
|
|
2542
|
+
height: 100%;
|
|
2543
|
+
background-color: transparent;
|
|
2544
|
+
transition: background-color 0.1s ease-out;
|
|
2545
|
+
}
|
|
2546
|
+
.pa-sidebar-resize:hover::after, .pa-sidebar-resize--active::after {
|
|
2547
|
+
background-color: var(--pa-accent);
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
body.pa-sidebar-resizing {
|
|
2551
|
+
cursor: ew-resize !important;
|
|
2552
|
+
user-select: none;
|
|
2553
|
+
}
|
|
2554
|
+
body.pa-sidebar-resizing * {
|
|
2555
|
+
cursor: ew-resize !important;
|
|
2225
2556
|
}
|
|
2226
2557
|
|
|
2227
2558
|
body.pa-layout--sticky .pa-layout__sidebar {
|
|
2228
2559
|
overflow-y: auto;
|
|
2560
|
+
overflow-y: overlay;
|
|
2229
2561
|
overflow-x: visible;
|
|
2230
2562
|
}
|
|
2231
2563
|
|
|
@@ -2604,12 +2936,6 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2604
2936
|
color: var(--pa-accent);
|
|
2605
2937
|
background-color: var(--pa-accent-hover);
|
|
2606
2938
|
}
|
|
2607
|
-
.pa-header__nav--left {
|
|
2608
|
-
margin-right: auto;
|
|
2609
|
-
}
|
|
2610
|
-
.pa-header__nav--right {
|
|
2611
|
-
margin-left: auto;
|
|
2612
|
-
}
|
|
2613
2939
|
.pa-header__nav-item--has-dropdown {
|
|
2614
2940
|
position: static;
|
|
2615
2941
|
}
|
|
@@ -4289,6 +4615,144 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
4289
4615
|
padding-bottom: 0;
|
|
4290
4616
|
}
|
|
4291
4617
|
|
|
4618
|
+
@media (max-width: 768px) {
|
|
4619
|
+
.pa-col-5 {
|
|
4620
|
+
flex: 0 0 100%;
|
|
4621
|
+
max-width: 100%;
|
|
4622
|
+
}
|
|
4623
|
+
.pa-col-10 {
|
|
4624
|
+
flex: 0 0 100%;
|
|
4625
|
+
max-width: 100%;
|
|
4626
|
+
}
|
|
4627
|
+
.pa-col-15 {
|
|
4628
|
+
flex: 0 0 100%;
|
|
4629
|
+
max-width: 100%;
|
|
4630
|
+
}
|
|
4631
|
+
.pa-col-20 {
|
|
4632
|
+
flex: 0 0 100%;
|
|
4633
|
+
max-width: 100%;
|
|
4634
|
+
}
|
|
4635
|
+
.pa-col-25 {
|
|
4636
|
+
flex: 0 0 100%;
|
|
4637
|
+
max-width: 100%;
|
|
4638
|
+
}
|
|
4639
|
+
.pa-col-30 {
|
|
4640
|
+
flex: 0 0 100%;
|
|
4641
|
+
max-width: 100%;
|
|
4642
|
+
}
|
|
4643
|
+
.pa-col-35 {
|
|
4644
|
+
flex: 0 0 100%;
|
|
4645
|
+
max-width: 100%;
|
|
4646
|
+
}
|
|
4647
|
+
.pa-col-40 {
|
|
4648
|
+
flex: 0 0 100%;
|
|
4649
|
+
max-width: 100%;
|
|
4650
|
+
}
|
|
4651
|
+
.pa-col-45 {
|
|
4652
|
+
flex: 0 0 100%;
|
|
4653
|
+
max-width: 100%;
|
|
4654
|
+
}
|
|
4655
|
+
.pa-col-50 {
|
|
4656
|
+
flex: 0 0 100%;
|
|
4657
|
+
max-width: 100%;
|
|
4658
|
+
}
|
|
4659
|
+
.pa-col-55 {
|
|
4660
|
+
flex: 0 0 100%;
|
|
4661
|
+
max-width: 100%;
|
|
4662
|
+
}
|
|
4663
|
+
.pa-col-60 {
|
|
4664
|
+
flex: 0 0 100%;
|
|
4665
|
+
max-width: 100%;
|
|
4666
|
+
}
|
|
4667
|
+
.pa-col-65 {
|
|
4668
|
+
flex: 0 0 100%;
|
|
4669
|
+
max-width: 100%;
|
|
4670
|
+
}
|
|
4671
|
+
.pa-col-70 {
|
|
4672
|
+
flex: 0 0 100%;
|
|
4673
|
+
max-width: 100%;
|
|
4674
|
+
}
|
|
4675
|
+
.pa-col-75 {
|
|
4676
|
+
flex: 0 0 100%;
|
|
4677
|
+
max-width: 100%;
|
|
4678
|
+
}
|
|
4679
|
+
.pa-col-80 {
|
|
4680
|
+
flex: 0 0 100%;
|
|
4681
|
+
max-width: 100%;
|
|
4682
|
+
}
|
|
4683
|
+
.pa-col-85 {
|
|
4684
|
+
flex: 0 0 100%;
|
|
4685
|
+
max-width: 100%;
|
|
4686
|
+
}
|
|
4687
|
+
.pa-col-90 {
|
|
4688
|
+
flex: 0 0 100%;
|
|
4689
|
+
max-width: 100%;
|
|
4690
|
+
}
|
|
4691
|
+
.pa-col-95 {
|
|
4692
|
+
flex: 0 0 100%;
|
|
4693
|
+
max-width: 100%;
|
|
4694
|
+
}
|
|
4695
|
+
.pa-col-1-2 {
|
|
4696
|
+
flex: 0 0 100%;
|
|
4697
|
+
max-width: 100%;
|
|
4698
|
+
}
|
|
4699
|
+
.pa-col-1-3 {
|
|
4700
|
+
flex: 0 0 100%;
|
|
4701
|
+
max-width: 100%;
|
|
4702
|
+
}
|
|
4703
|
+
.pa-col-2-3 {
|
|
4704
|
+
flex: 0 0 100%;
|
|
4705
|
+
max-width: 100%;
|
|
4706
|
+
}
|
|
4707
|
+
.pa-col-1-4 {
|
|
4708
|
+
flex: 0 0 100%;
|
|
4709
|
+
max-width: 100%;
|
|
4710
|
+
}
|
|
4711
|
+
.pa-col-3-4 {
|
|
4712
|
+
flex: 0 0 100%;
|
|
4713
|
+
max-width: 100%;
|
|
4714
|
+
}
|
|
4715
|
+
.pa-col-1-5 {
|
|
4716
|
+
flex: 0 0 100%;
|
|
4717
|
+
max-width: 100%;
|
|
4718
|
+
}
|
|
4719
|
+
.pa-col-2-5 {
|
|
4720
|
+
flex: 0 0 100%;
|
|
4721
|
+
max-width: 100%;
|
|
4722
|
+
}
|
|
4723
|
+
.pa-col-3-5 {
|
|
4724
|
+
flex: 0 0 100%;
|
|
4725
|
+
max-width: 100%;
|
|
4726
|
+
}
|
|
4727
|
+
.pa-col-4-5 {
|
|
4728
|
+
flex: 0 0 100%;
|
|
4729
|
+
max-width: 100%;
|
|
4730
|
+
}
|
|
4731
|
+
.pa-col-1-6 {
|
|
4732
|
+
flex: 0 0 100%;
|
|
4733
|
+
max-width: 100%;
|
|
4734
|
+
}
|
|
4735
|
+
.pa-col-5-6 {
|
|
4736
|
+
flex: 0 0 100%;
|
|
4737
|
+
max-width: 100%;
|
|
4738
|
+
}
|
|
4739
|
+
.pa-col-1-12 {
|
|
4740
|
+
flex: 0 0 100%;
|
|
4741
|
+
max-width: 100%;
|
|
4742
|
+
}
|
|
4743
|
+
.pa-col-5-12 {
|
|
4744
|
+
flex: 0 0 100%;
|
|
4745
|
+
max-width: 100%;
|
|
4746
|
+
}
|
|
4747
|
+
.pa-col-7-12 {
|
|
4748
|
+
flex: 0 0 100%;
|
|
4749
|
+
max-width: 100%;
|
|
4750
|
+
}
|
|
4751
|
+
.pa-col-11-12 {
|
|
4752
|
+
flex: 0 0 100%;
|
|
4753
|
+
max-width: 100%;
|
|
4754
|
+
}
|
|
4755
|
+
}
|
|
4292
4756
|
/* ========================================
|
|
4293
4757
|
Reset and Base Styles
|
|
4294
4758
|
======================================== */
|
|
@@ -4794,6 +5258,7 @@ a.pa-card p {
|
|
|
4794
5258
|
border-radius: 8px;
|
|
4795
5259
|
padding: 1.6rem 1rem;
|
|
4796
5260
|
background-color: var(--pa-card-bg);
|
|
5261
|
+
margin-bottom: 1.6rem;
|
|
4797
5262
|
}
|
|
4798
5263
|
.pa-tabs__container--bordered .pa-tabs {
|
|
4799
5264
|
border-bottom: none;
|
|
@@ -4810,6 +5275,7 @@ a.pa-card p {
|
|
|
4810
5275
|
border-radius: 8px;
|
|
4811
5276
|
background-color: var(--pa-card-bg);
|
|
4812
5277
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
5278
|
+
margin-bottom: 1.6rem;
|
|
4813
5279
|
}
|
|
4814
5280
|
.pa-tabs__container--card .pa-tabs {
|
|
4815
5281
|
height: 4rem;
|
|
@@ -4918,6 +5384,7 @@ a.pa-card p {
|
|
|
4918
5384
|
border-radius: 8px;
|
|
4919
5385
|
padding: 1.6rem 1rem;
|
|
4920
5386
|
background-color: var(--pa-card-bg);
|
|
5387
|
+
margin-bottom: 1.6rem;
|
|
4921
5388
|
}
|
|
4922
5389
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical {
|
|
4923
5390
|
border-right: 1px solid var(--pa-border-color);
|
|
@@ -7656,10 +8123,11 @@ a.pa-card p {
|
|
|
7656
8123
|
.pa-input-group__prepend, .pa-input-group__append {
|
|
7657
8124
|
display: flex;
|
|
7658
8125
|
align-items: center;
|
|
7659
|
-
|
|
8126
|
+
height: 3.5rem;
|
|
8127
|
+
line-height: 3.5rem;
|
|
8128
|
+
padding: 0 0.8rem;
|
|
7660
8129
|
border: 1px solid var(--pa-border-color);
|
|
7661
8130
|
font-size: 1.4rem;
|
|
7662
|
-
line-height: 1;
|
|
7663
8131
|
white-space: nowrap;
|
|
7664
8132
|
border-radius: 0;
|
|
7665
8133
|
}
|
|
@@ -7687,27 +8155,24 @@ a.pa-card p {
|
|
|
7687
8155
|
.pa-input-group__append + .pa-input-group__append {
|
|
7688
8156
|
border-left: 1px solid var(--pa-border-color);
|
|
7689
8157
|
}
|
|
7690
|
-
.pa-input-group:focus
|
|
8158
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend {
|
|
7691
8159
|
border-right: 1px solid var(--pa-input-focus-border-color);
|
|
7692
8160
|
}
|
|
7693
|
-
.pa-input-group:focus
|
|
8161
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__prepend:has(+ .pa-input-group__prepend) {
|
|
7694
8162
|
border-right: none;
|
|
7695
8163
|
}
|
|
7696
|
-
.pa-input-group:focus
|
|
8164
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append {
|
|
7697
8165
|
border-left: 1px solid var(--pa-input-focus-border-color);
|
|
7698
8166
|
}
|
|
7699
|
-
.pa-input-group:focus
|
|
8167
|
+
.pa-input-group:has(.pa-input:focus) .pa-input-group__append + .pa-input-group__append {
|
|
7700
8168
|
border-left: 1px solid var(--pa-border-color);
|
|
7701
8169
|
}
|
|
7702
8170
|
.pa-input-group__button {
|
|
7703
8171
|
border-radius: 0;
|
|
7704
|
-
border-color: var(--pa-border-color);
|
|
7705
|
-
border-left: none;
|
|
7706
8172
|
}
|
|
7707
8173
|
.pa-input-group__button:first-child {
|
|
7708
8174
|
border-top-left-radius: 4px;
|
|
7709
8175
|
border-bottom-left-radius: 4px;
|
|
7710
|
-
border-left: 1px solid var(--pa-border-color);
|
|
7711
8176
|
}
|
|
7712
8177
|
.pa-input-group__button:last-child {
|
|
7713
8178
|
border-top-right-radius: 4px;
|
|
@@ -7715,22 +8180,26 @@ a.pa-card p {
|
|
|
7715
8180
|
}
|
|
7716
8181
|
.pa-input-group--xs .pa-input-group__prepend,
|
|
7717
8182
|
.pa-input-group--xs .pa-input-group__append {
|
|
7718
|
-
|
|
8183
|
+
height: 3.1rem;
|
|
8184
|
+
line-height: 3.1rem;
|
|
7719
8185
|
font-size: 1.2rem;
|
|
7720
8186
|
}
|
|
7721
8187
|
.pa-input-group--sm .pa-input-group__prepend,
|
|
7722
8188
|
.pa-input-group--sm .pa-input-group__append {
|
|
7723
|
-
|
|
8189
|
+
height: 3.3rem;
|
|
8190
|
+
line-height: 3.3rem;
|
|
7724
8191
|
font-size: 1.4rem;
|
|
7725
8192
|
}
|
|
7726
8193
|
.pa-input-group--lg .pa-input-group__prepend,
|
|
7727
8194
|
.pa-input-group--lg .pa-input-group__append {
|
|
7728
|
-
|
|
8195
|
+
height: 3.8rem;
|
|
8196
|
+
line-height: 3.8rem;
|
|
7729
8197
|
font-size: 1.6rem;
|
|
7730
8198
|
}
|
|
7731
8199
|
.pa-input-group--xl .pa-input-group__prepend,
|
|
7732
8200
|
.pa-input-group--xl .pa-input-group__append {
|
|
7733
|
-
|
|
8201
|
+
height: 4.1rem;
|
|
8202
|
+
line-height: 4.1rem;
|
|
7734
8203
|
font-size: 1.8rem;
|
|
7735
8204
|
}
|
|
7736
8205
|
|
|
@@ -10134,6 +10603,16 @@ code {
|
|
|
10134
10603
|
Profile Panel Components
|
|
10135
10604
|
Profile panel and header button
|
|
10136
10605
|
======================================== */
|
|
10606
|
+
:root {
|
|
10607
|
+
--pa-profile-panel-width: 20vw;
|
|
10608
|
+
--pa-profile-panel-max-width: 48rem;
|
|
10609
|
+
}
|
|
10610
|
+
|
|
10611
|
+
:where(.pa-profile-panel__content) {
|
|
10612
|
+
width: var(--pa-profile-panel-width);
|
|
10613
|
+
max-width: var(--pa-profile-panel-max-width);
|
|
10614
|
+
}
|
|
10615
|
+
|
|
10137
10616
|
.pa-header__profile-btn {
|
|
10138
10617
|
display: flex;
|
|
10139
10618
|
align-items: center;
|
|
@@ -10191,8 +10670,6 @@ code {
|
|
|
10191
10670
|
position: absolute;
|
|
10192
10671
|
top: 0;
|
|
10193
10672
|
right: 0;
|
|
10194
|
-
width: 20vw;
|
|
10195
|
-
max-width: 48rem;
|
|
10196
10673
|
height: 100vh;
|
|
10197
10674
|
background-color: var(--pa-card-bg);
|
|
10198
10675
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
|
|
@@ -12171,6 +12648,55 @@ code {
|
|
|
12171
12648
|
right: -1.6rem;
|
|
12172
12649
|
}
|
|
12173
12650
|
}
|
|
12651
|
+
.pa-notifications__list--page {
|
|
12652
|
+
max-height: none;
|
|
12653
|
+
overflow: visible;
|
|
12654
|
+
}
|
|
12655
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
12656
|
+
padding: 1.6rem 2.4rem;
|
|
12657
|
+
}
|
|
12658
|
+
.pa-notifications__list--page .pa-notifications__icon-wrapper {
|
|
12659
|
+
width: 4rem;
|
|
12660
|
+
height: 4rem;
|
|
12661
|
+
font-size: 1.8rem;
|
|
12662
|
+
}
|
|
12663
|
+
.pa-notifications__list--page .pa-notifications__content h4 {
|
|
12664
|
+
font-size: 1.4rem;
|
|
12665
|
+
margin-bottom: 0.4rem;
|
|
12666
|
+
}
|
|
12667
|
+
.pa-notifications__list--page .pa-notifications__content p {
|
|
12668
|
+
font-size: 1.4rem;
|
|
12669
|
+
-webkit-line-clamp: 3;
|
|
12670
|
+
}
|
|
12671
|
+
.pa-notifications__list--page .pa-notifications__time {
|
|
12672
|
+
font-size: 1.2rem;
|
|
12673
|
+
}
|
|
12674
|
+
|
|
12675
|
+
.pa-notifications__actions {
|
|
12676
|
+
display: flex;
|
|
12677
|
+
gap: 0.4rem;
|
|
12678
|
+
flex-shrink: 0;
|
|
12679
|
+
opacity: 0;
|
|
12680
|
+
transition: opacity 0.1s ease-out;
|
|
12681
|
+
}
|
|
12682
|
+
|
|
12683
|
+
.pa-notifications__item:hover .pa-notifications__actions {
|
|
12684
|
+
opacity: 1;
|
|
12685
|
+
}
|
|
12686
|
+
|
|
12687
|
+
@media (max-width: 768px) {
|
|
12688
|
+
.pa-notifications__list--page .pa-notifications__item {
|
|
12689
|
+
flex-wrap: wrap;
|
|
12690
|
+
}
|
|
12691
|
+
.pa-notifications__list--page .pa-notifications__actions {
|
|
12692
|
+
opacity: 1;
|
|
12693
|
+
width: 100%;
|
|
12694
|
+
justify-content: flex-end;
|
|
12695
|
+
margin-top: 0.8rem;
|
|
12696
|
+
padding-top: 0.8rem;
|
|
12697
|
+
border-top: 1px solid var(--pa-border-color);
|
|
12698
|
+
}
|
|
12699
|
+
}
|
|
12174
12700
|
/* ========================================
|
|
12175
12701
|
Reset and Base Styles
|
|
12176
12702
|
======================================== */
|
|
@@ -12639,6 +13165,21 @@ html.font-size-4xl {
|
|
|
12639
13165
|
overflow: visible;
|
|
12640
13166
|
}
|
|
12641
13167
|
|
|
13168
|
+
.overflow-overlay {
|
|
13169
|
+
overflow: auto;
|
|
13170
|
+
overflow: overlay;
|
|
13171
|
+
}
|
|
13172
|
+
|
|
13173
|
+
.overflow-y-overlay {
|
|
13174
|
+
overflow-y: auto;
|
|
13175
|
+
overflow-y: overlay;
|
|
13176
|
+
}
|
|
13177
|
+
|
|
13178
|
+
.overflow-x-overlay {
|
|
13179
|
+
overflow-x: auto;
|
|
13180
|
+
overflow-x: overlay;
|
|
13181
|
+
}
|
|
13182
|
+
|
|
12642
13183
|
.cursor-pointer {
|
|
12643
13184
|
cursor: pointer;
|
|
12644
13185
|
}
|
|
@@ -12848,6 +13389,26 @@ html.font-size-4xl {
|
|
|
12848
13389
|
column-gap: 2.4rem;
|
|
12849
13390
|
}
|
|
12850
13391
|
|
|
13392
|
+
.self-start {
|
|
13393
|
+
align-self: flex-start;
|
|
13394
|
+
}
|
|
13395
|
+
|
|
13396
|
+
.self-center {
|
|
13397
|
+
align-self: center;
|
|
13398
|
+
}
|
|
13399
|
+
|
|
13400
|
+
.self-end {
|
|
13401
|
+
align-self: flex-end;
|
|
13402
|
+
}
|
|
13403
|
+
|
|
13404
|
+
.self-stretch {
|
|
13405
|
+
align-self: stretch;
|
|
13406
|
+
}
|
|
13407
|
+
|
|
13408
|
+
.self-baseline {
|
|
13409
|
+
align-self: baseline;
|
|
13410
|
+
}
|
|
13411
|
+
|
|
12851
13412
|
.text-2xs {
|
|
12852
13413
|
font-size: 1rem;
|
|
12853
13414
|
}
|
|
@@ -12888,6 +13449,12 @@ html.font-size-4xl {
|
|
|
12888
13449
|
font-size: 3.2rem;
|
|
12889
13450
|
}
|
|
12890
13451
|
|
|
13452
|
+
.text-truncate {
|
|
13453
|
+
overflow: hidden;
|
|
13454
|
+
text-overflow: ellipsis;
|
|
13455
|
+
white-space: nowrap;
|
|
13456
|
+
}
|
|
13457
|
+
|
|
12891
13458
|
.component-showcase {
|
|
12892
13459
|
display: flex;
|
|
12893
13460
|
flex-wrap: wrap;
|
|
@@ -12926,3 +13493,111 @@ html.font-size-4xl {
|
|
|
12926
13493
|
flex-direction: column;
|
|
12927
13494
|
align-items: flex-start;
|
|
12928
13495
|
}
|
|
13496
|
+
|
|
13497
|
+
.pa-bg-color-1 {
|
|
13498
|
+
background-color: var(--pa-color-1);
|
|
13499
|
+
}
|
|
13500
|
+
|
|
13501
|
+
.pa-text-color-1 {
|
|
13502
|
+
color: var(--pa-color-1);
|
|
13503
|
+
}
|
|
13504
|
+
|
|
13505
|
+
.pa-border-color-1 {
|
|
13506
|
+
border-color: var(--pa-color-1);
|
|
13507
|
+
}
|
|
13508
|
+
|
|
13509
|
+
.pa-bg-color-2 {
|
|
13510
|
+
background-color: var(--pa-color-2);
|
|
13511
|
+
}
|
|
13512
|
+
|
|
13513
|
+
.pa-text-color-2 {
|
|
13514
|
+
color: var(--pa-color-2);
|
|
13515
|
+
}
|
|
13516
|
+
|
|
13517
|
+
.pa-border-color-2 {
|
|
13518
|
+
border-color: var(--pa-color-2);
|
|
13519
|
+
}
|
|
13520
|
+
|
|
13521
|
+
.pa-bg-color-3 {
|
|
13522
|
+
background-color: var(--pa-color-3);
|
|
13523
|
+
}
|
|
13524
|
+
|
|
13525
|
+
.pa-text-color-3 {
|
|
13526
|
+
color: var(--pa-color-3);
|
|
13527
|
+
}
|
|
13528
|
+
|
|
13529
|
+
.pa-border-color-3 {
|
|
13530
|
+
border-color: var(--pa-color-3);
|
|
13531
|
+
}
|
|
13532
|
+
|
|
13533
|
+
.pa-bg-color-4 {
|
|
13534
|
+
background-color: var(--pa-color-4);
|
|
13535
|
+
}
|
|
13536
|
+
|
|
13537
|
+
.pa-text-color-4 {
|
|
13538
|
+
color: var(--pa-color-4);
|
|
13539
|
+
}
|
|
13540
|
+
|
|
13541
|
+
.pa-border-color-4 {
|
|
13542
|
+
border-color: var(--pa-color-4);
|
|
13543
|
+
}
|
|
13544
|
+
|
|
13545
|
+
.pa-bg-color-5 {
|
|
13546
|
+
background-color: var(--pa-color-5);
|
|
13547
|
+
}
|
|
13548
|
+
|
|
13549
|
+
.pa-text-color-5 {
|
|
13550
|
+
color: var(--pa-color-5);
|
|
13551
|
+
}
|
|
13552
|
+
|
|
13553
|
+
.pa-border-color-5 {
|
|
13554
|
+
border-color: var(--pa-color-5);
|
|
13555
|
+
}
|
|
13556
|
+
|
|
13557
|
+
.pa-bg-color-6 {
|
|
13558
|
+
background-color: var(--pa-color-6);
|
|
13559
|
+
}
|
|
13560
|
+
|
|
13561
|
+
.pa-text-color-6 {
|
|
13562
|
+
color: var(--pa-color-6);
|
|
13563
|
+
}
|
|
13564
|
+
|
|
13565
|
+
.pa-border-color-6 {
|
|
13566
|
+
border-color: var(--pa-color-6);
|
|
13567
|
+
}
|
|
13568
|
+
|
|
13569
|
+
.pa-bg-color-7 {
|
|
13570
|
+
background-color: var(--pa-color-7);
|
|
13571
|
+
}
|
|
13572
|
+
|
|
13573
|
+
.pa-text-color-7 {
|
|
13574
|
+
color: var(--pa-color-7);
|
|
13575
|
+
}
|
|
13576
|
+
|
|
13577
|
+
.pa-border-color-7 {
|
|
13578
|
+
border-color: var(--pa-color-7);
|
|
13579
|
+
}
|
|
13580
|
+
|
|
13581
|
+
.pa-bg-color-8 {
|
|
13582
|
+
background-color: var(--pa-color-8);
|
|
13583
|
+
}
|
|
13584
|
+
|
|
13585
|
+
.pa-text-color-8 {
|
|
13586
|
+
color: var(--pa-color-8);
|
|
13587
|
+
}
|
|
13588
|
+
|
|
13589
|
+
.pa-border-color-8 {
|
|
13590
|
+
border-color: var(--pa-color-8);
|
|
13591
|
+
}
|
|
13592
|
+
|
|
13593
|
+
.pa-bg-color-9 {
|
|
13594
|
+
background-color: var(--pa-color-9);
|
|
13595
|
+
}
|
|
13596
|
+
|
|
13597
|
+
.pa-text-color-9 {
|
|
13598
|
+
color: var(--pa-color-9);
|
|
13599
|
+
}
|
|
13600
|
+
|
|
13601
|
+
.pa-border-color-9 {
|
|
13602
|
+
border-color: var(--pa-color-9);
|
|
13603
|
+
}
|