@keenmate/pure-admin-core 1.0.0-rc02 → 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/README.md +14 -26
- package/dist/css/main.css +1143 -202
- package/package.json +1 -1
- package/snippets/badges.html +7 -6
- package/snippets/buttons.html +15 -13
- package/snippets/callouts.html +129 -0
- package/snippets/profile.html +115 -6
- package/snippets/tabs.html +47 -17
- package/snippets/tooltips.html +1 -1
- package/src/scss/_base-css-variables.scss +14 -0
- package/src/scss/_core.scss +3 -0
- package/src/scss/core-components/_buttons.scss +0 -54
- package/src/scss/core-components/_callouts.scss +139 -0
- package/src/scss/core-components/_profile.scss +39 -13
- package/src/scss/core-components/_tables.scss +0 -13
- package/src/scss/core-components/_tabs.scss +16 -83
- package/src/scss/core-components/_utilities.scss +53 -0
- package/src/scss/core-components/badges/_badge-base.scss +0 -21
- package/src/scss/utilities.scss +260 -84
- package/src/scss/variables/_colors.scss +15 -0
- package/src/scss/variables/_components.scss +19 -15
package/dist/css/main.css
CHANGED
|
@@ -872,26 +872,82 @@
|
|
|
872
872
|
white-space: nowrap !important;
|
|
873
873
|
}
|
|
874
874
|
|
|
875
|
+
.w-5 {
|
|
876
|
+
width: 5% !important;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.w-10 {
|
|
880
|
+
width: 10% !important;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.w-15 {
|
|
884
|
+
width: 15% !important;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.w-20 {
|
|
888
|
+
width: 20% !important;
|
|
889
|
+
}
|
|
890
|
+
|
|
875
891
|
.w-25 {
|
|
876
892
|
width: 25% !important;
|
|
877
893
|
}
|
|
878
894
|
|
|
879
|
-
.w-
|
|
880
|
-
width:
|
|
895
|
+
.w-30 {
|
|
896
|
+
width: 30% !important;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.w-35 {
|
|
900
|
+
width: 35% !important;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.w-40 {
|
|
904
|
+
width: 40% !important;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.w-45 {
|
|
908
|
+
width: 45% !important;
|
|
881
909
|
}
|
|
882
910
|
|
|
883
911
|
.w-50 {
|
|
884
912
|
width: 50% !important;
|
|
885
913
|
}
|
|
886
914
|
|
|
887
|
-
.w-
|
|
888
|
-
width:
|
|
915
|
+
.w-55 {
|
|
916
|
+
width: 55% !important;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.w-60 {
|
|
920
|
+
width: 60% !important;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.w-65 {
|
|
924
|
+
width: 65% !important;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.w-70 {
|
|
928
|
+
width: 70% !important;
|
|
889
929
|
}
|
|
890
930
|
|
|
891
931
|
.w-75 {
|
|
892
932
|
width: 75% !important;
|
|
893
933
|
}
|
|
894
934
|
|
|
935
|
+
.w-80 {
|
|
936
|
+
width: 80% !important;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.w-85 {
|
|
940
|
+
width: 85% !important;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.w-90 {
|
|
944
|
+
width: 90% !important;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.w-95 {
|
|
948
|
+
width: 95% !important;
|
|
949
|
+
}
|
|
950
|
+
|
|
895
951
|
.w-100 {
|
|
896
952
|
width: 100% !important;
|
|
897
953
|
}
|
|
@@ -900,20 +956,20 @@
|
|
|
900
956
|
width: auto !important;
|
|
901
957
|
}
|
|
902
958
|
|
|
903
|
-
.
|
|
904
|
-
|
|
959
|
+
.w-1-3 {
|
|
960
|
+
width: 33.333333% !important;
|
|
905
961
|
}
|
|
906
962
|
|
|
907
|
-
.
|
|
908
|
-
|
|
963
|
+
.w-2-3 {
|
|
964
|
+
width: 66.666667% !important;
|
|
909
965
|
}
|
|
910
966
|
|
|
911
|
-
.mw-
|
|
912
|
-
min-width:
|
|
967
|
+
.mw-25 {
|
|
968
|
+
min-width: 25% !important;
|
|
913
969
|
}
|
|
914
970
|
|
|
915
|
-
.mw-
|
|
916
|
-
min-width:
|
|
971
|
+
.mw-50 {
|
|
972
|
+
min-width: 50% !important;
|
|
917
973
|
}
|
|
918
974
|
|
|
919
975
|
.mw-75 {
|
|
@@ -928,26 +984,24 @@
|
|
|
928
984
|
min-width: auto !important;
|
|
929
985
|
}
|
|
930
986
|
|
|
987
|
+
.mw-1-3 {
|
|
988
|
+
min-width: 33.333333% !important;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.mw-2-3 {
|
|
992
|
+
min-width: 66.666667% !important;
|
|
993
|
+
}
|
|
994
|
+
|
|
931
995
|
.w-25-fixed {
|
|
932
996
|
min-width: 25% !important;
|
|
933
997
|
width: 25% !important;
|
|
934
998
|
}
|
|
935
999
|
|
|
936
|
-
.w-33-fixed {
|
|
937
|
-
min-width: 33.333333% !important;
|
|
938
|
-
width: 33.333333% !important;
|
|
939
|
-
}
|
|
940
|
-
|
|
941
1000
|
.w-50-fixed {
|
|
942
1001
|
min-width: 50% !important;
|
|
943
1002
|
width: 50% !important;
|
|
944
1003
|
}
|
|
945
1004
|
|
|
946
|
-
.w-66-fixed {
|
|
947
|
-
min-width: 66.666667% !important;
|
|
948
|
-
width: 66.666667% !important;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
1005
|
.w-75-fixed {
|
|
952
1006
|
min-width: 75% !important;
|
|
953
1007
|
width: 75% !important;
|
|
@@ -958,6 +1012,16 @@
|
|
|
958
1012
|
width: 100% !important;
|
|
959
1013
|
}
|
|
960
1014
|
|
|
1015
|
+
.w-1-3-fixed {
|
|
1016
|
+
min-width: 33.333333% !important;
|
|
1017
|
+
width: 33.333333% !important;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.w-2-3-fixed {
|
|
1021
|
+
min-width: 66.666667% !important;
|
|
1022
|
+
width: 66.666667% !important;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
961
1025
|
.h-25 {
|
|
962
1026
|
height: 25% !important;
|
|
963
1027
|
}
|
|
@@ -978,6 +1042,670 @@
|
|
|
978
1042
|
height: auto !important;
|
|
979
1043
|
}
|
|
980
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
|
+
|
|
981
1709
|
.position-static {
|
|
982
1710
|
position: static !important;
|
|
983
1711
|
}
|
|
@@ -1038,6 +1766,78 @@
|
|
|
1038
1766
|
border-left: 0 !important;
|
|
1039
1767
|
}
|
|
1040
1768
|
|
|
1769
|
+
.border-solid {
|
|
1770
|
+
border-style: solid !important;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.border-dashed {
|
|
1774
|
+
border-style: dashed !important;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.border-dotted {
|
|
1778
|
+
border-style: dotted !important;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.border-none {
|
|
1782
|
+
border-style: none !important;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.text-primary {
|
|
1786
|
+
color: var(--pa-accent) !important;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.text-success {
|
|
1790
|
+
color: var(--pa-success-text) !important;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.text-danger {
|
|
1794
|
+
color: var(--pa-danger-text) !important;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.text-warning {
|
|
1798
|
+
color: var(--pa-warning-text) !important;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.text-info {
|
|
1802
|
+
color: var(--pa-info-text) !important;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.text-color-1 {
|
|
1806
|
+
color: var(--pa-color-1) !important;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.text-color-2 {
|
|
1810
|
+
color: var(--pa-color-2) !important;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.text-color-3 {
|
|
1814
|
+
color: var(--pa-color-3) !important;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.text-color-4 {
|
|
1818
|
+
color: var(--pa-color-4) !important;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.text-color-5 {
|
|
1822
|
+
color: var(--pa-color-5) !important;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.text-color-6 {
|
|
1826
|
+
color: var(--pa-color-6) !important;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.text-color-7 {
|
|
1830
|
+
color: var(--pa-color-7) !important;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.text-color-8 {
|
|
1834
|
+
color: var(--pa-color-8) !important;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.text-color-9 {
|
|
1838
|
+
color: var(--pa-color-9) !important;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1041
1841
|
.rounded {
|
|
1042
1842
|
border-radius: var(--border-radius) !important;
|
|
1043
1843
|
}
|
|
@@ -3934,15 +4734,27 @@ a.pa-card p {
|
|
|
3934
4734
|
flex: 1;
|
|
3935
4735
|
justify-content: center;
|
|
3936
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
|
+
}
|
|
3937
4749
|
.pa-tabs--sm .pa-tabs__item {
|
|
3938
|
-
padding: 0.
|
|
4750
|
+
padding: 0.8rem 1rem;
|
|
3939
4751
|
font-size: 1.2rem;
|
|
3940
4752
|
}
|
|
3941
4753
|
.pa-tabs--sm .pa-tabs__item i {
|
|
3942
4754
|
font-size: 1.2rem;
|
|
3943
4755
|
}
|
|
3944
4756
|
.pa-tabs--lg .pa-tabs__item {
|
|
3945
|
-
padding:
|
|
4757
|
+
padding: 0.8rem 1.4rem;
|
|
3946
4758
|
font-size: 1.8rem;
|
|
3947
4759
|
}
|
|
3948
4760
|
.pa-tabs--lg .pa-tabs__item i {
|
|
@@ -3983,66 +4795,6 @@ a.pa-card p {
|
|
|
3983
4795
|
.pa-tabs__vertical-layout--bordered .pa-tabs--vertical .pa-tabs__item {
|
|
3984
4796
|
width: 100%;
|
|
3985
4797
|
}
|
|
3986
|
-
.pa-tabs .pa-tabs__item--w-1x {
|
|
3987
|
-
min-width: 1rem;
|
|
3988
|
-
}
|
|
3989
|
-
.pa-tabs .pa-tabs__item--w-2x {
|
|
3990
|
-
min-width: 2rem;
|
|
3991
|
-
}
|
|
3992
|
-
.pa-tabs .pa-tabs__item--w-3x {
|
|
3993
|
-
min-width: 3rem;
|
|
3994
|
-
}
|
|
3995
|
-
.pa-tabs .pa-tabs__item--w-4x {
|
|
3996
|
-
min-width: 4rem;
|
|
3997
|
-
}
|
|
3998
|
-
.pa-tabs .pa-tabs__item--w-5x {
|
|
3999
|
-
min-width: 5rem;
|
|
4000
|
-
}
|
|
4001
|
-
.pa-tabs .pa-tabs__item--w-6x {
|
|
4002
|
-
min-width: 6rem;
|
|
4003
|
-
}
|
|
4004
|
-
.pa-tabs .pa-tabs__item--w-7x {
|
|
4005
|
-
min-width: 7rem;
|
|
4006
|
-
}
|
|
4007
|
-
.pa-tabs .pa-tabs__item--w-8x {
|
|
4008
|
-
min-width: 8rem;
|
|
4009
|
-
}
|
|
4010
|
-
.pa-tabs .pa-tabs__item--w-9x {
|
|
4011
|
-
min-width: 9rem;
|
|
4012
|
-
}
|
|
4013
|
-
.pa-tabs .pa-tabs__item--w-10x {
|
|
4014
|
-
min-width: 10rem;
|
|
4015
|
-
}
|
|
4016
|
-
.pa-tabs .pa-tabs__item--h-1x {
|
|
4017
|
-
min-height: 1rem;
|
|
4018
|
-
}
|
|
4019
|
-
.pa-tabs .pa-tabs__item--h-2x {
|
|
4020
|
-
min-height: 2rem;
|
|
4021
|
-
}
|
|
4022
|
-
.pa-tabs .pa-tabs__item--h-3x {
|
|
4023
|
-
min-height: 3rem;
|
|
4024
|
-
}
|
|
4025
|
-
.pa-tabs .pa-tabs__item--h-4x {
|
|
4026
|
-
min-height: 4rem;
|
|
4027
|
-
}
|
|
4028
|
-
.pa-tabs .pa-tabs__item--h-5x {
|
|
4029
|
-
min-height: 5rem;
|
|
4030
|
-
}
|
|
4031
|
-
.pa-tabs .pa-tabs__item--h-6x {
|
|
4032
|
-
min-height: 6rem;
|
|
4033
|
-
}
|
|
4034
|
-
.pa-tabs .pa-tabs__item--h-7x {
|
|
4035
|
-
min-height: 7rem;
|
|
4036
|
-
}
|
|
4037
|
-
.pa-tabs .pa-tabs__item--h-8x {
|
|
4038
|
-
min-height: 8rem;
|
|
4039
|
-
}
|
|
4040
|
-
.pa-tabs .pa-tabs__item--h-9x {
|
|
4041
|
-
min-height: 9rem;
|
|
4042
|
-
}
|
|
4043
|
-
.pa-tabs .pa-tabs__item--h-10x {
|
|
4044
|
-
min-height: 10rem;
|
|
4045
|
-
}
|
|
4046
4798
|
|
|
4047
4799
|
/* ========================================
|
|
4048
4800
|
Reset and Base Styles
|
|
@@ -4482,53 +5234,6 @@ a.pa-card p {
|
|
|
4482
5234
|
color: var(--pa-btn-dark-text);
|
|
4483
5235
|
border-color: var(--pa-btn-dark-bg);
|
|
4484
5236
|
}
|
|
4485
|
-
.pa-badge--w-1x {
|
|
4486
|
-
min-width: 1.6rem;
|
|
4487
|
-
max-width: 1.6rem;
|
|
4488
|
-
}
|
|
4489
|
-
.pa-badge--w-2x {
|
|
4490
|
-
min-width: 3.2rem;
|
|
4491
|
-
max-width: 3.2rem;
|
|
4492
|
-
}
|
|
4493
|
-
.pa-badge--w-3x {
|
|
4494
|
-
min-width: 4.8rem;
|
|
4495
|
-
max-width: 4.8rem;
|
|
4496
|
-
}
|
|
4497
|
-
.pa-badge--w-4x {
|
|
4498
|
-
min-width: 6.4rem;
|
|
4499
|
-
max-width: 6.4rem;
|
|
4500
|
-
}
|
|
4501
|
-
.pa-badge--w-5x {
|
|
4502
|
-
min-width: 8rem;
|
|
4503
|
-
max-width: 8rem;
|
|
4504
|
-
}
|
|
4505
|
-
.pa-badge--w-6x {
|
|
4506
|
-
min-width: 9.6rem;
|
|
4507
|
-
max-width: 9.6rem;
|
|
4508
|
-
}
|
|
4509
|
-
.pa-badge--w-7x {
|
|
4510
|
-
min-width: 11.2rem;
|
|
4511
|
-
max-width: 11.2rem;
|
|
4512
|
-
}
|
|
4513
|
-
.pa-badge--w-8x {
|
|
4514
|
-
min-width: 12.8rem;
|
|
4515
|
-
max-width: 12.8rem;
|
|
4516
|
-
}
|
|
4517
|
-
.pa-badge--w-9x {
|
|
4518
|
-
min-width: 14.4rem;
|
|
4519
|
-
max-width: 14.4rem;
|
|
4520
|
-
}
|
|
4521
|
-
.pa-badge--w-10x {
|
|
4522
|
-
min-width: 16rem;
|
|
4523
|
-
max-width: 16rem;
|
|
4524
|
-
}
|
|
4525
|
-
.pa-badge[class*="--w-"] {
|
|
4526
|
-
display: inline-block;
|
|
4527
|
-
overflow: hidden;
|
|
4528
|
-
text-overflow: ellipsis;
|
|
4529
|
-
white-space: nowrap;
|
|
4530
|
-
vertical-align: middle;
|
|
4531
|
-
}
|
|
4532
5237
|
.pa-badge--ellipsis-left {
|
|
4533
5238
|
direction: rtl;
|
|
4534
5239
|
text-align: left;
|
|
@@ -5112,24 +5817,20 @@ a.pa-card p {
|
|
|
5112
5817
|
border-color: var(--pa-accent);
|
|
5113
5818
|
}
|
|
5114
5819
|
.pa-btn--xs {
|
|
5115
|
-
padding: 0.
|
|
5820
|
+
padding: 0.6rem 0.8rem;
|
|
5116
5821
|
font-size: 1.2rem;
|
|
5117
|
-
min-height: 2.8rem;
|
|
5118
5822
|
}
|
|
5119
5823
|
.pa-btn--sm {
|
|
5120
|
-
padding: 0.
|
|
5824
|
+
padding: 0.8rem 1rem;
|
|
5121
5825
|
font-size: 1.4rem;
|
|
5122
|
-
min-height: 3.2rem;
|
|
5123
5826
|
}
|
|
5124
5827
|
.pa-btn--lg {
|
|
5125
|
-
padding:
|
|
5828
|
+
padding: 0.8rem 1.4rem;
|
|
5126
5829
|
font-size: 1.6rem;
|
|
5127
|
-
min-height: 4rem;
|
|
5128
5830
|
}
|
|
5129
5831
|
.pa-btn--xl {
|
|
5130
|
-
padding:
|
|
5832
|
+
padding: 0.8rem 1.6rem;
|
|
5131
5833
|
font-size: 1.8rem;
|
|
5132
|
-
min-height: 4.4rem;
|
|
5133
5834
|
}
|
|
5134
5835
|
.pa-btn--success {
|
|
5135
5836
|
background-color: var(--pa-btn-success-bg);
|
|
@@ -5336,36 +6037,6 @@ a.pa-card p {
|
|
|
5336
6037
|
.pa-btn:has(.pa-btn__icon) .pa-btn__icon:last-child {
|
|
5337
6038
|
margin: 0;
|
|
5338
6039
|
}
|
|
5339
|
-
.pa-btn--w-1x {
|
|
5340
|
-
min-width: 1.6rem;
|
|
5341
|
-
}
|
|
5342
|
-
.pa-btn--w-2x {
|
|
5343
|
-
min-width: 3.2rem;
|
|
5344
|
-
}
|
|
5345
|
-
.pa-btn--w-3x {
|
|
5346
|
-
min-width: 4.8rem;
|
|
5347
|
-
}
|
|
5348
|
-
.pa-btn--w-4x {
|
|
5349
|
-
min-width: 6.4rem;
|
|
5350
|
-
}
|
|
5351
|
-
.pa-btn--w-5x {
|
|
5352
|
-
min-width: 8rem;
|
|
5353
|
-
}
|
|
5354
|
-
.pa-btn--w-6x {
|
|
5355
|
-
min-width: 9.6rem;
|
|
5356
|
-
}
|
|
5357
|
-
.pa-btn--w-7x {
|
|
5358
|
-
min-width: 11.2rem;
|
|
5359
|
-
}
|
|
5360
|
-
.pa-btn--w-8x {
|
|
5361
|
-
min-width: 12.8rem;
|
|
5362
|
-
}
|
|
5363
|
-
.pa-btn--w-9x {
|
|
5364
|
-
min-width: 14.4rem;
|
|
5365
|
-
}
|
|
5366
|
-
.pa-btn--w-10x {
|
|
5367
|
-
min-width: 16rem;
|
|
5368
|
-
}
|
|
5369
6040
|
.pa-btn--align-left {
|
|
5370
6041
|
justify-content: flex-start;
|
|
5371
6042
|
}
|
|
@@ -5393,16 +6064,10 @@ a.pa-card p {
|
|
|
5393
6064
|
|
|
5394
6065
|
.pa-btn-group {
|
|
5395
6066
|
display: inline-flex;
|
|
5396
|
-
gap: 0.
|
|
6067
|
+
gap: 0.3rem;
|
|
5397
6068
|
flex-wrap: wrap;
|
|
5398
6069
|
align-items: center;
|
|
5399
6070
|
}
|
|
5400
|
-
.pa-btn-group--compact {
|
|
5401
|
-
gap: 0.16rem;
|
|
5402
|
-
}
|
|
5403
|
-
.pa-btn-group--loose {
|
|
5404
|
-
gap: 0.8rem;
|
|
5405
|
-
}
|
|
5406
6071
|
.pa-btn-group--vertical {
|
|
5407
6072
|
flex-direction: column;
|
|
5408
6073
|
align-items: flex-start;
|
|
@@ -6283,6 +6948,112 @@ a.pa-card p {
|
|
|
6283
6948
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
6284
6949
|
}
|
|
6285
6950
|
|
|
6951
|
+
/* ========================================
|
|
6952
|
+
Reset and Base Styles
|
|
6953
|
+
======================================== */
|
|
6954
|
+
/* ========================================
|
|
6955
|
+
Callout Components
|
|
6956
|
+
Documentation-style callouts with left border accent
|
|
6957
|
+
For tips, notes, warnings in content areas
|
|
6958
|
+
======================================== */
|
|
6959
|
+
.pa-callout {
|
|
6960
|
+
position: relative;
|
|
6961
|
+
padding: 1.2rem 1rem;
|
|
6962
|
+
margin-bottom: 1.6rem;
|
|
6963
|
+
border-left: 0.4rem solid var(--pa-border-color);
|
|
6964
|
+
border-radius: 4px;
|
|
6965
|
+
font-size: 1.4rem;
|
|
6966
|
+
background-color: var(--pa-card-bg);
|
|
6967
|
+
}
|
|
6968
|
+
.pa-card__body .pa-callout:first-child {
|
|
6969
|
+
margin-top: 0;
|
|
6970
|
+
}
|
|
6971
|
+
.pa-card__body .pa-callout:last-child {
|
|
6972
|
+
margin-bottom: 0;
|
|
6973
|
+
}
|
|
6974
|
+
.pa-callout--primary {
|
|
6975
|
+
border-left-color: var(--pa-accent);
|
|
6976
|
+
background-color: rgba(0, 123, 255, 0.08);
|
|
6977
|
+
}
|
|
6978
|
+
.pa-callout--secondary {
|
|
6979
|
+
border-left-color: var(--pa-text-secondary);
|
|
6980
|
+
background-color: color-mix(in srgb, var(--pa-text-secondary) 5%, transparent);
|
|
6981
|
+
}
|
|
6982
|
+
.pa-callout--success {
|
|
6983
|
+
border-left-color: var(--pa-success-bg);
|
|
6984
|
+
background-color: var(--pa-success-bg-subtle);
|
|
6985
|
+
}
|
|
6986
|
+
.pa-callout--danger {
|
|
6987
|
+
border-left-color: var(--pa-danger-bg);
|
|
6988
|
+
background-color: var(--pa-danger-bg-subtle);
|
|
6989
|
+
}
|
|
6990
|
+
.pa-callout--warning {
|
|
6991
|
+
border-left-color: var(--pa-warning-bg);
|
|
6992
|
+
background-color: var(--pa-warning-bg-subtle);
|
|
6993
|
+
}
|
|
6994
|
+
.pa-callout--info {
|
|
6995
|
+
border-left-color: var(--pa-info-bg);
|
|
6996
|
+
background-color: var(--pa-info-bg-subtle);
|
|
6997
|
+
}
|
|
6998
|
+
.pa-callout--sm {
|
|
6999
|
+
padding: 0.8rem 1.2rem;
|
|
7000
|
+
font-size: 1.2rem;
|
|
7001
|
+
}
|
|
7002
|
+
.pa-callout--lg {
|
|
7003
|
+
padding: 2.4rem 3.2rem;
|
|
7004
|
+
font-size: 1.6rem;
|
|
7005
|
+
}
|
|
7006
|
+
.pa-callout__icon {
|
|
7007
|
+
float: left;
|
|
7008
|
+
margin-right: 0.8rem;
|
|
7009
|
+
font-size: 1.8rem;
|
|
7010
|
+
line-height: 1;
|
|
7011
|
+
}
|
|
7012
|
+
.pa-callout__heading {
|
|
7013
|
+
margin: 0 0 0.8rem 0;
|
|
7014
|
+
font-size: 1.6rem;
|
|
7015
|
+
font-weight: 600;
|
|
7016
|
+
}
|
|
7017
|
+
.pa-callout__content::after {
|
|
7018
|
+
content: "";
|
|
7019
|
+
display: table;
|
|
7020
|
+
clear: both;
|
|
7021
|
+
}
|
|
7022
|
+
.pa-callout > *:last-child {
|
|
7023
|
+
margin-bottom: 0;
|
|
7024
|
+
}
|
|
7025
|
+
.pa-callout p {
|
|
7026
|
+
margin: 0 0 0.8rem 0;
|
|
7027
|
+
}
|
|
7028
|
+
.pa-callout p:last-child {
|
|
7029
|
+
margin-bottom: 0;
|
|
7030
|
+
}
|
|
7031
|
+
.pa-callout ul, .pa-callout ol {
|
|
7032
|
+
margin: 0.8rem 0;
|
|
7033
|
+
padding-left: 2.4rem;
|
|
7034
|
+
}
|
|
7035
|
+
.pa-callout ul:last-child, .pa-callout ol:last-child {
|
|
7036
|
+
margin-bottom: 0;
|
|
7037
|
+
}
|
|
7038
|
+
.pa-callout code {
|
|
7039
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
7040
|
+
padding: 0.1em 0.3em;
|
|
7041
|
+
border-radius: 2px;
|
|
7042
|
+
font-size: 0.9em;
|
|
7043
|
+
}
|
|
7044
|
+
.pa-callout a {
|
|
7045
|
+
color: inherit;
|
|
7046
|
+
text-decoration: underline;
|
|
7047
|
+
font-weight: 500;
|
|
7048
|
+
}
|
|
7049
|
+
.pa-callout a:hover {
|
|
7050
|
+
text-decoration: none;
|
|
7051
|
+
}
|
|
7052
|
+
.pa-callout h1, .pa-callout h2, .pa-callout h3, .pa-callout h4, .pa-callout h5, .pa-callout h6 {
|
|
7053
|
+
color: inherit;
|
|
7054
|
+
margin-top: 0;
|
|
7055
|
+
}
|
|
7056
|
+
|
|
6286
7057
|
/* ========================================
|
|
6287
7058
|
Form Components
|
|
6288
7059
|
Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
|
|
@@ -7353,7 +8124,7 @@ web-daterangepicker {
|
|
|
7353
8124
|
--drp-button-apply-color: #ffffff;
|
|
7354
8125
|
--drp-button-apply-border: #007bff;
|
|
7355
8126
|
/* Button sizing */
|
|
7356
|
-
--drp-button-padding: 0.
|
|
8127
|
+
--drp-button-padding: 0.8rem 1rem;
|
|
7357
8128
|
--drp-button-font-size: 1.4rem;
|
|
7358
8129
|
--drp-button-border-radius: 4px;
|
|
7359
8130
|
--drp-button-gap: 0.8rem;
|
|
@@ -8632,18 +9403,6 @@ web-daterangepicker {
|
|
|
8632
9403
|
}
|
|
8633
9404
|
}
|
|
8634
9405
|
|
|
8635
|
-
.text-success {
|
|
8636
|
-
color: var(--pa-success-bg);
|
|
8637
|
-
}
|
|
8638
|
-
|
|
8639
|
-
.text-danger {
|
|
8640
|
-
color: var(--pa-danger-bg);
|
|
8641
|
-
}
|
|
8642
|
-
|
|
8643
|
-
.text-warning {
|
|
8644
|
-
color: var(--pa-warning-bg);
|
|
8645
|
-
}
|
|
8646
|
-
|
|
8647
9406
|
/* ========================================
|
|
8648
9407
|
Reset and Base Styles
|
|
8649
9408
|
======================================== */
|
|
@@ -9097,6 +9856,9 @@ code {
|
|
|
9097
9856
|
gap: 1.6rem;
|
|
9098
9857
|
position: relative;
|
|
9099
9858
|
}
|
|
9859
|
+
.pa-profile-panel__header--no-avatar .pa-profile-panel__avatar {
|
|
9860
|
+
display: none;
|
|
9861
|
+
}
|
|
9100
9862
|
.pa-profile-panel__avatar {
|
|
9101
9863
|
width: 6.4rem;
|
|
9102
9864
|
height: 6.4rem;
|
|
@@ -9109,17 +9871,21 @@ code {
|
|
|
9109
9871
|
}
|
|
9110
9872
|
.pa-profile-panel__avatar-icon {
|
|
9111
9873
|
font-size: 3.2rem;
|
|
9112
|
-
color:
|
|
9874
|
+
color: var(--pa-accent);
|
|
9113
9875
|
}
|
|
9114
9876
|
.pa-profile-panel__info {
|
|
9115
9877
|
flex: 1;
|
|
9116
9878
|
min-width: 0;
|
|
9879
|
+
padding-right: 3.2rem;
|
|
9117
9880
|
}
|
|
9118
9881
|
.pa-profile-panel__name {
|
|
9119
9882
|
margin: 0 0 0.4rem 0;
|
|
9120
9883
|
font-size: 1.8rem;
|
|
9121
9884
|
font-weight: 600;
|
|
9122
9885
|
color: var(--pa-text-primary);
|
|
9886
|
+
overflow: hidden;
|
|
9887
|
+
text-overflow: ellipsis;
|
|
9888
|
+
white-space: nowrap;
|
|
9123
9889
|
}
|
|
9124
9890
|
.pa-profile-panel__email {
|
|
9125
9891
|
margin: 0 0 0.8rem 0;
|
|
@@ -9166,7 +9932,7 @@ code {
|
|
|
9166
9932
|
}
|
|
9167
9933
|
.pa-profile-panel__body {
|
|
9168
9934
|
flex: 1;
|
|
9169
|
-
padding: 2.4rem;
|
|
9935
|
+
padding: 2.4rem 0;
|
|
9170
9936
|
display: flex;
|
|
9171
9937
|
flex-direction: column;
|
|
9172
9938
|
gap: 3.2rem;
|
|
@@ -9202,16 +9968,29 @@ code {
|
|
|
9202
9968
|
.pa-profile-panel__nav-icon {
|
|
9203
9969
|
font-size: 1.6rem;
|
|
9204
9970
|
width: 2.4rem;
|
|
9205
|
-
|
|
9971
|
+
height: 2.4rem;
|
|
9972
|
+
display: flex;
|
|
9973
|
+
align-items: center;
|
|
9974
|
+
justify-content: center;
|
|
9206
9975
|
}
|
|
9207
9976
|
.pa-profile-panel__actions {
|
|
9208
9977
|
display: flex;
|
|
9209
9978
|
flex-direction: column;
|
|
9210
9979
|
gap: 1.2rem;
|
|
9211
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;
|
|
9212
9991
|
}
|
|
9213
9992
|
.pa-profile-panel__tabs {
|
|
9214
|
-
padding: 0
|
|
9993
|
+
padding: 0 1.6rem;
|
|
9215
9994
|
border-bottom: 1px solid var(--pa-border-color);
|
|
9216
9995
|
background-color: var(--pa-header-bg);
|
|
9217
9996
|
}
|
|
@@ -9225,17 +10004,12 @@ code {
|
|
|
9225
10004
|
}
|
|
9226
10005
|
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
9227
10006
|
color: var(--pa-header-text);
|
|
9228
|
-
background-color:
|
|
10007
|
+
background-color: var(--pa-accent-light);
|
|
9229
10008
|
}
|
|
9230
10009
|
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
9231
10010
|
color: var(--pa-header-text);
|
|
9232
10011
|
border-bottom-color: var(--pa-accent);
|
|
9233
10012
|
}
|
|
9234
|
-
.pa-profile-panel__favorites {
|
|
9235
|
-
display: flex;
|
|
9236
|
-
flex-direction: column;
|
|
9237
|
-
gap: 0.8rem;
|
|
9238
|
-
}
|
|
9239
10013
|
.pa-profile-panel__favorites ul {
|
|
9240
10014
|
list-style: none;
|
|
9241
10015
|
margin: 0;
|
|
@@ -9267,7 +10041,10 @@ code {
|
|
|
9267
10041
|
.pa-profile-panel__favorite-icon {
|
|
9268
10042
|
font-size: 1.6rem;
|
|
9269
10043
|
width: 2.4rem;
|
|
9270
|
-
|
|
10044
|
+
height: 2.4rem;
|
|
10045
|
+
display: flex;
|
|
10046
|
+
align-items: center;
|
|
10047
|
+
justify-content: center;
|
|
9271
10048
|
}
|
|
9272
10049
|
.pa-profile-panel__favorite-label {
|
|
9273
10050
|
flex: 1;
|
|
@@ -9277,7 +10054,7 @@ code {
|
|
|
9277
10054
|
margin-left: auto;
|
|
9278
10055
|
background: none;
|
|
9279
10056
|
border: none;
|
|
9280
|
-
padding: 0.
|
|
10057
|
+
padding: 0.4rem;
|
|
9281
10058
|
color: var(--pa-text-secondary);
|
|
9282
10059
|
cursor: pointer;
|
|
9283
10060
|
border-radius: 4px;
|
|
@@ -9294,7 +10071,7 @@ code {
|
|
|
9294
10071
|
}
|
|
9295
10072
|
.pa-profile-panel__favorites-add {
|
|
9296
10073
|
margin-top: auto;
|
|
9297
|
-
padding
|
|
10074
|
+
padding: 1.2rem 1.6rem 0;
|
|
9298
10075
|
}
|
|
9299
10076
|
|
|
9300
10077
|
@media (max-width: 768px) {
|
|
@@ -11592,6 +12369,170 @@ html.font-size-4xl {
|
|
|
11592
12369
|
line-height: 1.8;
|
|
11593
12370
|
}
|
|
11594
12371
|
|
|
12372
|
+
.gap-0 {
|
|
12373
|
+
gap: 0;
|
|
12374
|
+
}
|
|
12375
|
+
|
|
12376
|
+
.gap-xs {
|
|
12377
|
+
gap: 0.4rem;
|
|
12378
|
+
}
|
|
12379
|
+
|
|
12380
|
+
.gap-sm {
|
|
12381
|
+
gap: 0.8rem;
|
|
12382
|
+
}
|
|
12383
|
+
|
|
12384
|
+
.gap-md {
|
|
12385
|
+
gap: 1.2rem;
|
|
12386
|
+
}
|
|
12387
|
+
|
|
12388
|
+
.gap-base {
|
|
12389
|
+
gap: 1.6rem;
|
|
12390
|
+
}
|
|
12391
|
+
|
|
12392
|
+
.gap-lg {
|
|
12393
|
+
gap: 2.4rem;
|
|
12394
|
+
}
|
|
12395
|
+
|
|
12396
|
+
.gap-xl {
|
|
12397
|
+
gap: 3.2rem;
|
|
12398
|
+
}
|
|
12399
|
+
|
|
12400
|
+
.gap-2xl {
|
|
12401
|
+
gap: 4.8rem;
|
|
12402
|
+
}
|
|
12403
|
+
|
|
12404
|
+
.gap-1 {
|
|
12405
|
+
gap: 0.1rem;
|
|
12406
|
+
}
|
|
12407
|
+
|
|
12408
|
+
.gap-2 {
|
|
12409
|
+
gap: 0.2rem;
|
|
12410
|
+
}
|
|
12411
|
+
|
|
12412
|
+
.gap-3 {
|
|
12413
|
+
gap: 0.3rem;
|
|
12414
|
+
}
|
|
12415
|
+
|
|
12416
|
+
.gap-4 {
|
|
12417
|
+
gap: 0.4rem;
|
|
12418
|
+
}
|
|
12419
|
+
|
|
12420
|
+
.gap-5 {
|
|
12421
|
+
gap: 0.5rem;
|
|
12422
|
+
}
|
|
12423
|
+
|
|
12424
|
+
.gap-6 {
|
|
12425
|
+
gap: 0.6rem;
|
|
12426
|
+
}
|
|
12427
|
+
|
|
12428
|
+
.gap-8 {
|
|
12429
|
+
gap: 0.8rem;
|
|
12430
|
+
}
|
|
12431
|
+
|
|
12432
|
+
.gap-10 {
|
|
12433
|
+
gap: 1rem;
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
.gap-12 {
|
|
12437
|
+
gap: 1.2rem;
|
|
12438
|
+
}
|
|
12439
|
+
|
|
12440
|
+
.gap-15 {
|
|
12441
|
+
gap: 1.5rem;
|
|
12442
|
+
}
|
|
12443
|
+
|
|
12444
|
+
.gap-20 {
|
|
12445
|
+
gap: 2rem;
|
|
12446
|
+
}
|
|
12447
|
+
|
|
12448
|
+
.row-gap-0 {
|
|
12449
|
+
row-gap: 0;
|
|
12450
|
+
}
|
|
12451
|
+
|
|
12452
|
+
.row-gap-xs {
|
|
12453
|
+
row-gap: 0.4rem;
|
|
12454
|
+
}
|
|
12455
|
+
|
|
12456
|
+
.row-gap-sm {
|
|
12457
|
+
row-gap: 0.8rem;
|
|
12458
|
+
}
|
|
12459
|
+
|
|
12460
|
+
.row-gap-md {
|
|
12461
|
+
row-gap: 1.2rem;
|
|
12462
|
+
}
|
|
12463
|
+
|
|
12464
|
+
.row-gap-base {
|
|
12465
|
+
row-gap: 1.6rem;
|
|
12466
|
+
}
|
|
12467
|
+
|
|
12468
|
+
.row-gap-lg {
|
|
12469
|
+
row-gap: 2.4rem;
|
|
12470
|
+
}
|
|
12471
|
+
|
|
12472
|
+
.column-gap-0 {
|
|
12473
|
+
column-gap: 0;
|
|
12474
|
+
}
|
|
12475
|
+
|
|
12476
|
+
.column-gap-xs {
|
|
12477
|
+
column-gap: 0.4rem;
|
|
12478
|
+
}
|
|
12479
|
+
|
|
12480
|
+
.column-gap-sm {
|
|
12481
|
+
column-gap: 0.8rem;
|
|
12482
|
+
}
|
|
12483
|
+
|
|
12484
|
+
.column-gap-md {
|
|
12485
|
+
column-gap: 1.2rem;
|
|
12486
|
+
}
|
|
12487
|
+
|
|
12488
|
+
.column-gap-base {
|
|
12489
|
+
column-gap: 1.6rem;
|
|
12490
|
+
}
|
|
12491
|
+
|
|
12492
|
+
.column-gap-lg {
|
|
12493
|
+
column-gap: 2.4rem;
|
|
12494
|
+
}
|
|
12495
|
+
|
|
12496
|
+
.text-2xs {
|
|
12497
|
+
font-size: 1rem;
|
|
12498
|
+
}
|
|
12499
|
+
|
|
12500
|
+
.text-xs {
|
|
12501
|
+
font-size: 1.2rem;
|
|
12502
|
+
}
|
|
12503
|
+
|
|
12504
|
+
.text-sm {
|
|
12505
|
+
font-size: 1.4rem;
|
|
12506
|
+
}
|
|
12507
|
+
|
|
12508
|
+
.text-md {
|
|
12509
|
+
font-size: 1.5rem;
|
|
12510
|
+
}
|
|
12511
|
+
|
|
12512
|
+
.text-base {
|
|
12513
|
+
font-size: 1.6rem;
|
|
12514
|
+
}
|
|
12515
|
+
|
|
12516
|
+
.text-lg {
|
|
12517
|
+
font-size: 1.8rem;
|
|
12518
|
+
}
|
|
12519
|
+
|
|
12520
|
+
.text-xl {
|
|
12521
|
+
font-size: 2rem;
|
|
12522
|
+
}
|
|
12523
|
+
|
|
12524
|
+
.text-2xl {
|
|
12525
|
+
font-size: 2.4rem;
|
|
12526
|
+
}
|
|
12527
|
+
|
|
12528
|
+
.text-3xl {
|
|
12529
|
+
font-size: 2.8rem;
|
|
12530
|
+
}
|
|
12531
|
+
|
|
12532
|
+
.text-4xl {
|
|
12533
|
+
font-size: 3.2rem;
|
|
12534
|
+
}
|
|
12535
|
+
|
|
11595
12536
|
.component-showcase {
|
|
11596
12537
|
display: flex;
|
|
11597
12538
|
flex-wrap: wrap;
|