@keenmate/pure-admin-core 1.0.0-rc03 → 1.0.0-rc05
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 +92 -0
- package/dist/css/main.css +1100 -205
- package/package.json +1 -1
- package/snippets/badges.html +7 -6
- package/snippets/buttons.html +15 -13
- package/snippets/modals.html +43 -4
- package/snippets/profile.html +67 -2
- package/snippets/tables.html +8 -6
- package/snippets/tabs.html +47 -17
- package/snippets/tooltips.html +69 -1
- package/src/scss/core-components/_buttons.scss +6 -54
- package/src/scss/core-components/_cards.scss +40 -4
- package/src/scss/core-components/_profile.scss +27 -13
- package/src/scss/core-components/_tables.scss +37 -13
- package/src/scss/core-components/_tabs.scss +135 -83
- package/src/scss/core-components/_tooltips.scss +40 -0
- package/src/scss/core-components/badges/_badge-base.scss +0 -21
- package/src/scss/core-components/forms/_form-inputs.scss +7 -1
- package/src/scss/themes/audi-light.scss +5 -1
- package/src/scss/themes/audi.scss +5 -3
- package/src/scss/utilities.scss +197 -0
- package/src/scss/variables/_components.scss +65 -27
package/dist/css/main.css
CHANGED
|
@@ -1042,6 +1042,670 @@
|
|
|
1042
1042
|
height: auto !important;
|
|
1043
1043
|
}
|
|
1044
1044
|
|
|
1045
|
+
.wr-1 {
|
|
1046
|
+
width: 1rem !important;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.wr-2 {
|
|
1050
|
+
width: 2rem !important;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.wr-3 {
|
|
1054
|
+
width: 3rem !important;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.wr-4 {
|
|
1058
|
+
width: 4rem !important;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.wr-5 {
|
|
1062
|
+
width: 5rem !important;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.wr-6 {
|
|
1066
|
+
width: 6rem !important;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.wr-7 {
|
|
1070
|
+
width: 7rem !important;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.wr-8 {
|
|
1074
|
+
width: 8rem !important;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.wr-9 {
|
|
1078
|
+
width: 9rem !important;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.wr-10 {
|
|
1082
|
+
width: 10rem !important;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.wr-15 {
|
|
1086
|
+
width: 15rem !important;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.wr-20 {
|
|
1090
|
+
width: 20rem !important;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.wr-25 {
|
|
1094
|
+
width: 25rem !important;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.minwr-1 {
|
|
1098
|
+
min-width: 1rem !important;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.minwr-2 {
|
|
1102
|
+
min-width: 2rem !important;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.minwr-3 {
|
|
1106
|
+
min-width: 3rem !important;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.minwr-4 {
|
|
1110
|
+
min-width: 4rem !important;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.minwr-5 {
|
|
1114
|
+
min-width: 5rem !important;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.minwr-6 {
|
|
1118
|
+
min-width: 6rem !important;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.minwr-7 {
|
|
1122
|
+
min-width: 7rem !important;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.minwr-8 {
|
|
1126
|
+
min-width: 8rem !important;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.minwr-9 {
|
|
1130
|
+
min-width: 9rem !important;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.minwr-10 {
|
|
1134
|
+
min-width: 10rem !important;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.minwr-15 {
|
|
1138
|
+
min-width: 15rem !important;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.minwr-20 {
|
|
1142
|
+
min-width: 20rem !important;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.minwr-25 {
|
|
1146
|
+
min-width: 25rem !important;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.maxwr-1 {
|
|
1150
|
+
max-width: 1rem !important;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.maxwr-2 {
|
|
1154
|
+
max-width: 2rem !important;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.maxwr-3 {
|
|
1158
|
+
max-width: 3rem !important;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.maxwr-4 {
|
|
1162
|
+
max-width: 4rem !important;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.maxwr-5 {
|
|
1166
|
+
max-width: 5rem !important;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.maxwr-6 {
|
|
1170
|
+
max-width: 6rem !important;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.maxwr-7 {
|
|
1174
|
+
max-width: 7rem !important;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.maxwr-8 {
|
|
1178
|
+
max-width: 8rem !important;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.maxwr-9 {
|
|
1182
|
+
max-width: 9rem !important;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.maxwr-10 {
|
|
1186
|
+
max-width: 10rem !important;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.maxwr-15 {
|
|
1190
|
+
max-width: 15rem !important;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.maxwr-20 {
|
|
1194
|
+
max-width: 20rem !important;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.maxwr-25 {
|
|
1198
|
+
max-width: 25rem !important;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.hr-1 {
|
|
1202
|
+
height: 1rem !important;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.hr-2 {
|
|
1206
|
+
height: 2rem !important;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.hr-3 {
|
|
1210
|
+
height: 3rem !important;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.hr-4 {
|
|
1214
|
+
height: 4rem !important;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.hr-5 {
|
|
1218
|
+
height: 5rem !important;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.hr-6 {
|
|
1222
|
+
height: 6rem !important;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.hr-7 {
|
|
1226
|
+
height: 7rem !important;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.hr-8 {
|
|
1230
|
+
height: 8rem !important;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.hr-9 {
|
|
1234
|
+
height: 9rem !important;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.hr-10 {
|
|
1238
|
+
height: 10rem !important;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.hr-15 {
|
|
1242
|
+
height: 15rem !important;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.hr-20 {
|
|
1246
|
+
height: 20rem !important;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.hr-25 {
|
|
1250
|
+
height: 25rem !important;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.minhr-1 {
|
|
1254
|
+
min-height: 1rem !important;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.minhr-2 {
|
|
1258
|
+
min-height: 2rem !important;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.minhr-3 {
|
|
1262
|
+
min-height: 3rem !important;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.minhr-4 {
|
|
1266
|
+
min-height: 4rem !important;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.minhr-5 {
|
|
1270
|
+
min-height: 5rem !important;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
.minhr-6 {
|
|
1274
|
+
min-height: 6rem !important;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
.minhr-7 {
|
|
1278
|
+
min-height: 7rem !important;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.minhr-8 {
|
|
1282
|
+
min-height: 8rem !important;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.minhr-9 {
|
|
1286
|
+
min-height: 9rem !important;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.minhr-10 {
|
|
1290
|
+
min-height: 10rem !important;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.minhr-15 {
|
|
1294
|
+
min-height: 15rem !important;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.minhr-20 {
|
|
1298
|
+
min-height: 20rem !important;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.minhr-25 {
|
|
1302
|
+
min-height: 25rem !important;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.maxhr-1 {
|
|
1306
|
+
max-height: 1rem !important;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.maxhr-2 {
|
|
1310
|
+
max-height: 2rem !important;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.maxhr-3 {
|
|
1314
|
+
max-height: 3rem !important;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.maxhr-4 {
|
|
1318
|
+
max-height: 4rem !important;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.maxhr-5 {
|
|
1322
|
+
max-height: 5rem !important;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.maxhr-6 {
|
|
1326
|
+
max-height: 6rem !important;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.maxhr-7 {
|
|
1330
|
+
max-height: 7rem !important;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.maxhr-8 {
|
|
1334
|
+
max-height: 8rem !important;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.maxhr-9 {
|
|
1338
|
+
max-height: 9rem !important;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.maxhr-10 {
|
|
1342
|
+
max-height: 10rem !important;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.maxhr-15 {
|
|
1346
|
+
max-height: 15rem !important;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.maxhr-20 {
|
|
1350
|
+
max-height: 20rem !important;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.maxhr-25 {
|
|
1354
|
+
max-height: 25rem !important;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.minw-5 {
|
|
1358
|
+
min-width: 5% !important;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.minw-10 {
|
|
1362
|
+
min-width: 10% !important;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.minw-15 {
|
|
1366
|
+
min-width: 15% !important;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.minw-20 {
|
|
1370
|
+
min-width: 20% !important;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.minw-25 {
|
|
1374
|
+
min-width: 25% !important;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.minw-30 {
|
|
1378
|
+
min-width: 30% !important;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.minw-35 {
|
|
1382
|
+
min-width: 35% !important;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.minw-40 {
|
|
1386
|
+
min-width: 40% !important;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.minw-45 {
|
|
1390
|
+
min-width: 45% !important;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.minw-50 {
|
|
1394
|
+
min-width: 50% !important;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.minw-55 {
|
|
1398
|
+
min-width: 55% !important;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.minw-60 {
|
|
1402
|
+
min-width: 60% !important;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.minw-65 {
|
|
1406
|
+
min-width: 65% !important;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.minw-70 {
|
|
1410
|
+
min-width: 70% !important;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.minw-75 {
|
|
1414
|
+
min-width: 75% !important;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.minw-80 {
|
|
1418
|
+
min-width: 80% !important;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.minw-85 {
|
|
1422
|
+
min-width: 85% !important;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.minw-90 {
|
|
1426
|
+
min-width: 90% !important;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.minw-95 {
|
|
1430
|
+
min-width: 95% !important;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.minw-100 {
|
|
1434
|
+
min-width: 100% !important;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.minw-1-3 {
|
|
1438
|
+
min-width: 33.333333% !important;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.minw-2-3 {
|
|
1442
|
+
min-width: 66.666667% !important;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.maxw-5 {
|
|
1446
|
+
max-width: 5% !important;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.maxw-10 {
|
|
1450
|
+
max-width: 10% !important;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.maxw-15 {
|
|
1454
|
+
max-width: 15% !important;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.maxw-20 {
|
|
1458
|
+
max-width: 20% !important;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.maxw-25 {
|
|
1462
|
+
max-width: 25% !important;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.maxw-30 {
|
|
1466
|
+
max-width: 30% !important;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.maxw-35 {
|
|
1470
|
+
max-width: 35% !important;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.maxw-40 {
|
|
1474
|
+
max-width: 40% !important;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.maxw-45 {
|
|
1478
|
+
max-width: 45% !important;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.maxw-50 {
|
|
1482
|
+
max-width: 50% !important;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.maxw-55 {
|
|
1486
|
+
max-width: 55% !important;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.maxw-60 {
|
|
1490
|
+
max-width: 60% !important;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.maxw-65 {
|
|
1494
|
+
max-width: 65% !important;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.maxw-70 {
|
|
1498
|
+
max-width: 70% !important;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.maxw-75 {
|
|
1502
|
+
max-width: 75% !important;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.maxw-80 {
|
|
1506
|
+
max-width: 80% !important;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.maxw-85 {
|
|
1510
|
+
max-width: 85% !important;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.maxw-90 {
|
|
1514
|
+
max-width: 90% !important;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.maxw-95 {
|
|
1518
|
+
max-width: 95% !important;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.maxw-100 {
|
|
1522
|
+
max-width: 100% !important;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.maxw-1-3 {
|
|
1526
|
+
max-width: 33.333333% !important;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.maxw-2-3 {
|
|
1530
|
+
max-width: 66.666667% !important;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.minh-5 {
|
|
1534
|
+
min-height: 5% !important;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.minh-10 {
|
|
1538
|
+
min-height: 10% !important;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.minh-15 {
|
|
1542
|
+
min-height: 15% !important;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.minh-20 {
|
|
1546
|
+
min-height: 20% !important;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.minh-25 {
|
|
1550
|
+
min-height: 25% !important;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.minh-30 {
|
|
1554
|
+
min-height: 30% !important;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.minh-35 {
|
|
1558
|
+
min-height: 35% !important;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.minh-40 {
|
|
1562
|
+
min-height: 40% !important;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.minh-45 {
|
|
1566
|
+
min-height: 45% !important;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.minh-50 {
|
|
1570
|
+
min-height: 50% !important;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.minh-55 {
|
|
1574
|
+
min-height: 55% !important;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.minh-60 {
|
|
1578
|
+
min-height: 60% !important;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.minh-65 {
|
|
1582
|
+
min-height: 65% !important;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.minh-70 {
|
|
1586
|
+
min-height: 70% !important;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.minh-75 {
|
|
1590
|
+
min-height: 75% !important;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.minh-80 {
|
|
1594
|
+
min-height: 80% !important;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.minh-85 {
|
|
1598
|
+
min-height: 85% !important;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.minh-90 {
|
|
1602
|
+
min-height: 90% !important;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.minh-95 {
|
|
1606
|
+
min-height: 95% !important;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.minh-100 {
|
|
1610
|
+
min-height: 100% !important;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.minh-1-3 {
|
|
1614
|
+
min-height: 33.333333% !important;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.minh-2-3 {
|
|
1618
|
+
min-height: 66.666667% !important;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.maxh-5 {
|
|
1622
|
+
max-height: 5% !important;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.maxh-10 {
|
|
1626
|
+
max-height: 10% !important;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.maxh-15 {
|
|
1630
|
+
max-height: 15% !important;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.maxh-20 {
|
|
1634
|
+
max-height: 20% !important;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.maxh-25 {
|
|
1638
|
+
max-height: 25% !important;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.maxh-30 {
|
|
1642
|
+
max-height: 30% !important;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.maxh-35 {
|
|
1646
|
+
max-height: 35% !important;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.maxh-40 {
|
|
1650
|
+
max-height: 40% !important;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.maxh-45 {
|
|
1654
|
+
max-height: 45% !important;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.maxh-50 {
|
|
1658
|
+
max-height: 50% !important;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.maxh-55 {
|
|
1662
|
+
max-height: 55% !important;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.maxh-60 {
|
|
1666
|
+
max-height: 60% !important;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.maxh-65 {
|
|
1670
|
+
max-height: 65% !important;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.maxh-70 {
|
|
1674
|
+
max-height: 70% !important;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.maxh-75 {
|
|
1678
|
+
max-height: 75% !important;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.maxh-80 {
|
|
1682
|
+
max-height: 80% !important;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.maxh-85 {
|
|
1686
|
+
max-height: 85% !important;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.maxh-90 {
|
|
1690
|
+
max-height: 90% !important;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.maxh-95 {
|
|
1694
|
+
max-height: 95% !important;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.maxh-100 {
|
|
1698
|
+
max-height: 100% !important;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.maxh-1-3 {
|
|
1702
|
+
max-height: 33.333333% !important;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.maxh-2-3 {
|
|
1706
|
+
max-height: 66.666667% !important;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1045
1709
|
.position-static {
|
|
1046
1710
|
position: static !important;
|
|
1047
1711
|
}
|
|
@@ -3646,7 +4310,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3646
4310
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
3647
4311
|
}
|
|
3648
4312
|
.pa-card__header {
|
|
3649
|
-
padding: 0.
|
|
4313
|
+
padding: 0.5rem 1rem;
|
|
3650
4314
|
min-height: 4rem;
|
|
3651
4315
|
border-top-left-radius: 8px;
|
|
3652
4316
|
border-top-right-radius: 8px;
|
|
@@ -3683,6 +4347,10 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3683
4347
|
color: var(--pa-text-primary);
|
|
3684
4348
|
font-size: 1.6rem;
|
|
3685
4349
|
}
|
|
4350
|
+
.pa-card__header .pa-btn {
|
|
4351
|
+
margin-top: -0.25rem;
|
|
4352
|
+
margin-bottom: -0.25rem;
|
|
4353
|
+
}
|
|
3686
4354
|
.pa-card__title {
|
|
3687
4355
|
display: flex;
|
|
3688
4356
|
align-items: center;
|
|
@@ -3829,6 +4497,31 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
3829
4497
|
.pa-card__tab-content--active {
|
|
3830
4498
|
display: block;
|
|
3831
4499
|
}
|
|
4500
|
+
.pa-card__tabs--inline {
|
|
4501
|
+
display: flex;
|
|
4502
|
+
gap: 0.4rem;
|
|
4503
|
+
margin: -0.5rem 0;
|
|
4504
|
+
border-bottom: none;
|
|
4505
|
+
background: none;
|
|
4506
|
+
}
|
|
4507
|
+
.pa-card__tabs--inline .pa-card__tab {
|
|
4508
|
+
padding: 0.3rem 0.8rem;
|
|
4509
|
+
border: none;
|
|
4510
|
+
border-radius: 4px;
|
|
4511
|
+
font-size: 1.4rem;
|
|
4512
|
+
background: transparent;
|
|
4513
|
+
color: var(--pa-text-secondary);
|
|
4514
|
+
cursor: pointer;
|
|
4515
|
+
transition: all 0.1s ease-out;
|
|
4516
|
+
}
|
|
4517
|
+
.pa-card__tabs--inline .pa-card__tab:hover {
|
|
4518
|
+
background-color: rgba(0, 123, 255, 0.05);
|
|
4519
|
+
color: var(--pa-text-primary);
|
|
4520
|
+
}
|
|
4521
|
+
.pa-card__tabs--inline .pa-card__tab--active {
|
|
4522
|
+
background: var(--pa-accent);
|
|
4523
|
+
color: var(--pa-btn-primary-text);
|
|
4524
|
+
}
|
|
3832
4525
|
|
|
3833
4526
|
a.pa-card {
|
|
3834
4527
|
text-decoration: none;
|
|
@@ -4070,34 +4763,147 @@ a.pa-card p {
|
|
|
4070
4763
|
flex: 1;
|
|
4071
4764
|
justify-content: center;
|
|
4072
4765
|
}
|
|
4766
|
+
.pa-tabs--border-top {
|
|
4767
|
+
border-bottom: none;
|
|
4768
|
+
border-top: 1px solid var(--pa-border-color);
|
|
4769
|
+
}
|
|
4770
|
+
.pa-tabs--border-top .pa-tabs__item {
|
|
4771
|
+
border-bottom: none;
|
|
4772
|
+
border-top: 2px solid transparent;
|
|
4773
|
+
}
|
|
4774
|
+
.pa-tabs--border-top .pa-tabs__item--active {
|
|
4775
|
+
border-top-color: #007bff;
|
|
4776
|
+
border-bottom-color: transparent;
|
|
4777
|
+
}
|
|
4073
4778
|
.pa-tabs--sm .pa-tabs__item {
|
|
4074
|
-
padding: 0.
|
|
4779
|
+
padding: 0.8rem 1rem;
|
|
4075
4780
|
font-size: 1.2rem;
|
|
4076
4781
|
}
|
|
4077
4782
|
.pa-tabs--sm .pa-tabs__item i {
|
|
4078
4783
|
font-size: 1.2rem;
|
|
4079
4784
|
}
|
|
4080
|
-
.pa-tabs--lg .pa-tabs__item {
|
|
4081
|
-
padding:
|
|
4082
|
-
font-size: 1.8rem;
|
|
4785
|
+
.pa-tabs--lg .pa-tabs__item {
|
|
4786
|
+
padding: 0.8rem 1.4rem;
|
|
4787
|
+
font-size: 1.8rem;
|
|
4788
|
+
}
|
|
4789
|
+
.pa-tabs--lg .pa-tabs__item i {
|
|
4790
|
+
font-size: 1.8rem;
|
|
4791
|
+
}
|
|
4792
|
+
.pa-tabs__container--bordered {
|
|
4793
|
+
border: 1px solid var(--pa-border-color);
|
|
4794
|
+
border-radius: 8px;
|
|
4795
|
+
padding: 1.6rem 1rem;
|
|
4796
|
+
background-color: var(--pa-card-bg);
|
|
4797
|
+
}
|
|
4798
|
+
.pa-tabs__container--bordered .pa-tabs {
|
|
4799
|
+
border-bottom: none;
|
|
4800
|
+
padding-bottom: 1.2rem;
|
|
4801
|
+
margin-bottom: 0;
|
|
4802
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
4803
|
+
}
|
|
4804
|
+
.pa-tabs__container--bordered .pa-tabs__content {
|
|
4805
|
+
padding-top: 1.2rem;
|
|
4806
|
+
}
|
|
4807
|
+
.pa-tabs__container--card {
|
|
4808
|
+
position: relative;
|
|
4809
|
+
border: 1px solid var(--pa-border-color);
|
|
4810
|
+
border-radius: 8px;
|
|
4811
|
+
background-color: var(--pa-card-bg);
|
|
4812
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
4813
|
+
}
|
|
4814
|
+
.pa-tabs__container--card .pa-tabs {
|
|
4815
|
+
height: 4rem;
|
|
4816
|
+
padding: 0.5rem 1rem;
|
|
4817
|
+
background: var(--pa-card-header-bg);
|
|
4818
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
4819
|
+
box-sizing: border-box;
|
|
4820
|
+
border-top-left-radius: 8px;
|
|
4821
|
+
border-top-right-radius: 8px;
|
|
4822
|
+
margin-bottom: 0;
|
|
4823
|
+
align-items: center;
|
|
4824
|
+
gap: 0.4rem;
|
|
4825
|
+
flex-wrap: nowrap;
|
|
4826
|
+
overflow: visible;
|
|
4827
|
+
}
|
|
4828
|
+
.pa-tabs__container--card .pa-tabs__content {
|
|
4829
|
+
padding: 1.6rem 1rem;
|
|
4830
|
+
}
|
|
4831
|
+
.pa-tabs__container--card .pa-tabs__panel {
|
|
4832
|
+
padding-top: 0;
|
|
4833
|
+
}
|
|
4834
|
+
.pa-tabs__container--card .pa-tabs__overflow {
|
|
4835
|
+
position: relative;
|
|
4836
|
+
margin-left: auto;
|
|
4837
|
+
flex-shrink: 0;
|
|
4838
|
+
}
|
|
4839
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle {
|
|
4840
|
+
position: relative;
|
|
4841
|
+
display: flex;
|
|
4842
|
+
align-items: center;
|
|
4843
|
+
justify-content: center;
|
|
4844
|
+
width: 4rem;
|
|
4845
|
+
height: 100%;
|
|
4846
|
+
padding: 0;
|
|
4847
|
+
border: none;
|
|
4848
|
+
background: transparent;
|
|
4849
|
+
color: var(--pa-text-secondary);
|
|
4850
|
+
cursor: pointer;
|
|
4851
|
+
transition: all 0.1s ease-out;
|
|
4852
|
+
border-left: 1px solid var(--pa-border-color);
|
|
4853
|
+
margin: -0.5rem -1rem -0.5rem 0;
|
|
4854
|
+
box-sizing: content-box;
|
|
4855
|
+
height: 4rem;
|
|
4856
|
+
}
|
|
4857
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle:hover {
|
|
4858
|
+
background-color: rgba(0, 123, 255, 0.05);
|
|
4859
|
+
color: var(--pa-text-primary);
|
|
4860
|
+
}
|
|
4861
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle--has-active {
|
|
4862
|
+
color: var(--pa-accent);
|
|
4863
|
+
}
|
|
4864
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle--has-active::after {
|
|
4865
|
+
content: "";
|
|
4866
|
+
position: absolute;
|
|
4867
|
+
bottom: 0;
|
|
4868
|
+
left: 0;
|
|
4869
|
+
right: 0;
|
|
4870
|
+
height: 2px;
|
|
4871
|
+
background: var(--pa-accent);
|
|
4872
|
+
}
|
|
4873
|
+
.pa-tabs__container--card .pa-tabs__overflow-toggle i {
|
|
4874
|
+
font-size: 1.4rem;
|
|
4875
|
+
}
|
|
4876
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu {
|
|
4877
|
+
position: absolute;
|
|
4878
|
+
top: 4rem;
|
|
4879
|
+
right: 0;
|
|
4880
|
+
min-width: 15rem;
|
|
4881
|
+
background: var(--pa-card-bg);
|
|
4882
|
+
border: 1px solid var(--pa-border-color);
|
|
4883
|
+
border-radius: 4px;
|
|
4884
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
4885
|
+
z-index: 1000;
|
|
4886
|
+
display: none;
|
|
4887
|
+
flex-direction: column;
|
|
4888
|
+
padding: 0.4rem 0;
|
|
4889
|
+
}
|
|
4890
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu--open {
|
|
4891
|
+
display: flex;
|
|
4083
4892
|
}
|
|
4084
|
-
.pa-
|
|
4085
|
-
|
|
4893
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item {
|
|
4894
|
+
padding: 0.8rem 1.6rem;
|
|
4895
|
+
border: none;
|
|
4896
|
+
border-bottom: none;
|
|
4897
|
+
border-radius: 0;
|
|
4898
|
+
text-align: left;
|
|
4899
|
+
white-space: nowrap;
|
|
4086
4900
|
}
|
|
4087
|
-
.pa-tabs__container--
|
|
4088
|
-
|
|
4089
|
-
border-radius: 8px;
|
|
4090
|
-
padding: 1.6rem 1rem;
|
|
4091
|
-
background-color: var(--pa-card-bg);
|
|
4901
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item:hover {
|
|
4902
|
+
background-color: rgba(0, 123, 255, 0.05);
|
|
4092
4903
|
}
|
|
4093
|
-
.pa-tabs__container--
|
|
4904
|
+
.pa-tabs__container--card .pa-tabs__overflow-menu .pa-tabs__item--active {
|
|
4905
|
+
background-color: rgba(0, 123, 255, 0.1);
|
|
4094
4906
|
border-bottom: none;
|
|
4095
|
-
padding-bottom: 1.2rem;
|
|
4096
|
-
margin-bottom: 0;
|
|
4097
|
-
border-bottom: 1px solid var(--pa-border-color);
|
|
4098
|
-
}
|
|
4099
|
-
.pa-tabs__container--bordered .pa-tabs__content {
|
|
4100
|
-
padding-top: 1.2rem;
|
|
4101
4907
|
}
|
|
4102
4908
|
.pa-tabs__vertical-layout {
|
|
4103
4909
|
display: flex;
|
|
@@ -4119,66 +4925,6 @@ a.pa-card p {
|
|
|
4119
4925
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
|
|
4120
4926
|
width: 100%;
|
|
4121
4927
|
}
|
|
4122
|
-
.pa-tabs .pa-tabs__item--w-1x {
|
|
4123
|
-
min-width: 1rem;
|
|
4124
|
-
}
|
|
4125
|
-
.pa-tabs .pa-tabs__item--w-2x {
|
|
4126
|
-
min-width: 2rem;
|
|
4127
|
-
}
|
|
4128
|
-
.pa-tabs .pa-tabs__item--w-3x {
|
|
4129
|
-
min-width: 3rem;
|
|
4130
|
-
}
|
|
4131
|
-
.pa-tabs .pa-tabs__item--w-4x {
|
|
4132
|
-
min-width: 4rem;
|
|
4133
|
-
}
|
|
4134
|
-
.pa-tabs .pa-tabs__item--w-5x {
|
|
4135
|
-
min-width: 5rem;
|
|
4136
|
-
}
|
|
4137
|
-
.pa-tabs .pa-tabs__item--w-6x {
|
|
4138
|
-
min-width: 6rem;
|
|
4139
|
-
}
|
|
4140
|
-
.pa-tabs .pa-tabs__item--w-7x {
|
|
4141
|
-
min-width: 7rem;
|
|
4142
|
-
}
|
|
4143
|
-
.pa-tabs .pa-tabs__item--w-8x {
|
|
4144
|
-
min-width: 8rem;
|
|
4145
|
-
}
|
|
4146
|
-
.pa-tabs .pa-tabs__item--w-9x {
|
|
4147
|
-
min-width: 9rem;
|
|
4148
|
-
}
|
|
4149
|
-
.pa-tabs .pa-tabs__item--w-10x {
|
|
4150
|
-
min-width: 10rem;
|
|
4151
|
-
}
|
|
4152
|
-
.pa-tabs .pa-tabs__item--h-1x {
|
|
4153
|
-
min-height: 1rem;
|
|
4154
|
-
}
|
|
4155
|
-
.pa-tabs .pa-tabs__item--h-2x {
|
|
4156
|
-
min-height: 2rem;
|
|
4157
|
-
}
|
|
4158
|
-
.pa-tabs .pa-tabs__item--h-3x {
|
|
4159
|
-
min-height: 3rem;
|
|
4160
|
-
}
|
|
4161
|
-
.pa-tabs .pa-tabs__item--h-4x {
|
|
4162
|
-
min-height: 4rem;
|
|
4163
|
-
}
|
|
4164
|
-
.pa-tabs .pa-tabs__item--h-5x {
|
|
4165
|
-
min-height: 5rem;
|
|
4166
|
-
}
|
|
4167
|
-
.pa-tabs .pa-tabs__item--h-6x {
|
|
4168
|
-
min-height: 6rem;
|
|
4169
|
-
}
|
|
4170
|
-
.pa-tabs .pa-tabs__item--h-7x {
|
|
4171
|
-
min-height: 7rem;
|
|
4172
|
-
}
|
|
4173
|
-
.pa-tabs .pa-tabs__item--h-8x {
|
|
4174
|
-
min-height: 8rem;
|
|
4175
|
-
}
|
|
4176
|
-
.pa-tabs .pa-tabs__item--h-9x {
|
|
4177
|
-
min-height: 9rem;
|
|
4178
|
-
}
|
|
4179
|
-
.pa-tabs .pa-tabs__item--h-10x {
|
|
4180
|
-
min-height: 10rem;
|
|
4181
|
-
}
|
|
4182
4928
|
|
|
4183
4929
|
/* ========================================
|
|
4184
4930
|
Reset and Base Styles
|
|
@@ -4496,8 +5242,8 @@ a.pa-card p {
|
|
|
4496
5242
|
background-color: var(--pa-primary-bg);
|
|
4497
5243
|
}
|
|
4498
5244
|
.pa-list__avatar {
|
|
4499
|
-
width:
|
|
4500
|
-
height:
|
|
5245
|
+
width: 3.5rem;
|
|
5246
|
+
height: 3.5rem;
|
|
4501
5247
|
border-radius: 50%;
|
|
4502
5248
|
background-color: var(--pa-primary-bg);
|
|
4503
5249
|
display: flex;
|
|
@@ -4618,53 +5364,6 @@ a.pa-card p {
|
|
|
4618
5364
|
color: var(--pa-btn-dark-text);
|
|
4619
5365
|
border-color: var(--pa-btn-dark-bg);
|
|
4620
5366
|
}
|
|
4621
|
-
.pa-badge--w-1x {
|
|
4622
|
-
min-width: 1.6rem;
|
|
4623
|
-
max-width: 1.6rem;
|
|
4624
|
-
}
|
|
4625
|
-
.pa-badge--w-2x {
|
|
4626
|
-
min-width: 3.2rem;
|
|
4627
|
-
max-width: 3.2rem;
|
|
4628
|
-
}
|
|
4629
|
-
.pa-badge--w-3x {
|
|
4630
|
-
min-width: 4.8rem;
|
|
4631
|
-
max-width: 4.8rem;
|
|
4632
|
-
}
|
|
4633
|
-
.pa-badge--w-4x {
|
|
4634
|
-
min-width: 6.4rem;
|
|
4635
|
-
max-width: 6.4rem;
|
|
4636
|
-
}
|
|
4637
|
-
.pa-badge--w-5x {
|
|
4638
|
-
min-width: 8rem;
|
|
4639
|
-
max-width: 8rem;
|
|
4640
|
-
}
|
|
4641
|
-
.pa-badge--w-6x {
|
|
4642
|
-
min-width: 9.6rem;
|
|
4643
|
-
max-width: 9.6rem;
|
|
4644
|
-
}
|
|
4645
|
-
.pa-badge--w-7x {
|
|
4646
|
-
min-width: 11.2rem;
|
|
4647
|
-
max-width: 11.2rem;
|
|
4648
|
-
}
|
|
4649
|
-
.pa-badge--w-8x {
|
|
4650
|
-
min-width: 12.8rem;
|
|
4651
|
-
max-width: 12.8rem;
|
|
4652
|
-
}
|
|
4653
|
-
.pa-badge--w-9x {
|
|
4654
|
-
min-width: 14.4rem;
|
|
4655
|
-
max-width: 14.4rem;
|
|
4656
|
-
}
|
|
4657
|
-
.pa-badge--w-10x {
|
|
4658
|
-
min-width: 16rem;
|
|
4659
|
-
max-width: 16rem;
|
|
4660
|
-
}
|
|
4661
|
-
.pa-badge[class*="--w-"] {
|
|
4662
|
-
display: inline-block;
|
|
4663
|
-
overflow: hidden;
|
|
4664
|
-
text-overflow: ellipsis;
|
|
4665
|
-
white-space: nowrap;
|
|
4666
|
-
vertical-align: middle;
|
|
4667
|
-
}
|
|
4668
5367
|
.pa-badge--ellipsis-left {
|
|
4669
5368
|
direction: rtl;
|
|
4670
5369
|
text-align: left;
|
|
@@ -5214,6 +5913,7 @@ a.pa-card p {
|
|
|
5214
5913
|
======================================== */
|
|
5215
5914
|
.pa-btn {
|
|
5216
5915
|
display: inline-block;
|
|
5916
|
+
height: 3.5rem;
|
|
5217
5917
|
padding: 0.8rem 1.2rem;
|
|
5218
5918
|
border: 1px solid transparent;
|
|
5219
5919
|
border-radius: 4px;
|
|
@@ -5248,24 +5948,24 @@ a.pa-card p {
|
|
|
5248
5948
|
border-color: var(--pa-accent);
|
|
5249
5949
|
}
|
|
5250
5950
|
.pa-btn--xs {
|
|
5251
|
-
|
|
5951
|
+
height: 3.1rem;
|
|
5952
|
+
padding: 0.6rem 0.8rem;
|
|
5252
5953
|
font-size: 1.2rem;
|
|
5253
|
-
min-height: 2.8rem;
|
|
5254
5954
|
}
|
|
5255
5955
|
.pa-btn--sm {
|
|
5256
|
-
|
|
5956
|
+
height: 3.3rem;
|
|
5957
|
+
padding: 0.8rem 1rem;
|
|
5257
5958
|
font-size: 1.4rem;
|
|
5258
|
-
min-height: 3.2rem;
|
|
5259
5959
|
}
|
|
5260
5960
|
.pa-btn--lg {
|
|
5261
|
-
|
|
5961
|
+
height: 3.8rem;
|
|
5962
|
+
padding: 0.8rem 1.4rem;
|
|
5262
5963
|
font-size: 1.6rem;
|
|
5263
|
-
min-height: 4rem;
|
|
5264
5964
|
}
|
|
5265
5965
|
.pa-btn--xl {
|
|
5266
|
-
|
|
5966
|
+
height: 4.1rem;
|
|
5967
|
+
padding: 0.8rem 1.6rem;
|
|
5267
5968
|
font-size: 1.8rem;
|
|
5268
|
-
min-height: 4.4rem;
|
|
5269
5969
|
}
|
|
5270
5970
|
.pa-btn--success {
|
|
5271
5971
|
background-color: var(--pa-btn-success-bg);
|
|
@@ -5424,28 +6124,29 @@ a.pa-card p {
|
|
|
5424
6124
|
display: block;
|
|
5425
6125
|
}
|
|
5426
6126
|
.pa-btn--icon-only {
|
|
5427
|
-
width:
|
|
5428
|
-
height:
|
|
6127
|
+
width: 3.5rem;
|
|
6128
|
+
height: 3.5rem;
|
|
5429
6129
|
padding: 0;
|
|
5430
6130
|
display: flex;
|
|
5431
6131
|
align-items: center;
|
|
5432
6132
|
justify-content: center;
|
|
6133
|
+
line-height: 1;
|
|
5433
6134
|
}
|
|
5434
6135
|
.pa-btn--icon-only.pa-btn--xs {
|
|
5435
|
-
width:
|
|
5436
|
-
height:
|
|
6136
|
+
width: 3.1rem;
|
|
6137
|
+
height: 3.1rem;
|
|
5437
6138
|
}
|
|
5438
6139
|
.pa-btn--icon-only.pa-btn--sm {
|
|
5439
|
-
width: 3.
|
|
5440
|
-
height: 3.
|
|
6140
|
+
width: 3.3rem;
|
|
6141
|
+
height: 3.3rem;
|
|
5441
6142
|
}
|
|
5442
6143
|
.pa-btn--icon-only.pa-btn--lg {
|
|
5443
|
-
width:
|
|
5444
|
-
height:
|
|
6144
|
+
width: 3.8rem;
|
|
6145
|
+
height: 3.8rem;
|
|
5445
6146
|
}
|
|
5446
6147
|
.pa-btn--icon-only.pa-btn--xl {
|
|
5447
|
-
width:
|
|
5448
|
-
height:
|
|
6148
|
+
width: 4.1rem;
|
|
6149
|
+
height: 4.1rem;
|
|
5449
6150
|
}
|
|
5450
6151
|
.pa-btn__icon {
|
|
5451
6152
|
margin-right: 0.8rem;
|
|
@@ -5472,36 +6173,6 @@ a.pa-card p {
|
|
|
5472
6173
|
.pa-btn:has(.pa-btn__icon) .pa-btn__icon:last-child {
|
|
5473
6174
|
margin: 0;
|
|
5474
6175
|
}
|
|
5475
|
-
.pa-btn--w-1x {
|
|
5476
|
-
min-width: 1.6rem;
|
|
5477
|
-
}
|
|
5478
|
-
.pa-btn--w-2x {
|
|
5479
|
-
min-width: 3.2rem;
|
|
5480
|
-
}
|
|
5481
|
-
.pa-btn--w-3x {
|
|
5482
|
-
min-width: 4.8rem;
|
|
5483
|
-
}
|
|
5484
|
-
.pa-btn--w-4x {
|
|
5485
|
-
min-width: 6.4rem;
|
|
5486
|
-
}
|
|
5487
|
-
.pa-btn--w-5x {
|
|
5488
|
-
min-width: 8rem;
|
|
5489
|
-
}
|
|
5490
|
-
.pa-btn--w-6x {
|
|
5491
|
-
min-width: 9.6rem;
|
|
5492
|
-
}
|
|
5493
|
-
.pa-btn--w-7x {
|
|
5494
|
-
min-width: 11.2rem;
|
|
5495
|
-
}
|
|
5496
|
-
.pa-btn--w-8x {
|
|
5497
|
-
min-width: 12.8rem;
|
|
5498
|
-
}
|
|
5499
|
-
.pa-btn--w-9x {
|
|
5500
|
-
min-width: 14.4rem;
|
|
5501
|
-
}
|
|
5502
|
-
.pa-btn--w-10x {
|
|
5503
|
-
min-width: 16rem;
|
|
5504
|
-
}
|
|
5505
6176
|
.pa-btn--align-left {
|
|
5506
6177
|
justify-content: flex-start;
|
|
5507
6178
|
}
|
|
@@ -5529,16 +6200,10 @@ a.pa-card p {
|
|
|
5529
6200
|
|
|
5530
6201
|
.pa-btn-group {
|
|
5531
6202
|
display: inline-flex;
|
|
5532
|
-
gap: 0.
|
|
6203
|
+
gap: 0.3rem;
|
|
5533
6204
|
flex-wrap: wrap;
|
|
5534
6205
|
align-items: center;
|
|
5535
6206
|
}
|
|
5536
|
-
.pa-btn-group--compact {
|
|
5537
|
-
gap: 0.16rem;
|
|
5538
|
-
}
|
|
5539
|
-
.pa-btn-group--loose {
|
|
5540
|
-
gap: 0.8rem;
|
|
5541
|
-
}
|
|
5542
6207
|
.pa-btn-group--vertical {
|
|
5543
6208
|
flex-direction: column;
|
|
5544
6209
|
align-items: flex-start;
|
|
@@ -6037,6 +6702,168 @@ a.pa-card p {
|
|
|
6037
6702
|
border-top-color: transparent;
|
|
6038
6703
|
border-left-color: var(--pa-btn-danger-bg);
|
|
6039
6704
|
}
|
|
6705
|
+
.pa-tooltip--color-1::before {
|
|
6706
|
+
background-color: var(--pa-color-1);
|
|
6707
|
+
}
|
|
6708
|
+
.pa-tooltip--color-1::after {
|
|
6709
|
+
border-top-color: var(--pa-color-1);
|
|
6710
|
+
}
|
|
6711
|
+
.pa-tooltip--color-1.pa-tooltip--right::after {
|
|
6712
|
+
border-top-color: transparent;
|
|
6713
|
+
border-right-color: var(--pa-color-1);
|
|
6714
|
+
}
|
|
6715
|
+
.pa-tooltip--color-1.pa-tooltip--bottom::after {
|
|
6716
|
+
border-top-color: transparent;
|
|
6717
|
+
border-bottom-color: var(--pa-color-1);
|
|
6718
|
+
}
|
|
6719
|
+
.pa-tooltip--color-1.pa-tooltip--left::after {
|
|
6720
|
+
border-top-color: transparent;
|
|
6721
|
+
border-left-color: var(--pa-color-1);
|
|
6722
|
+
}
|
|
6723
|
+
.pa-tooltip--color-2::before {
|
|
6724
|
+
background-color: var(--pa-color-2);
|
|
6725
|
+
}
|
|
6726
|
+
.pa-tooltip--color-2::after {
|
|
6727
|
+
border-top-color: var(--pa-color-2);
|
|
6728
|
+
}
|
|
6729
|
+
.pa-tooltip--color-2.pa-tooltip--right::after {
|
|
6730
|
+
border-top-color: transparent;
|
|
6731
|
+
border-right-color: var(--pa-color-2);
|
|
6732
|
+
}
|
|
6733
|
+
.pa-tooltip--color-2.pa-tooltip--bottom::after {
|
|
6734
|
+
border-top-color: transparent;
|
|
6735
|
+
border-bottom-color: var(--pa-color-2);
|
|
6736
|
+
}
|
|
6737
|
+
.pa-tooltip--color-2.pa-tooltip--left::after {
|
|
6738
|
+
border-top-color: transparent;
|
|
6739
|
+
border-left-color: var(--pa-color-2);
|
|
6740
|
+
}
|
|
6741
|
+
.pa-tooltip--color-3::before {
|
|
6742
|
+
background-color: var(--pa-color-3);
|
|
6743
|
+
}
|
|
6744
|
+
.pa-tooltip--color-3::after {
|
|
6745
|
+
border-top-color: var(--pa-color-3);
|
|
6746
|
+
}
|
|
6747
|
+
.pa-tooltip--color-3.pa-tooltip--right::after {
|
|
6748
|
+
border-top-color: transparent;
|
|
6749
|
+
border-right-color: var(--pa-color-3);
|
|
6750
|
+
}
|
|
6751
|
+
.pa-tooltip--color-3.pa-tooltip--bottom::after {
|
|
6752
|
+
border-top-color: transparent;
|
|
6753
|
+
border-bottom-color: var(--pa-color-3);
|
|
6754
|
+
}
|
|
6755
|
+
.pa-tooltip--color-3.pa-tooltip--left::after {
|
|
6756
|
+
border-top-color: transparent;
|
|
6757
|
+
border-left-color: var(--pa-color-3);
|
|
6758
|
+
}
|
|
6759
|
+
.pa-tooltip--color-4::before {
|
|
6760
|
+
background-color: var(--pa-color-4);
|
|
6761
|
+
}
|
|
6762
|
+
.pa-tooltip--color-4::after {
|
|
6763
|
+
border-top-color: var(--pa-color-4);
|
|
6764
|
+
}
|
|
6765
|
+
.pa-tooltip--color-4.pa-tooltip--right::after {
|
|
6766
|
+
border-top-color: transparent;
|
|
6767
|
+
border-right-color: var(--pa-color-4);
|
|
6768
|
+
}
|
|
6769
|
+
.pa-tooltip--color-4.pa-tooltip--bottom::after {
|
|
6770
|
+
border-top-color: transparent;
|
|
6771
|
+
border-bottom-color: var(--pa-color-4);
|
|
6772
|
+
}
|
|
6773
|
+
.pa-tooltip--color-4.pa-tooltip--left::after {
|
|
6774
|
+
border-top-color: transparent;
|
|
6775
|
+
border-left-color: var(--pa-color-4);
|
|
6776
|
+
}
|
|
6777
|
+
.pa-tooltip--color-5::before {
|
|
6778
|
+
background-color: var(--pa-color-5);
|
|
6779
|
+
}
|
|
6780
|
+
.pa-tooltip--color-5::after {
|
|
6781
|
+
border-top-color: var(--pa-color-5);
|
|
6782
|
+
}
|
|
6783
|
+
.pa-tooltip--color-5.pa-tooltip--right::after {
|
|
6784
|
+
border-top-color: transparent;
|
|
6785
|
+
border-right-color: var(--pa-color-5);
|
|
6786
|
+
}
|
|
6787
|
+
.pa-tooltip--color-5.pa-tooltip--bottom::after {
|
|
6788
|
+
border-top-color: transparent;
|
|
6789
|
+
border-bottom-color: var(--pa-color-5);
|
|
6790
|
+
}
|
|
6791
|
+
.pa-tooltip--color-5.pa-tooltip--left::after {
|
|
6792
|
+
border-top-color: transparent;
|
|
6793
|
+
border-left-color: var(--pa-color-5);
|
|
6794
|
+
}
|
|
6795
|
+
.pa-tooltip--color-6::before {
|
|
6796
|
+
background-color: var(--pa-color-6);
|
|
6797
|
+
}
|
|
6798
|
+
.pa-tooltip--color-6::after {
|
|
6799
|
+
border-top-color: var(--pa-color-6);
|
|
6800
|
+
}
|
|
6801
|
+
.pa-tooltip--color-6.pa-tooltip--right::after {
|
|
6802
|
+
border-top-color: transparent;
|
|
6803
|
+
border-right-color: var(--pa-color-6);
|
|
6804
|
+
}
|
|
6805
|
+
.pa-tooltip--color-6.pa-tooltip--bottom::after {
|
|
6806
|
+
border-top-color: transparent;
|
|
6807
|
+
border-bottom-color: var(--pa-color-6);
|
|
6808
|
+
}
|
|
6809
|
+
.pa-tooltip--color-6.pa-tooltip--left::after {
|
|
6810
|
+
border-top-color: transparent;
|
|
6811
|
+
border-left-color: var(--pa-color-6);
|
|
6812
|
+
}
|
|
6813
|
+
.pa-tooltip--color-7::before {
|
|
6814
|
+
background-color: var(--pa-color-7);
|
|
6815
|
+
}
|
|
6816
|
+
.pa-tooltip--color-7::after {
|
|
6817
|
+
border-top-color: var(--pa-color-7);
|
|
6818
|
+
}
|
|
6819
|
+
.pa-tooltip--color-7.pa-tooltip--right::after {
|
|
6820
|
+
border-top-color: transparent;
|
|
6821
|
+
border-right-color: var(--pa-color-7);
|
|
6822
|
+
}
|
|
6823
|
+
.pa-tooltip--color-7.pa-tooltip--bottom::after {
|
|
6824
|
+
border-top-color: transparent;
|
|
6825
|
+
border-bottom-color: var(--pa-color-7);
|
|
6826
|
+
}
|
|
6827
|
+
.pa-tooltip--color-7.pa-tooltip--left::after {
|
|
6828
|
+
border-top-color: transparent;
|
|
6829
|
+
border-left-color: var(--pa-color-7);
|
|
6830
|
+
}
|
|
6831
|
+
.pa-tooltip--color-8::before {
|
|
6832
|
+
background-color: var(--pa-color-8);
|
|
6833
|
+
}
|
|
6834
|
+
.pa-tooltip--color-8::after {
|
|
6835
|
+
border-top-color: var(--pa-color-8);
|
|
6836
|
+
}
|
|
6837
|
+
.pa-tooltip--color-8.pa-tooltip--right::after {
|
|
6838
|
+
border-top-color: transparent;
|
|
6839
|
+
border-right-color: var(--pa-color-8);
|
|
6840
|
+
}
|
|
6841
|
+
.pa-tooltip--color-8.pa-tooltip--bottom::after {
|
|
6842
|
+
border-top-color: transparent;
|
|
6843
|
+
border-bottom-color: var(--pa-color-8);
|
|
6844
|
+
}
|
|
6845
|
+
.pa-tooltip--color-8.pa-tooltip--left::after {
|
|
6846
|
+
border-top-color: transparent;
|
|
6847
|
+
border-left-color: var(--pa-color-8);
|
|
6848
|
+
}
|
|
6849
|
+
.pa-tooltip--color-9::before {
|
|
6850
|
+
background-color: var(--pa-color-9);
|
|
6851
|
+
}
|
|
6852
|
+
.pa-tooltip--color-9::after {
|
|
6853
|
+
border-top-color: var(--pa-color-9);
|
|
6854
|
+
}
|
|
6855
|
+
.pa-tooltip--color-9.pa-tooltip--right::after {
|
|
6856
|
+
border-top-color: transparent;
|
|
6857
|
+
border-right-color: var(--pa-color-9);
|
|
6858
|
+
}
|
|
6859
|
+
.pa-tooltip--color-9.pa-tooltip--bottom::after {
|
|
6860
|
+
border-top-color: transparent;
|
|
6861
|
+
border-bottom-color: var(--pa-color-9);
|
|
6862
|
+
}
|
|
6863
|
+
.pa-tooltip--color-9.pa-tooltip--left::after {
|
|
6864
|
+
border-top-color: transparent;
|
|
6865
|
+
border-left-color: var(--pa-color-9);
|
|
6866
|
+
}
|
|
6040
6867
|
.pa-tooltip--auto-flip-bottom::before {
|
|
6041
6868
|
bottom: auto !important;
|
|
6042
6869
|
top: calc(100% + 8px) !important;
|
|
@@ -6156,6 +6983,7 @@ a.pa-card p {
|
|
|
6156
6983
|
font-size: 1.4rem;
|
|
6157
6984
|
line-height: 1.5;
|
|
6158
6985
|
color: var(--pa-text-primary);
|
|
6986
|
+
text-align: left;
|
|
6159
6987
|
}
|
|
6160
6988
|
.pa-popover__body p {
|
|
6161
6989
|
margin: 0 0 0.8rem 0;
|
|
@@ -6209,6 +7037,12 @@ a.pa-card p {
|
|
|
6209
7037
|
min-width: 32rem;
|
|
6210
7038
|
max-width: 44.8rem;
|
|
6211
7039
|
}
|
|
7040
|
+
.pa-popover--center .pa-popover__body {
|
|
7041
|
+
text-align: center;
|
|
7042
|
+
}
|
|
7043
|
+
.pa-popover--right .pa-popover__body {
|
|
7044
|
+
text-align: right;
|
|
7045
|
+
}
|
|
6212
7046
|
|
|
6213
7047
|
.pa-tooltip-floating {
|
|
6214
7048
|
background-color: var(--pa-tooltip-bg);
|
|
@@ -6244,6 +7078,33 @@ a.pa-card p {
|
|
|
6244
7078
|
background-color: var(--pa-btn-danger-bg);
|
|
6245
7079
|
color: var(--pa-btn-danger-text);
|
|
6246
7080
|
}
|
|
7081
|
+
.pa-tooltip-floating.pa-tooltip--color-1 {
|
|
7082
|
+
background-color: var(--pa-color-1);
|
|
7083
|
+
}
|
|
7084
|
+
.pa-tooltip-floating.pa-tooltip--color-2 {
|
|
7085
|
+
background-color: var(--pa-color-2);
|
|
7086
|
+
}
|
|
7087
|
+
.pa-tooltip-floating.pa-tooltip--color-3 {
|
|
7088
|
+
background-color: var(--pa-color-3);
|
|
7089
|
+
}
|
|
7090
|
+
.pa-tooltip-floating.pa-tooltip--color-4 {
|
|
7091
|
+
background-color: var(--pa-color-4);
|
|
7092
|
+
}
|
|
7093
|
+
.pa-tooltip-floating.pa-tooltip--color-5 {
|
|
7094
|
+
background-color: var(--pa-color-5);
|
|
7095
|
+
}
|
|
7096
|
+
.pa-tooltip-floating.pa-tooltip--color-6 {
|
|
7097
|
+
background-color: var(--pa-color-6);
|
|
7098
|
+
}
|
|
7099
|
+
.pa-tooltip-floating.pa-tooltip--color-7 {
|
|
7100
|
+
background-color: var(--pa-color-7);
|
|
7101
|
+
}
|
|
7102
|
+
.pa-tooltip-floating.pa-tooltip--color-8 {
|
|
7103
|
+
background-color: var(--pa-color-8);
|
|
7104
|
+
}
|
|
7105
|
+
.pa-tooltip-floating.pa-tooltip--color-9 {
|
|
7106
|
+
background-color: var(--pa-color-9);
|
|
7107
|
+
}
|
|
6247
7108
|
|
|
6248
7109
|
/* ========================================
|
|
6249
7110
|
Reset and Base Styles
|
|
@@ -6594,6 +7455,7 @@ a.pa-card p {
|
|
|
6594
7455
|
======================================== */
|
|
6595
7456
|
.pa-input {
|
|
6596
7457
|
width: 100%;
|
|
7458
|
+
height: 3.5rem;
|
|
6597
7459
|
padding: 0.8rem 0.8rem;
|
|
6598
7460
|
border: 1px solid var(--pa-border-color);
|
|
6599
7461
|
border-radius: 4px;
|
|
@@ -6610,6 +7472,7 @@ a.pa-card p {
|
|
|
6610
7472
|
|
|
6611
7473
|
.pa-select {
|
|
6612
7474
|
width: 100%;
|
|
7475
|
+
height: 3.5rem;
|
|
6613
7476
|
padding: 0.7rem 0.5rem;
|
|
6614
7477
|
border: 1px solid var(--pa-border-color);
|
|
6615
7478
|
border-radius: 4px;
|
|
@@ -6647,24 +7510,28 @@ a.pa-card p {
|
|
|
6647
7510
|
|
|
6648
7511
|
.pa-input--xs,
|
|
6649
7512
|
.pa-select--xs {
|
|
7513
|
+
height: 3.1rem;
|
|
6650
7514
|
padding: 0.6rem 0.8rem;
|
|
6651
7515
|
font-size: 1.2rem;
|
|
6652
7516
|
}
|
|
6653
7517
|
|
|
6654
7518
|
.pa-input--sm,
|
|
6655
7519
|
.pa-select--sm {
|
|
7520
|
+
height: 3.3rem;
|
|
6656
7521
|
padding: 0.8rem 0.8rem;
|
|
6657
7522
|
font-size: 1.4rem;
|
|
6658
7523
|
}
|
|
6659
7524
|
|
|
6660
7525
|
.pa-input--lg,
|
|
6661
7526
|
.pa-select--lg {
|
|
7527
|
+
height: 3.8rem;
|
|
6662
7528
|
padding: 0.8rem 0.8rem;
|
|
6663
7529
|
font-size: 1.6rem;
|
|
6664
7530
|
}
|
|
6665
7531
|
|
|
6666
7532
|
.pa-input--xl,
|
|
6667
7533
|
.pa-select--xl {
|
|
7534
|
+
height: 4.1rem;
|
|
6668
7535
|
padding: 0.8rem 0.8rem;
|
|
6669
7536
|
font-size: 1.8rem;
|
|
6670
7537
|
}
|
|
@@ -7595,7 +8462,7 @@ web-daterangepicker {
|
|
|
7595
8462
|
--drp-button-apply-color: #ffffff;
|
|
7596
8463
|
--drp-button-apply-border: #007bff;
|
|
7597
8464
|
/* Button sizing */
|
|
7598
|
-
--drp-button-padding: 0.
|
|
8465
|
+
--drp-button-padding: 0.8rem 1rem;
|
|
7599
8466
|
--drp-button-font-size: 1.4rem;
|
|
7600
8467
|
--drp-button-border-radius: 4px;
|
|
7601
8468
|
--drp-button-gap: 0.8rem;
|
|
@@ -8504,7 +9371,7 @@ web-daterangepicker {
|
|
|
8504
9371
|
}
|
|
8505
9372
|
.pa-table th,
|
|
8506
9373
|
.pa-table td {
|
|
8507
|
-
padding: 0.
|
|
9374
|
+
padding: 0.8rem 0.8rem;
|
|
8508
9375
|
text-align: left;
|
|
8509
9376
|
border-bottom: 1px solid var(--pa-border-color);
|
|
8510
9377
|
vertical-align: middle;
|
|
@@ -8519,6 +9386,7 @@ web-daterangepicker {
|
|
|
8519
9386
|
.pa-table td {
|
|
8520
9387
|
color: var(--pa-text-primary);
|
|
8521
9388
|
background-color: var(--pa-table-bg);
|
|
9389
|
+
height: 3.5rem0.8rem;
|
|
8522
9390
|
}
|
|
8523
9391
|
.pa-table td .pa-btn {
|
|
8524
9392
|
margin-top: -0.25rem;
|
|
@@ -8530,13 +9398,29 @@ web-daterangepicker {
|
|
|
8530
9398
|
.pa-table--striped tbody tr:nth-child(even) td {
|
|
8531
9399
|
background-color: var(--pa-table-stripe);
|
|
8532
9400
|
}
|
|
8533
|
-
.pa-table--
|
|
8534
|
-
.
|
|
8535
|
-
|
|
9401
|
+
.pa-table--xs th, .pa-table--xs td {
|
|
9402
|
+
padding: 0.6rem 0.8rem;
|
|
9403
|
+
}
|
|
9404
|
+
.pa-table--xs td {
|
|
9405
|
+
height: 3.1rem0.7rem;
|
|
9406
|
+
}
|
|
9407
|
+
.pa-table--sm th, .pa-table--sm td {
|
|
9408
|
+
padding: 0.8rem 1rem;
|
|
9409
|
+
}
|
|
9410
|
+
.pa-table--sm td {
|
|
9411
|
+
height: 3.3rem0.8rem;
|
|
9412
|
+
}
|
|
9413
|
+
.pa-table--lg th, .pa-table--lg td {
|
|
9414
|
+
padding: 0.8rem 1.4rem;
|
|
9415
|
+
}
|
|
9416
|
+
.pa-table--lg td {
|
|
9417
|
+
height: 3.8rem0.8rem;
|
|
9418
|
+
}
|
|
9419
|
+
.pa-table--xl th, .pa-table--xl td {
|
|
9420
|
+
padding: 0.8rem 1.6rem;
|
|
8536
9421
|
}
|
|
8537
|
-
.pa-table--
|
|
8538
|
-
.
|
|
8539
|
-
padding: 1.5rem 2.4rem;
|
|
9422
|
+
.pa-table--xl td {
|
|
9423
|
+
height: 4.1rem0.8rem;
|
|
8540
9424
|
}
|
|
8541
9425
|
.pa-table tbody tr:hover {
|
|
8542
9426
|
background-color: var(--pa-table-hover-bg);
|
|
@@ -9321,7 +10205,7 @@ code {
|
|
|
9321
10205
|
.pa-profile-panel__header {
|
|
9322
10206
|
padding: 2.4rem;
|
|
9323
10207
|
background-color: var(--pa-header-bg);
|
|
9324
|
-
border-bottom: 1px solid var(--pa-
|
|
10208
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
9325
10209
|
display: flex;
|
|
9326
10210
|
align-items: flex-start;
|
|
9327
10211
|
gap: 1.6rem;
|
|
@@ -9342,7 +10226,7 @@ code {
|
|
|
9342
10226
|
}
|
|
9343
10227
|
.pa-profile-panel__avatar-icon {
|
|
9344
10228
|
font-size: 3.2rem;
|
|
9345
|
-
color:
|
|
10229
|
+
color: var(--pa-accent);
|
|
9346
10230
|
}
|
|
9347
10231
|
.pa-profile-panel__info {
|
|
9348
10232
|
flex: 1;
|
|
@@ -9403,7 +10287,7 @@ code {
|
|
|
9403
10287
|
}
|
|
9404
10288
|
.pa-profile-panel__body {
|
|
9405
10289
|
flex: 1;
|
|
9406
|
-
padding: 2.4rem;
|
|
10290
|
+
padding: 2.4rem 0;
|
|
9407
10291
|
display: flex;
|
|
9408
10292
|
flex-direction: column;
|
|
9409
10293
|
gap: 3.2rem;
|
|
@@ -9439,16 +10323,29 @@ code {
|
|
|
9439
10323
|
.pa-profile-panel__nav-icon {
|
|
9440
10324
|
font-size: 1.6rem;
|
|
9441
10325
|
width: 2.4rem;
|
|
9442
|
-
|
|
10326
|
+
height: 2.4rem;
|
|
10327
|
+
display: flex;
|
|
10328
|
+
align-items: center;
|
|
10329
|
+
justify-content: center;
|
|
9443
10330
|
}
|
|
9444
10331
|
.pa-profile-panel__actions {
|
|
9445
10332
|
display: flex;
|
|
9446
10333
|
flex-direction: column;
|
|
9447
10334
|
gap: 1.2rem;
|
|
9448
10335
|
margin-top: auto;
|
|
10336
|
+
padding: 0 1.6rem;
|
|
10337
|
+
}
|
|
10338
|
+
.pa-profile-panel__footer {
|
|
10339
|
+
flex-shrink: 0;
|
|
10340
|
+
padding: 2.4rem;
|
|
10341
|
+
border-top: 1px solid var(--pa-border-color);
|
|
10342
|
+
background-color: var(--pa-card-bg);
|
|
10343
|
+
display: flex;
|
|
10344
|
+
flex-direction: column;
|
|
10345
|
+
gap: 1.2rem;
|
|
9449
10346
|
}
|
|
9450
10347
|
.pa-profile-panel__tabs {
|
|
9451
|
-
padding: 0
|
|
10348
|
+
padding: 0 1.6rem;
|
|
9452
10349
|
border-bottom: 1px solid var(--pa-border-color);
|
|
9453
10350
|
background-color: var(--pa-header-bg);
|
|
9454
10351
|
}
|
|
@@ -9462,17 +10359,12 @@ code {
|
|
|
9462
10359
|
}
|
|
9463
10360
|
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
9464
10361
|
color: var(--pa-header-text);
|
|
9465
|
-
background-color:
|
|
10362
|
+
background-color: var(--pa-accent-light);
|
|
9466
10363
|
}
|
|
9467
10364
|
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
9468
10365
|
color: var(--pa-header-text);
|
|
9469
10366
|
border-bottom-color: var(--pa-accent);
|
|
9470
10367
|
}
|
|
9471
|
-
.pa-profile-panel__favorites {
|
|
9472
|
-
display: flex;
|
|
9473
|
-
flex-direction: column;
|
|
9474
|
-
gap: 0.8rem;
|
|
9475
|
-
}
|
|
9476
10368
|
.pa-profile-panel__favorites ul {
|
|
9477
10369
|
list-style: none;
|
|
9478
10370
|
margin: 0;
|
|
@@ -9504,7 +10396,10 @@ code {
|
|
|
9504
10396
|
.pa-profile-panel__favorite-icon {
|
|
9505
10397
|
font-size: 1.6rem;
|
|
9506
10398
|
width: 2.4rem;
|
|
9507
|
-
|
|
10399
|
+
height: 2.4rem;
|
|
10400
|
+
display: flex;
|
|
10401
|
+
align-items: center;
|
|
10402
|
+
justify-content: center;
|
|
9508
10403
|
}
|
|
9509
10404
|
.pa-profile-panel__favorite-label {
|
|
9510
10405
|
flex: 1;
|
|
@@ -9514,7 +10409,7 @@ code {
|
|
|
9514
10409
|
margin-left: auto;
|
|
9515
10410
|
background: none;
|
|
9516
10411
|
border: none;
|
|
9517
|
-
padding: 0.
|
|
10412
|
+
padding: 0.4rem;
|
|
9518
10413
|
color: var(--pa-text-secondary);
|
|
9519
10414
|
cursor: pointer;
|
|
9520
10415
|
border-radius: 4px;
|
|
@@ -9531,7 +10426,7 @@ code {
|
|
|
9531
10426
|
}
|
|
9532
10427
|
.pa-profile-panel__favorites-add {
|
|
9533
10428
|
margin-top: auto;
|
|
9534
|
-
padding
|
|
10429
|
+
padding: 1.2rem 1.6rem 0;
|
|
9535
10430
|
}
|
|
9536
10431
|
|
|
9537
10432
|
@media (max-width: 768px) {
|