@keenmate/pure-admin-core 1.0.0-rc03 → 1.0.0-rc04
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/css/main.css +709 -169
- package/package.json +1 -1
- package/snippets/badges.html +7 -6
- package/snippets/buttons.html +15 -13
- package/snippets/profile.html +67 -2
- package/snippets/tabs.html +47 -17
- package/snippets/tooltips.html +1 -1
- package/src/scss/core-components/_buttons.scss +0 -54
- package/src/scss/core-components/_profile.scss +27 -13
- package/src/scss/core-components/_tabs.scss +16 -83
- package/src/scss/core-components/badges/_badge-base.scss +0 -21
- package/src/scss/utilities.scss +197 -0
- package/src/scss/variables/_components.scss +14 -15
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
|
}
|
|
@@ -4070,15 +4734,27 @@ a.pa-card p {
|
|
|
4070
4734
|
flex: 1;
|
|
4071
4735
|
justify-content: center;
|
|
4072
4736
|
}
|
|
4737
|
+
.pa-tabs--border-top {
|
|
4738
|
+
border-bottom: none;
|
|
4739
|
+
border-top: 1px solid var(--pa-border-color);
|
|
4740
|
+
}
|
|
4741
|
+
.pa-tabs--border-top .pa-tabs__item {
|
|
4742
|
+
border-bottom: none;
|
|
4743
|
+
border-top: 2px solid transparent;
|
|
4744
|
+
}
|
|
4745
|
+
.pa-tabs--border-top .pa-tabs__item--active {
|
|
4746
|
+
border-top-color: #007bff;
|
|
4747
|
+
border-bottom-color: transparent;
|
|
4748
|
+
}
|
|
4073
4749
|
.pa-tabs--sm .pa-tabs__item {
|
|
4074
|
-
padding: 0.
|
|
4750
|
+
padding: 0.8rem 1rem;
|
|
4075
4751
|
font-size: 1.2rem;
|
|
4076
4752
|
}
|
|
4077
4753
|
.pa-tabs--sm .pa-tabs__item i {
|
|
4078
4754
|
font-size: 1.2rem;
|
|
4079
4755
|
}
|
|
4080
4756
|
.pa-tabs--lg .pa-tabs__item {
|
|
4081
|
-
padding:
|
|
4757
|
+
padding: 0.8rem 1.4rem;
|
|
4082
4758
|
font-size: 1.8rem;
|
|
4083
4759
|
}
|
|
4084
4760
|
.pa-tabs--lg .pa-tabs__item i {
|
|
@@ -4119,66 +4795,6 @@ a.pa-card p {
|
|
|
4119
4795
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
|
|
4120
4796
|
width: 100%;
|
|
4121
4797
|
}
|
|
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
4798
|
|
|
4183
4799
|
/* ========================================
|
|
4184
4800
|
Reset and Base Styles
|
|
@@ -4618,53 +5234,6 @@ a.pa-card p {
|
|
|
4618
5234
|
color: var(--pa-btn-dark-text);
|
|
4619
5235
|
border-color: var(--pa-btn-dark-bg);
|
|
4620
5236
|
}
|
|
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
5237
|
.pa-badge--ellipsis-left {
|
|
4669
5238
|
direction: rtl;
|
|
4670
5239
|
text-align: left;
|
|
@@ -5248,24 +5817,20 @@ a.pa-card p {
|
|
|
5248
5817
|
border-color: var(--pa-accent);
|
|
5249
5818
|
}
|
|
5250
5819
|
.pa-btn--xs {
|
|
5251
|
-
padding: 0.
|
|
5820
|
+
padding: 0.6rem 0.8rem;
|
|
5252
5821
|
font-size: 1.2rem;
|
|
5253
|
-
min-height: 2.8rem;
|
|
5254
5822
|
}
|
|
5255
5823
|
.pa-btn--sm {
|
|
5256
|
-
padding: 0.
|
|
5824
|
+
padding: 0.8rem 1rem;
|
|
5257
5825
|
font-size: 1.4rem;
|
|
5258
|
-
min-height: 3.2rem;
|
|
5259
5826
|
}
|
|
5260
5827
|
.pa-btn--lg {
|
|
5261
|
-
padding:
|
|
5828
|
+
padding: 0.8rem 1.4rem;
|
|
5262
5829
|
font-size: 1.6rem;
|
|
5263
|
-
min-height: 4rem;
|
|
5264
5830
|
}
|
|
5265
5831
|
.pa-btn--xl {
|
|
5266
|
-
padding:
|
|
5832
|
+
padding: 0.8rem 1.6rem;
|
|
5267
5833
|
font-size: 1.8rem;
|
|
5268
|
-
min-height: 4.4rem;
|
|
5269
5834
|
}
|
|
5270
5835
|
.pa-btn--success {
|
|
5271
5836
|
background-color: var(--pa-btn-success-bg);
|
|
@@ -5472,36 +6037,6 @@ a.pa-card p {
|
|
|
5472
6037
|
.pa-btn:has(.pa-btn__icon) .pa-btn__icon:last-child {
|
|
5473
6038
|
margin: 0;
|
|
5474
6039
|
}
|
|
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
6040
|
.pa-btn--align-left {
|
|
5506
6041
|
justify-content: flex-start;
|
|
5507
6042
|
}
|
|
@@ -5529,16 +6064,10 @@ a.pa-card p {
|
|
|
5529
6064
|
|
|
5530
6065
|
.pa-btn-group {
|
|
5531
6066
|
display: inline-flex;
|
|
5532
|
-
gap: 0.
|
|
6067
|
+
gap: 0.3rem;
|
|
5533
6068
|
flex-wrap: wrap;
|
|
5534
6069
|
align-items: center;
|
|
5535
6070
|
}
|
|
5536
|
-
.pa-btn-group--compact {
|
|
5537
|
-
gap: 0.16rem;
|
|
5538
|
-
}
|
|
5539
|
-
.pa-btn-group--loose {
|
|
5540
|
-
gap: 0.8rem;
|
|
5541
|
-
}
|
|
5542
6071
|
.pa-btn-group--vertical {
|
|
5543
6072
|
flex-direction: column;
|
|
5544
6073
|
align-items: flex-start;
|
|
@@ -7595,7 +8124,7 @@ web-daterangepicker {
|
|
|
7595
8124
|
--drp-button-apply-color: #ffffff;
|
|
7596
8125
|
--drp-button-apply-border: #007bff;
|
|
7597
8126
|
/* Button sizing */
|
|
7598
|
-
--drp-button-padding: 0.
|
|
8127
|
+
--drp-button-padding: 0.8rem 1rem;
|
|
7599
8128
|
--drp-button-font-size: 1.4rem;
|
|
7600
8129
|
--drp-button-border-radius: 4px;
|
|
7601
8130
|
--drp-button-gap: 0.8rem;
|
|
@@ -9321,7 +9850,7 @@ code {
|
|
|
9321
9850
|
.pa-profile-panel__header {
|
|
9322
9851
|
padding: 2.4rem;
|
|
9323
9852
|
background-color: var(--pa-header-bg);
|
|
9324
|
-
border-bottom: 1px solid var(--pa-
|
|
9853
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
9325
9854
|
display: flex;
|
|
9326
9855
|
align-items: flex-start;
|
|
9327
9856
|
gap: 1.6rem;
|
|
@@ -9342,7 +9871,7 @@ code {
|
|
|
9342
9871
|
}
|
|
9343
9872
|
.pa-profile-panel__avatar-icon {
|
|
9344
9873
|
font-size: 3.2rem;
|
|
9345
|
-
color:
|
|
9874
|
+
color: var(--pa-accent);
|
|
9346
9875
|
}
|
|
9347
9876
|
.pa-profile-panel__info {
|
|
9348
9877
|
flex: 1;
|
|
@@ -9403,7 +9932,7 @@ code {
|
|
|
9403
9932
|
}
|
|
9404
9933
|
.pa-profile-panel__body {
|
|
9405
9934
|
flex: 1;
|
|
9406
|
-
padding: 2.4rem;
|
|
9935
|
+
padding: 2.4rem 0;
|
|
9407
9936
|
display: flex;
|
|
9408
9937
|
flex-direction: column;
|
|
9409
9938
|
gap: 3.2rem;
|
|
@@ -9439,16 +9968,29 @@ code {
|
|
|
9439
9968
|
.pa-profile-panel__nav-icon {
|
|
9440
9969
|
font-size: 1.6rem;
|
|
9441
9970
|
width: 2.4rem;
|
|
9442
|
-
|
|
9971
|
+
height: 2.4rem;
|
|
9972
|
+
display: flex;
|
|
9973
|
+
align-items: center;
|
|
9974
|
+
justify-content: center;
|
|
9443
9975
|
}
|
|
9444
9976
|
.pa-profile-panel__actions {
|
|
9445
9977
|
display: flex;
|
|
9446
9978
|
flex-direction: column;
|
|
9447
9979
|
gap: 1.2rem;
|
|
9448
9980
|
margin-top: auto;
|
|
9981
|
+
padding: 0 1.6rem;
|
|
9982
|
+
}
|
|
9983
|
+
.pa-profile-panel__footer {
|
|
9984
|
+
flex-shrink: 0;
|
|
9985
|
+
padding: 2.4rem;
|
|
9986
|
+
border-top: 1px solid var(--pa-border-color);
|
|
9987
|
+
background-color: var(--pa-card-bg);
|
|
9988
|
+
display: flex;
|
|
9989
|
+
flex-direction: column;
|
|
9990
|
+
gap: 1.2rem;
|
|
9449
9991
|
}
|
|
9450
9992
|
.pa-profile-panel__tabs {
|
|
9451
|
-
padding: 0
|
|
9993
|
+
padding: 0 1.6rem;
|
|
9452
9994
|
border-bottom: 1px solid var(--pa-border-color);
|
|
9453
9995
|
background-color: var(--pa-header-bg);
|
|
9454
9996
|
}
|
|
@@ -9462,17 +10004,12 @@ code {
|
|
|
9462
10004
|
}
|
|
9463
10005
|
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
9464
10006
|
color: var(--pa-header-text);
|
|
9465
|
-
background-color:
|
|
10007
|
+
background-color: var(--pa-accent-light);
|
|
9466
10008
|
}
|
|
9467
10009
|
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
9468
10010
|
color: var(--pa-header-text);
|
|
9469
10011
|
border-bottom-color: var(--pa-accent);
|
|
9470
10012
|
}
|
|
9471
|
-
.pa-profile-panel__favorites {
|
|
9472
|
-
display: flex;
|
|
9473
|
-
flex-direction: column;
|
|
9474
|
-
gap: 0.8rem;
|
|
9475
|
-
}
|
|
9476
10013
|
.pa-profile-panel__favorites ul {
|
|
9477
10014
|
list-style: none;
|
|
9478
10015
|
margin: 0;
|
|
@@ -9504,7 +10041,10 @@ code {
|
|
|
9504
10041
|
.pa-profile-panel__favorite-icon {
|
|
9505
10042
|
font-size: 1.6rem;
|
|
9506
10043
|
width: 2.4rem;
|
|
9507
|
-
|
|
10044
|
+
height: 2.4rem;
|
|
10045
|
+
display: flex;
|
|
10046
|
+
align-items: center;
|
|
10047
|
+
justify-content: center;
|
|
9508
10048
|
}
|
|
9509
10049
|
.pa-profile-panel__favorite-label {
|
|
9510
10050
|
flex: 1;
|
|
@@ -9514,7 +10054,7 @@ code {
|
|
|
9514
10054
|
margin-left: auto;
|
|
9515
10055
|
background: none;
|
|
9516
10056
|
border: none;
|
|
9517
|
-
padding: 0.
|
|
10057
|
+
padding: 0.4rem;
|
|
9518
10058
|
color: var(--pa-text-secondary);
|
|
9519
10059
|
cursor: pointer;
|
|
9520
10060
|
border-radius: 4px;
|
|
@@ -9531,7 +10071,7 @@ code {
|
|
|
9531
10071
|
}
|
|
9532
10072
|
.pa-profile-panel__favorites-add {
|
|
9533
10073
|
margin-top: auto;
|
|
9534
|
-
padding
|
|
10074
|
+
padding: 1.2rem 1.6rem 0;
|
|
9535
10075
|
}
|
|
9536
10076
|
|
|
9537
10077
|
@media (max-width: 768px) {
|