primereact 9.6.0 → 9.6.1

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.
@@ -287,6 +287,48 @@
287
287
  overflow: auto;
288
288
  }
289
289
 
290
+ .p-badge {
291
+ display: inline-block;
292
+ border-radius: 10px;
293
+ text-align: center;
294
+ padding: 0 .5rem;
295
+ }
296
+
297
+ .p-overlay-badge {
298
+ position: relative;
299
+ }
300
+
301
+ .p-overlay-badge .p-badge {
302
+ position: absolute;
303
+ top: 0;
304
+ right: 0;
305
+ transform: translate(50%,-50%);
306
+ transform-origin: 100% 0;
307
+ margin: 0;
308
+ }
309
+
310
+ .p-badge-dot {
311
+ width: .5rem;
312
+ min-width: .5rem;
313
+ height: .5rem;
314
+ border-radius: 50%;
315
+ padding: 0;
316
+ }
317
+
318
+ .p-badge-no-gutter {
319
+ padding: 0;
320
+ border-radius: 50%;
321
+ }
322
+
323
+ .p-avatar-group .p-avatar + .p-avatar {
324
+ margin-left: -1rem;
325
+ }
326
+
327
+ .p-avatar-group {
328
+ display: flex;
329
+ align-items: center;
330
+ }
331
+
290
332
  .p-avatar {
291
333
  display: inline-flex;
292
334
  align-items: center;
@@ -321,48 +363,6 @@
321
363
  cursor: pointer;
322
364
  }
323
365
 
324
- .p-avatar-group .p-avatar + .p-avatar {
325
- margin-left: -1rem;
326
- }
327
-
328
- .p-avatar-group {
329
- display: flex;
330
- align-items: center;
331
- }
332
-
333
- .p-badge {
334
- display: inline-block;
335
- border-radius: 10px;
336
- text-align: center;
337
- padding: 0 .5rem;
338
- }
339
-
340
- .p-overlay-badge {
341
- position: relative;
342
- }
343
-
344
- .p-overlay-badge .p-badge {
345
- position: absolute;
346
- top: 0;
347
- right: 0;
348
- transform: translate(50%,-50%);
349
- transform-origin: 100% 0;
350
- margin: 0;
351
- }
352
-
353
- .p-badge-dot {
354
- width: .5rem;
355
- min-width: .5rem;
356
- height: .5rem;
357
- border-radius: 50%;
358
- padding: 0;
359
- }
360
-
361
- .p-badge-no-gutter {
362
- padding: 0;
363
- border-radius: 50%;
364
- }
365
-
366
366
  .p-blockui-container {
367
367
  position: relative;
368
368
  }
@@ -1049,6 +1049,34 @@
1049
1049
  align-items: center;
1050
1050
  }
1051
1051
 
1052
+ .p-datascroller {
1053
+ }
1054
+
1055
+ .p-datascroller .p-datascroller-header {
1056
+ text-align: center;
1057
+ padding: .5em .75em;
1058
+ border-bottom: 0 none;
1059
+ }
1060
+
1061
+ .p-datascroller .p-datascroller-footer {
1062
+ text-align: center;
1063
+ padding: .25em .625em;
1064
+ border-top: 0px none;
1065
+ }
1066
+
1067
+ .p-datascroller .p-datascroller-content {
1068
+ padding: .25em .625em;
1069
+ }
1070
+
1071
+ .p-datascroller-inline .p-datascroller-content {
1072
+ overflow: auto;
1073
+ }
1074
+
1075
+ .p-datascroller .p-datascroller-list {
1076
+ list-style-type: none;
1077
+ margin: 0;
1078
+ padding: 0;
1079
+ }
1052
1080
  .p-contextmenu {
1053
1081
  position: absolute;
1054
1082
  }
@@ -1095,381 +1123,110 @@
1095
1123
  transition: opacity 250ms;
1096
1124
  }
1097
1125
 
1098
- .p-datascroller {
1126
+ .p-datatable {
1127
+ position: relative;
1099
1128
  }
1100
1129
 
1101
- .p-datascroller .p-datascroller-header {
1102
- text-align: center;
1103
- padding: .5em .75em;
1104
- border-bottom: 0 none;
1130
+ .p-datatable > .p-datatable-wrapper {
1131
+ overflow: auto;
1105
1132
  }
1106
1133
 
1107
- .p-datascroller .p-datascroller-footer {
1108
- text-align: center;
1109
- padding: .25em .625em;
1110
- border-top: 0px none;
1134
+ .p-datatable-table {
1135
+ border-spacing: 0px;
1136
+ width: 100%;
1111
1137
  }
1112
1138
 
1113
- .p-datascroller .p-datascroller-content {
1114
- padding: .25em .625em;
1139
+ .p-datatable .p-sortable-disabled {
1140
+ cursor: auto;
1115
1141
  }
1116
1142
 
1117
- .p-datascroller-inline .p-datascroller-content {
1118
- overflow: auto;
1143
+ .p-datatable .p-sortable-column {
1144
+ cursor: pointer;
1145
+ user-select: none;
1119
1146
  }
1120
1147
 
1121
- .p-datascroller .p-datascroller-list {
1122
- list-style-type: none;
1123
- margin: 0;
1124
- padding: 0;
1125
- }
1126
- .p-dataview-loading {
1127
- position: relative;
1128
- min-height: 4rem;
1148
+ .p-datatable .p-sortable-column .p-column-title,
1149
+ .p-datatable .p-sortable-column .p-sortable-column-icon,
1150
+ .p-datatable .p-sortable-column .p-sortable-column-badge {
1151
+ vertical-align: middle;
1129
1152
  }
1130
1153
 
1131
- .p-dataview .p-dataview-loading-overlay {
1132
- position: absolute;
1133
- z-index: 1;
1134
- display: flex;
1154
+ .p-datatable .p-sortable-column .p-sortable-column-badge {
1155
+ display: inline-flex;
1135
1156
  align-items: center;
1136
1157
  justify-content: center;
1137
1158
  }
1138
1159
 
1139
- .p-dialog-mask {
1140
- position: fixed;
1141
- top: 0;
1142
- left: 0;
1143
- width: 100%;
1144
- height: 100%;
1145
- display: none;
1146
- justify-content: center;
1147
- align-items: center;
1148
- pointer-events: none;
1149
- background-color: transparent;
1150
- transition-property: background-color;
1160
+ .p-datatable-selectable .p-selectable-row,
1161
+ .p-datatable-selectable-cell .p-selectable-cell {
1162
+ cursor: pointer;
1151
1163
  }
1152
1164
 
1153
- .p-dialog-visible {
1154
- display: flex;
1165
+ .p-datatable-drag-selection-helper {
1166
+ position: absolute;
1167
+ z-index: 99999999;
1155
1168
  }
1156
1169
 
1157
- .p-dialog-mask.p-component-overlay {
1158
- pointer-events: auto;
1170
+ /* Scrollable */
1171
+ .p-datatable-scrollable > .p-datatable-wrapper {
1172
+ position: relative;
1159
1173
  }
1160
1174
 
1161
- .p-dialog {
1162
- display: flex;
1163
- flex-direction: column;
1164
- pointer-events: auto;
1165
- max-height: 90%;
1166
- transform: scale(1);
1167
- position: relative;
1175
+ .p-datatable-scrollable-table > .p-datatable-thead {
1176
+ position: sticky;
1177
+ top: 0;
1178
+ z-index: 1;
1168
1179
  }
1169
1180
 
1170
- .p-dialog-content {
1171
- overflow-y: auto;
1172
- flex-grow: 1;
1181
+ .p-datatable-scrollable-table > .p-datatable-frozen-tbody {
1182
+ position: sticky;
1183
+ z-index: 1;
1173
1184
  }
1174
1185
 
1175
- .p-dialog-header {
1176
- display: flex;
1177
- align-items: center;
1178
- flex-shrink: 0;
1186
+ .p-datatable-scrollable-table > .p-datatable-tfoot {
1187
+ position: sticky;
1188
+ bottom: 0;
1189
+ z-index: 1;
1179
1190
  }
1180
1191
 
1181
- .p-dialog-footer {
1182
- flex-shrink: 0;
1192
+ .p-datatable-scrollable .p-frozen-column {
1193
+ position: sticky;
1194
+ background: inherit;
1183
1195
  }
1184
1196
 
1185
- .p-dialog .p-dialog-header-icons {
1186
- display: flex;
1187
- align-items: center;
1188
- align-self: flex-start;
1189
- flex-shrink: 0;
1197
+ .p-datatable-scrollable th.p-frozen-column {
1198
+ z-index: 1;
1190
1199
  }
1191
1200
 
1192
- .p-dialog .p-dialog-header-icon {
1201
+ .p-datatable-flex-scrollable {
1193
1202
  display: flex;
1194
- align-items: center;
1195
- justify-content: center;
1196
- overflow: hidden;
1197
- position: relative;
1203
+ flex-direction: column;
1204
+ height: 100%;
1198
1205
  }
1199
1206
 
1200
- .p-dialog .p-dialog-title {
1201
- flex-grow: 1;
1207
+ .p-datatable-flex-scrollable > .p-datatable-wrapper {
1208
+ display: flex;
1209
+ flex-direction: column;
1210
+ flex: 1;
1211
+ height: 100%;
1202
1212
  }
1203
1213
 
1204
- /* Fluid */
1205
- .p-fluid .p-dialog-footer .p-button {
1206
- width: auto;
1214
+ .p-datatable-scrollable-table > .p-datatable-tbody > .p-rowgroup-header {
1215
+ position: sticky;
1216
+ z-index: 1;
1207
1217
  }
1208
1218
 
1209
- /* Animation */
1210
- /* Center */
1211
- .p-dialog-enter {
1212
- opacity: 0;
1213
- transform: scale(0.7);
1219
+ /* Resizable */
1220
+ .p-datatable-resizable-table > .p-datatable-thead > tr > th,
1221
+ .p-datatable-resizable-table > .p-datatable-tfoot > tr > td,
1222
+ .p-datatable-resizable-table > .p-datatable-tbody > tr > td {
1223
+ overflow: hidden;
1224
+ white-space: nowrap;
1214
1225
  }
1215
1226
 
1216
- .p-dialog-enter-active {
1217
- opacity: 1;
1218
- transform: scale(1);
1219
- transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
1220
- }
1221
-
1222
- .p-dialog-enter-done {
1223
- transform: none;
1224
- }
1225
-
1226
- .p-dialog-exit-active {
1227
- opacity: 0;
1228
- transform: scale(0.7);
1229
- transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
1230
- }
1231
-
1232
- /* Top, Bottom, Left, Right, Top* and Bottom* */
1233
- .p-dialog-top .p-dialog,
1234
- .p-dialog-bottom .p-dialog,
1235
- .p-dialog-left .p-dialog,
1236
- .p-dialog-right .p-dialog,
1237
- .p-dialog-top-left .p-dialog,
1238
- .p-dialog-top-right .p-dialog,
1239
- .p-dialog-bottom-left .p-dialog,
1240
- .p-dialog-bottom-right .p-dialog {
1241
- margin: 0.75em;
1242
- }
1243
-
1244
- .p-dialog-top .p-dialog-enter,
1245
- .p-dialog-top .p-dialog-exit-active {
1246
- transform: translate3d(0px, -100%, 0px);
1247
- }
1248
-
1249
- .p-dialog-bottom .p-dialog-enter,
1250
- .p-dialog-bottom .p-dialog-exit-active {
1251
- transform: translate3d(0px, 100%, 0px);
1252
- }
1253
-
1254
- .p-dialog-left .p-dialog-enter,
1255
- .p-dialog-left .p-dialog-exit-active,
1256
- .p-dialog-top-left .p-dialog-enter,
1257
- .p-dialog-top-left .p-dialog-exit-active,
1258
- .p-dialog-bottom-left .p-dialog-enter,
1259
- .p-dialog-bottom-left .p-dialog-exit-active {
1260
- transform: translate3d(-100%, 0px, 0px);
1261
- }
1262
-
1263
- .p-dialog-right .p-dialog-enter,
1264
- .p-dialog-right .p-dialog-exit-active,
1265
- .p-dialog-top-right .p-dialog-enter,
1266
- .p-dialog-top-right .p-dialog-exit-active,
1267
- .p-dialog-bottom-right .p-dialog-enter,
1268
- .p-dialog-bottom-right .p-dialog-exit-active {
1269
- transform: translate3d(100%, 0px, 0px);
1270
- }
1271
-
1272
- .p-dialog-top .p-dialog-enter-active,
1273
- .p-dialog-bottom .p-dialog-enter-active,
1274
- .p-dialog-left .p-dialog-enter-active,
1275
- .p-dialog-top-left .p-dialog-enter-active,
1276
- .p-dialog-bottom-left .p-dialog-enter-active,
1277
- .p-dialog-right .p-dialog-enter-active,
1278
- .p-dialog-top-right .p-dialog-enter-active,
1279
- .p-dialog-bottom-right .p-dialog-enter-active {
1280
- transform: translate3d(0px, 0px, 0px);
1281
- transition: all 0.3s ease-out;
1282
- }
1283
-
1284
- .p-dialog-top .p-dialog-exit-active,
1285
- .p-dialog-bottom .p-dialog-exit-active,
1286
- .p-dialog-left .p-dialog-exit-active,
1287
- .p-dialog-top-left .p-dialog-exit-active,
1288
- .p-dialog-bottom-left .p-dialog-exit-active,
1289
- .p-dialog-right .p-dialog-exit-active,
1290
- .p-dialog-top-right .p-dialog-exit-active,
1291
- .p-dialog-bottom-right .p-dialog-exit-active {
1292
- transition: all 0.3s ease-out;
1293
- }
1294
-
1295
- /* Maximize */
1296
- .p-dialog-maximized {
1297
- transition: none;
1298
- transform: none;
1299
- margin: 0 !important;
1300
- width: 100vw !important;
1301
- height: 100vh !important;
1302
- max-height: 100%;
1303
- top: 0px !important;
1304
- left: 0px !important;
1305
- }
1306
-
1307
- .p-dialog-maximized .p-dialog-content {
1308
- flex-grow: 1;
1309
- }
1310
-
1311
- /* Position */
1312
- .p-dialog-left {
1313
- justify-content: flex-start;
1314
- }
1315
-
1316
- .p-dialog-right {
1317
- justify-content: flex-end;
1318
- }
1319
-
1320
- .p-dialog-top {
1321
- align-items: flex-start;
1322
- }
1323
-
1324
- .p-dialog-top-left {
1325
- justify-content: flex-start;
1326
- align-items: flex-start;
1327
- }
1328
-
1329
- .p-dialog-top-right {
1330
- justify-content: flex-end;
1331
- align-items: flex-start;
1332
- }
1333
-
1334
- .p-dialog-bottom {
1335
- align-items: flex-end;
1336
- }
1337
-
1338
- .p-dialog-bottom-left {
1339
- justify-content: flex-start;
1340
- align-items: flex-end;
1341
- }
1342
-
1343
- .p-dialog-bottom-right {
1344
- justify-content: flex-end;
1345
- align-items: flex-end;
1346
- }
1347
-
1348
- .p-confirm-dialog .p-dialog-content {
1349
- display: flex;
1350
- align-items: center;
1351
- }
1352
-
1353
- /* Resizable */
1354
- .p-dialog .p-resizable-handle {
1355
- position: absolute;
1356
- font-size: 0.1px;
1357
- display: block;
1358
- cursor: se-resize;
1359
- width: 12px;
1360
- height: 12px;
1361
- right: 1px;
1362
- bottom: 1px;
1363
- }
1364
-
1365
- .p-dialog-draggable .p-dialog-header {
1366
- cursor: move;
1367
- }
1368
-
1369
- .p-datatable {
1370
- position: relative;
1371
- }
1372
-
1373
- .p-datatable > .p-datatable-wrapper {
1374
- overflow: auto;
1375
- }
1376
-
1377
- .p-datatable-table {
1378
- border-spacing: 0px;
1379
- width: 100%;
1380
- }
1381
-
1382
- .p-datatable .p-sortable-disabled {
1383
- cursor: auto;
1384
- }
1385
-
1386
- .p-datatable .p-sortable-column {
1387
- cursor: pointer;
1388
- user-select: none;
1389
- }
1390
-
1391
- .p-datatable .p-sortable-column .p-column-title,
1392
- .p-datatable .p-sortable-column .p-sortable-column-icon,
1393
- .p-datatable .p-sortable-column .p-sortable-column-badge {
1394
- vertical-align: middle;
1395
- }
1396
-
1397
- .p-datatable .p-sortable-column .p-sortable-column-badge {
1398
- display: inline-flex;
1399
- align-items: center;
1400
- justify-content: center;
1401
- }
1402
-
1403
- .p-datatable-selectable .p-selectable-row,
1404
- .p-datatable-selectable-cell .p-selectable-cell {
1405
- cursor: pointer;
1406
- }
1407
-
1408
- .p-datatable-drag-selection-helper {
1409
- position: absolute;
1410
- z-index: 99999999;
1411
- }
1412
-
1413
- /* Scrollable */
1414
- .p-datatable-scrollable > .p-datatable-wrapper {
1415
- position: relative;
1416
- }
1417
-
1418
- .p-datatable-scrollable-table > .p-datatable-thead {
1419
- position: sticky;
1420
- top: 0;
1421
- z-index: 1;
1422
- }
1423
-
1424
- .p-datatable-scrollable-table > .p-datatable-frozen-tbody {
1425
- position: sticky;
1426
- z-index: 1;
1427
- }
1428
-
1429
- .p-datatable-scrollable-table > .p-datatable-tfoot {
1430
- position: sticky;
1431
- bottom: 0;
1432
- z-index: 1;
1433
- }
1434
-
1435
- .p-datatable-scrollable .p-frozen-column {
1436
- position: sticky;
1437
- background: inherit;
1438
- }
1439
-
1440
- .p-datatable-scrollable th.p-frozen-column {
1441
- z-index: 1;
1442
- }
1443
-
1444
- .p-datatable-flex-scrollable {
1445
- display: flex;
1446
- flex-direction: column;
1447
- height: 100%;
1448
- }
1449
-
1450
- .p-datatable-flex-scrollable > .p-datatable-wrapper {
1451
- display: flex;
1452
- flex-direction: column;
1453
- flex: 1;
1454
- height: 100%;
1455
- }
1456
-
1457
- .p-datatable-scrollable-table > .p-datatable-tbody > .p-rowgroup-header {
1458
- position: sticky;
1459
- z-index: 1;
1460
- }
1461
-
1462
- /* Resizable */
1463
- .p-datatable-resizable-table > .p-datatable-thead > tr > th,
1464
- .p-datatable-resizable-table > .p-datatable-tfoot > tr > td,
1465
- .p-datatable-resizable-table > .p-datatable-tbody > tr > td {
1466
- overflow: hidden;
1467
- white-space: nowrap;
1468
- }
1469
-
1470
- .p-datatable-resizable-table > .p-datatable-thead > tr > th.p-resizable-column:not(.p-frozen-column) {
1471
- background-clip: padding-box;
1472
- position: relative;
1227
+ .p-datatable-resizable-table > .p-datatable-thead > tr > th.p-resizable-column:not(.p-frozen-column) {
1228
+ background-clip: padding-box;
1229
+ position: relative;
1473
1230
  }
1474
1231
 
1475
1232
  .p-datatable-resizable-table-fit > .p-datatable-thead > tr > th.p-resizable-column:last-child .p-column-resizer {
@@ -1623,25 +1380,268 @@
1623
1380
  left: 0;
1624
1381
  }
1625
1382
 
1626
- /* Alignment */
1627
- .p-datatable .p-datatable-thead > tr > th.p-align-left > .p-column-header-content,
1628
- .p-datatable .p-datatable-tbody > tr > td.p-align-left,
1629
- .p-datatable .p-datatable-tfoot > tr > td.p-align-left {
1630
- text-align: left;
1631
- justify-content: flex-start;
1383
+ /* Alignment */
1384
+ .p-datatable .p-datatable-thead > tr > th.p-align-left > .p-column-header-content,
1385
+ .p-datatable .p-datatable-tbody > tr > td.p-align-left,
1386
+ .p-datatable .p-datatable-tfoot > tr > td.p-align-left {
1387
+ text-align: left;
1388
+ justify-content: flex-start;
1389
+ }
1390
+
1391
+ .p-datatable .p-datatable-thead > tr > th.p-align-right > .p-column-header-content,
1392
+ .p-datatable .p-datatable-tbody > tr > td.p-align-right,
1393
+ .p-datatable .p-datatable-tfoot > tr > td.p-align-right {
1394
+ text-align: right;
1395
+ justify-content: flex-end;
1396
+ }
1397
+
1398
+ .p-datatable .p-datatable-thead > tr > th.p-align-center > .p-column-header-content,
1399
+ .p-datatable .p-datatable-tbody > tr > td.p-align-center,
1400
+ .p-datatable .p-datatable-tfoot > tr > td.p-align-center {
1401
+ text-align: center;
1402
+ justify-content: center;
1403
+ }
1404
+
1405
+ .p-dialog-mask {
1406
+ position: fixed;
1407
+ top: 0;
1408
+ left: 0;
1409
+ width: 100%;
1410
+ height: 100%;
1411
+ display: none;
1412
+ justify-content: center;
1413
+ align-items: center;
1414
+ pointer-events: none;
1415
+ background-color: transparent;
1416
+ transition-property: background-color;
1417
+ }
1418
+
1419
+ .p-dialog-visible {
1420
+ display: flex;
1421
+ }
1422
+
1423
+ .p-dialog-mask.p-component-overlay {
1424
+ pointer-events: auto;
1425
+ }
1426
+
1427
+ .p-dialog {
1428
+ display: flex;
1429
+ flex-direction: column;
1430
+ pointer-events: auto;
1431
+ max-height: 90%;
1432
+ transform: scale(1);
1433
+ position: relative;
1434
+ }
1435
+
1436
+ .p-dialog-content {
1437
+ overflow-y: auto;
1438
+ flex-grow: 1;
1439
+ }
1440
+
1441
+ .p-dialog-header {
1442
+ display: flex;
1443
+ align-items: center;
1444
+ flex-shrink: 0;
1445
+ }
1446
+
1447
+ .p-dialog-footer {
1448
+ flex-shrink: 0;
1449
+ }
1450
+
1451
+ .p-dialog .p-dialog-header-icons {
1452
+ display: flex;
1453
+ align-items: center;
1454
+ align-self: flex-start;
1455
+ flex-shrink: 0;
1456
+ }
1457
+
1458
+ .p-dialog .p-dialog-header-icon {
1459
+ display: flex;
1460
+ align-items: center;
1461
+ justify-content: center;
1462
+ overflow: hidden;
1463
+ position: relative;
1464
+ }
1465
+
1466
+ .p-dialog .p-dialog-title {
1467
+ flex-grow: 1;
1468
+ }
1469
+
1470
+ /* Fluid */
1471
+ .p-fluid .p-dialog-footer .p-button {
1472
+ width: auto;
1473
+ }
1474
+
1475
+ /* Animation */
1476
+ /* Center */
1477
+ .p-dialog-enter {
1478
+ opacity: 0;
1479
+ transform: scale(0.7);
1480
+ }
1481
+
1482
+ .p-dialog-enter-active {
1483
+ opacity: 1;
1484
+ transform: scale(1);
1485
+ transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
1486
+ }
1487
+
1488
+ .p-dialog-enter-done {
1489
+ transform: none;
1490
+ }
1491
+
1492
+ .p-dialog-exit-active {
1493
+ opacity: 0;
1494
+ transform: scale(0.7);
1495
+ transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
1496
+ }
1497
+
1498
+ /* Top, Bottom, Left, Right, Top* and Bottom* */
1499
+ .p-dialog-top .p-dialog,
1500
+ .p-dialog-bottom .p-dialog,
1501
+ .p-dialog-left .p-dialog,
1502
+ .p-dialog-right .p-dialog,
1503
+ .p-dialog-top-left .p-dialog,
1504
+ .p-dialog-top-right .p-dialog,
1505
+ .p-dialog-bottom-left .p-dialog,
1506
+ .p-dialog-bottom-right .p-dialog {
1507
+ margin: 0.75em;
1508
+ }
1509
+
1510
+ .p-dialog-top .p-dialog-enter,
1511
+ .p-dialog-top .p-dialog-exit-active {
1512
+ transform: translate3d(0px, -100%, 0px);
1513
+ }
1514
+
1515
+ .p-dialog-bottom .p-dialog-enter,
1516
+ .p-dialog-bottom .p-dialog-exit-active {
1517
+ transform: translate3d(0px, 100%, 0px);
1518
+ }
1519
+
1520
+ .p-dialog-left .p-dialog-enter,
1521
+ .p-dialog-left .p-dialog-exit-active,
1522
+ .p-dialog-top-left .p-dialog-enter,
1523
+ .p-dialog-top-left .p-dialog-exit-active,
1524
+ .p-dialog-bottom-left .p-dialog-enter,
1525
+ .p-dialog-bottom-left .p-dialog-exit-active {
1526
+ transform: translate3d(-100%, 0px, 0px);
1527
+ }
1528
+
1529
+ .p-dialog-right .p-dialog-enter,
1530
+ .p-dialog-right .p-dialog-exit-active,
1531
+ .p-dialog-top-right .p-dialog-enter,
1532
+ .p-dialog-top-right .p-dialog-exit-active,
1533
+ .p-dialog-bottom-right .p-dialog-enter,
1534
+ .p-dialog-bottom-right .p-dialog-exit-active {
1535
+ transform: translate3d(100%, 0px, 0px);
1536
+ }
1537
+
1538
+ .p-dialog-top .p-dialog-enter-active,
1539
+ .p-dialog-bottom .p-dialog-enter-active,
1540
+ .p-dialog-left .p-dialog-enter-active,
1541
+ .p-dialog-top-left .p-dialog-enter-active,
1542
+ .p-dialog-bottom-left .p-dialog-enter-active,
1543
+ .p-dialog-right .p-dialog-enter-active,
1544
+ .p-dialog-top-right .p-dialog-enter-active,
1545
+ .p-dialog-bottom-right .p-dialog-enter-active {
1546
+ transform: translate3d(0px, 0px, 0px);
1547
+ transition: all 0.3s ease-out;
1548
+ }
1549
+
1550
+ .p-dialog-top .p-dialog-exit-active,
1551
+ .p-dialog-bottom .p-dialog-exit-active,
1552
+ .p-dialog-left .p-dialog-exit-active,
1553
+ .p-dialog-top-left .p-dialog-exit-active,
1554
+ .p-dialog-bottom-left .p-dialog-exit-active,
1555
+ .p-dialog-right .p-dialog-exit-active,
1556
+ .p-dialog-top-right .p-dialog-exit-active,
1557
+ .p-dialog-bottom-right .p-dialog-exit-active {
1558
+ transition: all 0.3s ease-out;
1559
+ }
1560
+
1561
+ /* Maximize */
1562
+ .p-dialog-maximized {
1563
+ transition: none;
1564
+ transform: none;
1565
+ margin: 0 !important;
1566
+ width: 100vw !important;
1567
+ height: 100vh !important;
1568
+ max-height: 100%;
1569
+ top: 0px !important;
1570
+ left: 0px !important;
1571
+ }
1572
+
1573
+ .p-dialog-maximized .p-dialog-content {
1574
+ flex-grow: 1;
1575
+ }
1576
+
1577
+ /* Position */
1578
+ .p-dialog-left {
1579
+ justify-content: flex-start;
1580
+ }
1581
+
1582
+ .p-dialog-right {
1583
+ justify-content: flex-end;
1584
+ }
1585
+
1586
+ .p-dialog-top {
1587
+ align-items: flex-start;
1588
+ }
1589
+
1590
+ .p-dialog-top-left {
1591
+ justify-content: flex-start;
1592
+ align-items: flex-start;
1593
+ }
1594
+
1595
+ .p-dialog-top-right {
1596
+ justify-content: flex-end;
1597
+ align-items: flex-start;
1598
+ }
1599
+
1600
+ .p-dialog-bottom {
1601
+ align-items: flex-end;
1602
+ }
1603
+
1604
+ .p-dialog-bottom-left {
1605
+ justify-content: flex-start;
1606
+ align-items: flex-end;
1607
+ }
1608
+
1609
+ .p-dialog-bottom-right {
1610
+ justify-content: flex-end;
1611
+ align-items: flex-end;
1612
+ }
1613
+
1614
+ .p-confirm-dialog .p-dialog-content {
1615
+ display: flex;
1616
+ align-items: center;
1617
+ }
1618
+
1619
+ /* Resizable */
1620
+ .p-dialog .p-resizable-handle {
1621
+ position: absolute;
1622
+ font-size: 0.1px;
1623
+ display: block;
1624
+ cursor: se-resize;
1625
+ width: 12px;
1626
+ height: 12px;
1627
+ right: 1px;
1628
+ bottom: 1px;
1629
+ }
1630
+
1631
+ .p-dialog-draggable .p-dialog-header {
1632
+ cursor: move;
1632
1633
  }
1633
1634
 
1634
- .p-datatable .p-datatable-thead > tr > th.p-align-right > .p-column-header-content,
1635
- .p-datatable .p-datatable-tbody > tr > td.p-align-right,
1636
- .p-datatable .p-datatable-tfoot > tr > td.p-align-right {
1637
- text-align: right;
1638
- justify-content: flex-end;
1635
+ .p-dataview-loading {
1636
+ position: relative;
1637
+ min-height: 4rem;
1639
1638
  }
1640
1639
 
1641
- .p-datatable .p-datatable-thead > tr > th.p-align-center > .p-column-header-content,
1642
- .p-datatable .p-datatable-tbody > tr > td.p-align-center,
1643
- .p-datatable .p-datatable-tfoot > tr > td.p-align-center {
1644
- text-align: center;
1640
+ .p-dataview .p-dataview-loading-overlay {
1641
+ position: absolute;
1642
+ z-index: 1;
1643
+ display: flex;
1644
+ align-items: center;
1645
1645
  justify-content: center;
1646
1646
  }
1647
1647
 
@@ -1848,96 +1848,6 @@
1848
1848
  flex-direction: row-reverse;
1849
1849
  }
1850
1850
 
1851
- .p-dropdown {
1852
- display: inline-flex;
1853
- cursor: pointer;
1854
- position: relative;
1855
- user-select: none;
1856
- }
1857
-
1858
- .p-dropdown-clear-icon {
1859
- position: absolute;
1860
- top: 50%;
1861
- margin-top: -.5rem;
1862
- }
1863
-
1864
- .p-dropdown-trigger {
1865
- display: flex;
1866
- align-items: center;
1867
- justify-content: center;
1868
- flex-shrink: 0;
1869
- }
1870
-
1871
- .p-dropdown-label {
1872
- display: block;
1873
- white-space: nowrap;
1874
- overflow: hidden;
1875
- flex: 1 1 auto;
1876
- width: 1%;
1877
- text-overflow: ellipsis;
1878
- cursor: pointer;
1879
- }
1880
-
1881
- .p-dropdown-label-empty {
1882
- overflow: hidden;
1883
- visibility: hidden;
1884
- }
1885
-
1886
- input.p-dropdown-label {
1887
- cursor: default;
1888
- }
1889
-
1890
- .p-dropdown .p-dropdown-panel {
1891
- min-width: 100%;
1892
- }
1893
-
1894
- .p-dropdown-panel {
1895
- position: absolute;
1896
- top: 0;
1897
- left: 0;
1898
- }
1899
-
1900
- .p-dropdown-items-wrapper {
1901
- overflow: auto;
1902
- }
1903
-
1904
- .p-dropdown-item {
1905
- cursor: pointer;
1906
- font-weight: normal;
1907
- white-space: nowrap;
1908
- position: relative;
1909
- overflow: hidden;
1910
- }
1911
-
1912
- .p-dropdown-items {
1913
- margin: 0;
1914
- padding: 0;
1915
- list-style-type: none;
1916
- }
1917
-
1918
- .p-dropdown-filter {
1919
- width: 100%;
1920
- }
1921
-
1922
- .p-dropdown-filter-container {
1923
- position: relative;
1924
- }
1925
-
1926
- .p-dropdown-filter-icon,
1927
- .p-dropdown-filter-clear-icon {
1928
- position: absolute;
1929
- top: 50%;
1930
- margin-top: -.5rem;
1931
- }
1932
-
1933
- .p-fluid .p-dropdown {
1934
- display: flex;
1935
- }
1936
-
1937
- .p-fluid .p-dropdown .p-dropdown-label {
1938
- width: 1%;
1939
- }
1940
-
1941
1851
  /*!
1942
1852
  * Quill Editor v1.3.7
1943
1853
  * https://quilljs.com/
@@ -2884,23 +2794,94 @@ input.p-dropdown-label {
2884
2794
  border: 1px solid #ccc;
2885
2795
  }
2886
2796
 
2887
- .p-fieldset-legend > a,
2888
- .p-fieldset-legend > span {
2797
+ .p-dropdown {
2798
+ display: inline-flex;
2799
+ cursor: pointer;
2800
+ position: relative;
2801
+ user-select: none;
2802
+ }
2803
+
2804
+ .p-dropdown-clear-icon {
2805
+ position: absolute;
2806
+ top: 50%;
2807
+ margin-top: -.5rem;
2808
+ }
2809
+
2810
+ .p-dropdown-trigger {
2889
2811
  display: flex;
2890
2812
  align-items: center;
2891
2813
  justify-content: center;
2814
+ flex-shrink: 0;
2892
2815
  }
2893
2816
 
2894
- .p-fieldset-toggleable .p-fieldset-legend a {
2817
+ .p-dropdown-label {
2818
+ display: block;
2819
+ white-space: nowrap;
2820
+ overflow: hidden;
2821
+ flex: 1 1 auto;
2822
+ width: 1%;
2823
+ text-overflow: ellipsis;
2895
2824
  cursor: pointer;
2896
- user-select: none;
2825
+ }
2826
+
2827
+ .p-dropdown-label-empty {
2897
2828
  overflow: hidden;
2829
+ visibility: hidden;
2830
+ }
2831
+
2832
+ input.p-dropdown-label {
2833
+ cursor: default;
2834
+ }
2835
+
2836
+ .p-dropdown .p-dropdown-panel {
2837
+ min-width: 100%;
2838
+ }
2839
+
2840
+ .p-dropdown-panel {
2841
+ position: absolute;
2842
+ top: 0;
2843
+ left: 0;
2844
+ }
2845
+
2846
+ .p-dropdown-items-wrapper {
2847
+ overflow: auto;
2848
+ }
2849
+
2850
+ .p-dropdown-item {
2851
+ cursor: pointer;
2852
+ font-weight: normal;
2853
+ white-space: nowrap;
2898
2854
  position: relative;
2899
- text-decoration: none;
2855
+ overflow: hidden;
2900
2856
  }
2901
2857
 
2902
- .p-fieldset-legend-text {
2903
- line-height: 1;
2858
+ .p-dropdown-items {
2859
+ margin: 0;
2860
+ padding: 0;
2861
+ list-style-type: none;
2862
+ }
2863
+
2864
+ .p-dropdown-filter {
2865
+ width: 100%;
2866
+ }
2867
+
2868
+ .p-dropdown-filter-container {
2869
+ position: relative;
2870
+ }
2871
+
2872
+ .p-dropdown-filter-icon,
2873
+ .p-dropdown-filter-clear-icon {
2874
+ position: absolute;
2875
+ top: 50%;
2876
+ margin-top: -.5rem;
2877
+ }
2878
+
2879
+ .p-fluid .p-dropdown {
2880
+ display: flex;
2881
+ }
2882
+
2883
+ .p-fluid .p-dropdown .p-dropdown-label {
2884
+ width: 1%;
2904
2885
  }
2905
2886
 
2906
2887
  .p-fileupload-content {
@@ -2962,6 +2943,25 @@ input.p-dropdown-label {
2962
2943
  width: auto;
2963
2944
  }
2964
2945
 
2946
+ .p-fieldset-legend > a,
2947
+ .p-fieldset-legend > span {
2948
+ display: flex;
2949
+ align-items: center;
2950
+ justify-content: center;
2951
+ }
2952
+
2953
+ .p-fieldset-toggleable .p-fieldset-legend a {
2954
+ cursor: pointer;
2955
+ user-select: none;
2956
+ overflow: hidden;
2957
+ position: relative;
2958
+ text-decoration: none;
2959
+ }
2960
+
2961
+ .p-fieldset-legend-text {
2962
+ line-height: 1;
2963
+ }
2964
+
2965
2965
  .p-galleria-content {
2966
2966
  display: flex;
2967
2967
  flex-direction: column;
@@ -3253,43 +3253,12 @@ input.p-dropdown-label {
3253
3253
  }
3254
3254
 
3255
3255
  /* Keyboard Support */
3256
- .p-items-hidden .p-galleria-thumbnail-item {
3257
- visibility: hidden;
3258
- }
3259
-
3260
- .p-items-hidden .p-galleria-thumbnail-item.p-galleria-thumbnail-item-active {
3261
- visibility: visible;
3262
- }
3263
-
3264
- .p-icon {
3265
- display: inline-block;
3266
- }
3267
-
3268
- .p-icon-spin {
3269
- -webkit-animation: p-icon-spin 2s infinite linear;
3270
- animation: p-icon-spin 2s infinite linear;
3271
- }
3272
-
3273
- @-webkit-keyframes p-icon-spin {
3274
- 0% {
3275
- -webkit-transform: rotate(0deg);
3276
- transform: rotate(0deg);
3277
- }
3278
- 100% {
3279
- -webkit-transform: rotate(359deg);
3280
- transform: rotate(359deg);
3281
- }
3256
+ .p-items-hidden .p-galleria-thumbnail-item {
3257
+ visibility: hidden;
3282
3258
  }
3283
3259
 
3284
- @keyframes p-icon-spin {
3285
- 0% {
3286
- -webkit-transform: rotate(0deg);
3287
- transform: rotate(0deg);
3288
- }
3289
- 100% {
3290
- -webkit-transform: rotate(359deg);
3291
- transform: rotate(359deg);
3292
- }
3260
+ .p-items-hidden .p-galleria-thumbnail-item.p-galleria-thumbnail-item-active {
3261
+ visibility: visible;
3293
3262
  }
3294
3263
 
3295
3264
  .p-image-mask {
@@ -3376,6 +3345,37 @@ input.p-dropdown-label {
3376
3345
  transition: all 150ms cubic-bezier(0.4, 0.0, 0.2, 1);
3377
3346
  }
3378
3347
 
3348
+ .p-icon {
3349
+ display: inline-block;
3350
+ }
3351
+
3352
+ .p-icon-spin {
3353
+ -webkit-animation: p-icon-spin 2s infinite linear;
3354
+ animation: p-icon-spin 2s infinite linear;
3355
+ }
3356
+
3357
+ @-webkit-keyframes p-icon-spin {
3358
+ 0% {
3359
+ -webkit-transform: rotate(0deg);
3360
+ transform: rotate(0deg);
3361
+ }
3362
+ 100% {
3363
+ -webkit-transform: rotate(359deg);
3364
+ transform: rotate(359deg);
3365
+ }
3366
+ }
3367
+
3368
+ @keyframes p-icon-spin {
3369
+ 0% {
3370
+ -webkit-transform: rotate(0deg);
3371
+ transform: rotate(0deg);
3372
+ }
3373
+ 100% {
3374
+ -webkit-transform: rotate(359deg);
3375
+ transform: rotate(359deg);
3376
+ }
3377
+ }
3378
+
3379
3379
  .p-inplace .p-inplace-display {
3380
3380
  display: inline;
3381
3381
  cursor: pointer;
@@ -3684,6 +3684,32 @@ input.p-dropdown-label {
3684
3684
  width: 100%;
3685
3685
  }
3686
3686
 
3687
+ .p-menu-overlay {
3688
+ position: absolute;
3689
+ /* Github #3122: Prevent animation flickering */
3690
+ top: -9999px;
3691
+ left: -9999px;
3692
+ }
3693
+
3694
+ .p-menu ul {
3695
+ margin: 0;
3696
+ padding: 0;
3697
+ list-style: none;
3698
+ }
3699
+
3700
+ .p-menu .p-menuitem-link {
3701
+ cursor: pointer;
3702
+ display: flex;
3703
+ align-items: center;
3704
+ text-decoration: none;
3705
+ overflow: hidden;
3706
+ position: relative;
3707
+ }
3708
+
3709
+ .p-menu .p-menuitem-text {
3710
+ line-height: 1;
3711
+ }
3712
+
3687
3713
  .p-megamenu {
3688
3714
  display: flex;
3689
3715
  }
@@ -3843,32 +3869,6 @@ input.p-dropdown-label {
3843
3869
  display: flex;
3844
3870
  }
3845
3871
 
3846
- .p-menu-overlay {
3847
- position: absolute;
3848
- /* Github #3122: Prevent animation flickering */
3849
- top: -9999px;
3850
- left: -9999px;
3851
- }
3852
-
3853
- .p-menu ul {
3854
- margin: 0;
3855
- padding: 0;
3856
- list-style: none;
3857
- }
3858
-
3859
- .p-menu .p-menuitem-link {
3860
- cursor: pointer;
3861
- display: flex;
3862
- align-items: center;
3863
- text-decoration: none;
3864
- overflow: hidden;
3865
- position: relative;
3866
- }
3867
-
3868
- .p-menu .p-menuitem-text {
3869
- line-height: 1;
3870
- }
3871
-
3872
3872
  .p-menubar {
3873
3873
  display: flex;
3874
3874
  align-items: center;
@@ -3942,6 +3942,49 @@ input.p-dropdown-label {
3942
3942
  text-decoration: none;
3943
3943
  }
3944
3944
 
3945
+ .p-message-wrapper {
3946
+ display: flex;
3947
+ align-items: center;
3948
+ }
3949
+
3950
+ .p-message-close {
3951
+ display: flex;
3952
+ align-items: center;
3953
+ justify-content: center;
3954
+ }
3955
+
3956
+ .p-message-close.p-link {
3957
+ margin-left: auto;
3958
+ overflow: hidden;
3959
+ position: relative;
3960
+ }
3961
+
3962
+ .p-message-enter {
3963
+ opacity: 0;
3964
+ }
3965
+
3966
+ .p-message-enter-active {
3967
+ opacity: 1;
3968
+ transition: opacity .3s;
3969
+ }
3970
+
3971
+ .p-message-exit {
3972
+ opacity: 1;
3973
+ max-height: 1000px;
3974
+ }
3975
+
3976
+ .p-message-exit-active {
3977
+ opacity: 0;
3978
+ max-height: 0;
3979
+ margin: 0;
3980
+ overflow: hidden;
3981
+ transition: max-height .3s cubic-bezier(0, 1, 0, 1), opacity .3s, margin .3s;
3982
+ }
3983
+
3984
+ .p-message-exit-active .p-message-close {
3985
+ display: none;
3986
+ }
3987
+
3945
3988
  .p-inline-message {
3946
3989
  display: inline-flex;
3947
3990
  align-items: center;
@@ -4027,169 +4070,66 @@ input.p-dropdown-label {
4027
4070
  display: flex;
4028
4071
  flex-wrap: wrap;
4029
4072
  }
4030
-
4031
- .p-multiselect-items-wrapper {
4032
- overflow: auto;
4033
- }
4034
-
4035
- .p-multiselect-items {
4036
- margin: 0;
4037
- padding: 0;
4038
- list-style-type: none;
4039
- }
4040
-
4041
- .p-multiselect-item {
4042
- cursor: pointer;
4043
- display: flex;
4044
- align-items: center;
4045
- font-weight: normal;
4046
- white-space: nowrap;
4047
- position: relative;
4048
- overflow: hidden;
4049
- }
4050
-
4051
- .p-multiselect-header {
4052
- display: flex;
4053
- align-items: center;
4054
- justify-content: space-between;
4055
- }
4056
-
4057
- .p-multiselect-filter-container {
4058
- position: relative;
4059
- flex: 1 1 auto;
4060
- }
4061
-
4062
- .p-multiselect-filter-icon {
4063
- position: absolute;
4064
- top: 50%;
4065
- margin-top: -.5rem;
4066
- }
4067
-
4068
- .p-multiselect-filter-container .p-inputtext {
4069
- width: 100%;
4070
- }
4071
-
4072
- .p-multiselect-close {
4073
- display: flex;
4074
- align-items: center;
4075
- justify-content: center;
4076
- flex-shrink: 0;
4077
- overflow: hidden;
4078
- position: relative;
4079
- margin-left: auto;
4080
- }
4081
-
4082
- .p-multiselect-clear-icon {
4083
- position: absolute;
4084
- top: 50%;
4085
- margin-top: -.5rem;
4086
- }
4087
-
4088
- .p-fluid .p-multiselect {
4089
- display: flex;
4090
- }
4091
-
4092
- .p-message-wrapper {
4093
- display: flex;
4094
- align-items: center;
4095
- }
4096
-
4097
- .p-message-close {
4098
- display: flex;
4099
- align-items: center;
4100
- justify-content: center;
4101
- }
4102
-
4103
- .p-message-close.p-link {
4104
- margin-left: auto;
4105
- overflow: hidden;
4106
- position: relative;
4107
- }
4108
-
4109
- .p-message-enter {
4110
- opacity: 0;
4111
- }
4112
-
4113
- .p-message-enter-active {
4114
- opacity: 1;
4115
- transition: opacity .3s;
4116
- }
4117
-
4118
- .p-message-exit {
4119
- opacity: 1;
4120
- max-height: 1000px;
4121
- }
4122
-
4123
- .p-message-exit-active {
4124
- opacity: 0;
4125
- max-height: 0;
4126
- margin: 0;
4127
- overflow: hidden;
4128
- transition: max-height .3s cubic-bezier(0, 1, 0, 1), opacity .3s, margin .3s;
4129
- }
4130
-
4131
- .p-message-exit-active .p-message-close {
4132
- display: none;
4133
- }
4134
-
4135
- .p-orderlist {
4136
- display: flex;
4137
- }
4138
-
4139
- .p-orderlist-controls {
4140
- display: flex;
4141
- flex-direction: column;
4142
- justify-content: center;
4143
- }
4144
-
4145
- .p-orderlist-list-container {
4146
- flex: 1 1 auto;
4073
+
4074
+ .p-multiselect-items-wrapper {
4075
+ overflow: auto;
4147
4076
  }
4148
4077
 
4149
- .p-orderlist-list {
4150
- list-style-type: none;
4078
+ .p-multiselect-items {
4151
4079
  margin: 0;
4152
4080
  padding: 0;
4153
- overflow: auto;
4154
- min-height: 12rem;
4155
- max-height: 24rem;
4081
+ list-style-type: none;
4156
4082
  }
4157
4083
 
4158
- .p-orderlist-item {
4084
+ .p-multiselect-item {
4159
4085
  cursor: pointer;
4160
- overflow: hidden;
4086
+ display: flex;
4087
+ align-items: center;
4088
+ font-weight: normal;
4089
+ white-space: nowrap;
4161
4090
  position: relative;
4091
+ overflow: hidden;
4162
4092
  }
4163
4093
 
4164
- .p-orderlist-filter {
4094
+ .p-multiselect-header {
4095
+ display: flex;
4096
+ align-items: center;
4097
+ justify-content: space-between;
4098
+ }
4099
+
4100
+ .p-multiselect-filter-container {
4165
4101
  position: relative;
4102
+ flex: 1 1 auto;
4166
4103
  }
4167
4104
 
4168
- .p-orderlist-filter-icon {
4105
+ .p-multiselect-filter-icon {
4169
4106
  position: absolute;
4170
4107
  top: 50%;
4171
4108
  margin-top: -.5rem;
4172
4109
  }
4173
4110
 
4174
- .p-orderlist-filter-input {
4111
+ .p-multiselect-filter-container .p-inputtext {
4175
4112
  width: 100%;
4176
4113
  }
4177
4114
 
4178
- .p-orderlist.p-state-disabled .p-orderlist-item,
4179
- .p-orderlist.p-state-disabled .p-button {
4180
- cursor: default;
4181
- }
4182
-
4183
- .p-orderlist.p-state-disabled .p-orderlist-list {
4115
+ .p-multiselect-close {
4116
+ display: flex;
4117
+ align-items: center;
4118
+ justify-content: center;
4119
+ flex-shrink: 0;
4184
4120
  overflow: hidden;
4121
+ position: relative;
4122
+ margin-left: auto;
4185
4123
  }
4186
4124
 
4187
- .p-orderlist .p-orderlist-droppoint {
4188
- height: 0.5rem;
4125
+ .p-multiselect-clear-icon {
4126
+ position: absolute;
4127
+ top: 50%;
4128
+ margin-top: -.5rem;
4189
4129
  }
4190
4130
 
4191
- .p-orderlist .p-orderlist-droppoint.p-orderlist-droppoint-highlight {
4192
- background: var(--primary-color);
4131
+ .p-fluid .p-multiselect {
4132
+ display: flex;
4193
4133
  }
4194
4134
 
4195
4135
  .p-organizationchart-table {
@@ -4245,6 +4185,66 @@ input.p-dropdown-label {
4245
4185
  cursor: pointer;
4246
4186
  }
4247
4187
 
4188
+ .p-orderlist {
4189
+ display: flex;
4190
+ }
4191
+
4192
+ .p-orderlist-controls {
4193
+ display: flex;
4194
+ flex-direction: column;
4195
+ justify-content: center;
4196
+ }
4197
+
4198
+ .p-orderlist-list-container {
4199
+ flex: 1 1 auto;
4200
+ }
4201
+
4202
+ .p-orderlist-list {
4203
+ list-style-type: none;
4204
+ margin: 0;
4205
+ padding: 0;
4206
+ overflow: auto;
4207
+ min-height: 12rem;
4208
+ max-height: 24rem;
4209
+ }
4210
+
4211
+ .p-orderlist-item {
4212
+ cursor: pointer;
4213
+ overflow: hidden;
4214
+ position: relative;
4215
+ }
4216
+
4217
+ .p-orderlist-filter {
4218
+ position: relative;
4219
+ }
4220
+
4221
+ .p-orderlist-filter-icon {
4222
+ position: absolute;
4223
+ top: 50%;
4224
+ margin-top: -.5rem;
4225
+ }
4226
+
4227
+ .p-orderlist-filter-input {
4228
+ width: 100%;
4229
+ }
4230
+
4231
+ .p-orderlist.p-state-disabled .p-orderlist-item,
4232
+ .p-orderlist.p-state-disabled .p-button {
4233
+ cursor: default;
4234
+ }
4235
+
4236
+ .p-orderlist.p-state-disabled .p-orderlist-list {
4237
+ overflow: hidden;
4238
+ }
4239
+
4240
+ .p-orderlist .p-orderlist-droppoint {
4241
+ height: 0.5rem;
4242
+ }
4243
+
4244
+ .p-orderlist .p-orderlist-droppoint.p-orderlist-droppoint-highlight {
4245
+ background: var(--primary-color);
4246
+ }
4247
+
4248
4248
  .p-overlaypanel {
4249
4249
  position: absolute;
4250
4250
  margin-top: 10px;
@@ -4584,6 +4584,47 @@ input.p-dropdown-label {
4584
4584
  right: -8%; }
4585
4585
  }
4586
4586
 
4587
+ .p-radiobutton {
4588
+ display: inline-flex;
4589
+ cursor: pointer;
4590
+ user-select: none;
4591
+ vertical-align: bottom;
4592
+ }
4593
+
4594
+ .p-radiobutton-box {
4595
+ display: flex;
4596
+ justify-content: center;
4597
+ align-items: center;
4598
+ }
4599
+
4600
+ .p-radiobutton-icon {
4601
+ -webkit-backface-visibility: hidden;
4602
+ backface-visibility: hidden;
4603
+ transform: translateZ(0) scale(.1);
4604
+ border-radius: 50%;
4605
+ visibility: hidden;
4606
+ }
4607
+
4608
+ .p-radiobutton-box.p-highlight .p-radiobutton-icon {
4609
+ transform: translateZ(0) scale(1.0, 1.0);
4610
+ visibility: visible;
4611
+ }
4612
+
4613
+ .p-rating {
4614
+ display: flex;
4615
+ align-items: center;
4616
+ }
4617
+
4618
+ .p-rating-item {
4619
+ display: inline-flex;
4620
+ align-items: center;
4621
+ cursor: pointer;
4622
+ }
4623
+
4624
+ .p-rating.p-readonly .p-rating-item {
4625
+ cursor: default;
4626
+ }
4627
+
4587
4628
  .p-progress-spinner {
4588
4629
  position: relative;
4589
4630
  margin: 0 auto;
@@ -4657,47 +4698,6 @@ input.p-dropdown-label {
4657
4698
  }
4658
4699
  }
4659
4700
 
4660
- .p-radiobutton {
4661
- display: inline-flex;
4662
- cursor: pointer;
4663
- user-select: none;
4664
- vertical-align: bottom;
4665
- }
4666
-
4667
- .p-radiobutton-box {
4668
- display: flex;
4669
- justify-content: center;
4670
- align-items: center;
4671
- }
4672
-
4673
- .p-radiobutton-icon {
4674
- -webkit-backface-visibility: hidden;
4675
- backface-visibility: hidden;
4676
- transform: translateZ(0) scale(.1);
4677
- border-radius: 50%;
4678
- visibility: hidden;
4679
- }
4680
-
4681
- .p-radiobutton-box.p-highlight .p-radiobutton-icon {
4682
- transform: translateZ(0) scale(1.0, 1.0);
4683
- visibility: visible;
4684
- }
4685
-
4686
- .p-rating {
4687
- display: flex;
4688
- align-items: center;
4689
- }
4690
-
4691
- .p-rating-item {
4692
- display: inline-flex;
4693
- align-items: center;
4694
- cursor: pointer;
4695
- }
4696
-
4697
- .p-rating.p-readonly .p-rating-item {
4698
- cursor: default;
4699
- }
4700
-
4701
4701
  .p-ripple {
4702
4702
  overflow: hidden;
4703
4703
  position: relative;
@@ -4726,6 +4726,45 @@ input.p-dropdown-label {
4726
4726
  }
4727
4727
  }
4728
4728
 
4729
+ .p-scrolltop {
4730
+ position: fixed;
4731
+ bottom: 20px;
4732
+ right: 20px;
4733
+ display: flex;
4734
+ align-items: center;
4735
+ justify-content: center;
4736
+ }
4737
+
4738
+ .p-scrolltop-sticky {
4739
+ position: sticky;
4740
+ }
4741
+
4742
+ .p-scrolltop-sticky.p-link {
4743
+ margin-left: auto;
4744
+ }
4745
+
4746
+ .p-scrolltop-helper {
4747
+ display: none !important;
4748
+ }
4749
+
4750
+ .p-scrolltop-enter {
4751
+ opacity: 0;
4752
+ }
4753
+
4754
+ .p-scrolltop-enter-active {
4755
+ opacity: 1;
4756
+ transition: opacity .15s;
4757
+ }
4758
+
4759
+ .p-scrolltop-exit {
4760
+ opacity: 1;
4761
+ }
4762
+
4763
+ .p-scrolltop-exit-active {
4764
+ opacity: 0;
4765
+ transition: opacity .15s;
4766
+ }
4767
+
4729
4768
  .p-scrollpanel-wrapper {
4730
4769
  overflow: hidden;
4731
4770
  width: 100%;
@@ -4777,45 +4816,39 @@ input.p-dropdown-label {
4777
4816
  user-select: none;
4778
4817
  }
4779
4818
 
4780
- .p-scrolltop {
4781
- position: fixed;
4782
- bottom: 20px;
4783
- right: 20px;
4784
- display: flex;
4785
- align-items: center;
4786
- justify-content: center;
4787
- }
4788
-
4789
- .p-scrolltop-sticky {
4790
- position: sticky;
4791
- }
4792
-
4793
- .p-scrolltop-sticky.p-link {
4794
- margin-left: auto;
4795
- }
4796
-
4797
- .p-scrolltop-helper {
4798
- display: none !important;
4799
- }
4800
-
4801
- .p-scrolltop-enter {
4802
- opacity: 0;
4819
+ .p-skeleton {
4820
+ position: relative;
4821
+ overflow: hidden;
4803
4822
  }
4804
4823
 
4805
- .p-scrolltop-enter-active {
4806
- opacity: 1;
4807
- transition: opacity .15s;
4824
+ .p-skeleton::after {
4825
+ content: "";
4826
+ animation: p-skeleton-animation 1.2s infinite;
4827
+ height: 100%;
4828
+ left: 0;
4829
+ position: absolute;
4830
+ right: 0;
4831
+ top: 0;
4832
+ transform: translateX(-100%);
4833
+ z-index: 1;
4808
4834
  }
4809
4835
 
4810
- .p-scrolltop-exit {
4811
- opacity: 1;
4836
+ .p-skeleton-circle {
4837
+ border-radius: 50%;
4812
4838
  }
4813
4839
 
4814
- .p-scrolltop-exit-active {
4815
- opacity: 0;
4816
- transition: opacity .15s;
4840
+ .p-skeleton-none::after {
4841
+ animation: none;
4817
4842
  }
4818
4843
 
4844
+ @keyframes p-skeleton-animation {
4845
+ from {
4846
+ transform: translateX(-100%);
4847
+ }
4848
+ to {
4849
+ transform: translateX(100%);
4850
+ }
4851
+ }
4819
4852
  .p-sidebar-mask {
4820
4853
  position: fixed;
4821
4854
  top: 0;
@@ -5035,39 +5068,6 @@ input.p-dropdown-label {
5035
5068
  }
5036
5069
  }
5037
5070
 
5038
- .p-skeleton {
5039
- position: relative;
5040
- overflow: hidden;
5041
- }
5042
-
5043
- .p-skeleton::after {
5044
- content: "";
5045
- animation: p-skeleton-animation 1.2s infinite;
5046
- height: 100%;
5047
- left: 0;
5048
- position: absolute;
5049
- right: 0;
5050
- top: 0;
5051
- transform: translateX(-100%);
5052
- z-index: 1;
5053
- }
5054
-
5055
- .p-skeleton-circle {
5056
- border-radius: 50%;
5057
- }
5058
-
5059
- .p-skeleton-none::after {
5060
- animation: none;
5061
- }
5062
-
5063
- @keyframes p-skeleton-animation {
5064
- from {
5065
- transform: translateX(-100%);
5066
- }
5067
- to {
5068
- transform: translateX(100%);
5069
- }
5070
- }
5071
5071
  .p-slidemenu {
5072
5072
  width: 12.5em;
5073
5073
  }
@@ -5157,51 +5157,6 @@ input.p-dropdown-label {
5157
5157
  display: block;
5158
5158
  }
5159
5159
 
5160
- .p-slider {
5161
- position: relative;
5162
- }
5163
-
5164
- .p-slider .p-slider-handle {
5165
- position: absolute;
5166
- cursor: grab;
5167
- touch-action: none;
5168
- display: block;
5169
- z-index: 1;
5170
- }
5171
-
5172
- .p-slider .p-slider-handle.p-slider-handle-active {
5173
- z-index: 2;
5174
- }
5175
-
5176
- .p-slider-range {
5177
- position: absolute;
5178
- display: block;
5179
- }
5180
-
5181
- .p-slider-horizontal .p-slider-range {
5182
- top: 0;
5183
- left: 0;
5184
- height: 100%;
5185
- }
5186
-
5187
- .p-slider-horizontal .p-slider-handle {
5188
- top: 50%;
5189
- }
5190
-
5191
- .p-slider-vertical {
5192
- height: 100px;
5193
- }
5194
-
5195
- .p-slider-vertical .p-slider-handle {
5196
- left: 50%;
5197
- }
5198
-
5199
- .p-slider-vertical .p-slider-range {
5200
- bottom: 0;
5201
- left: 0;
5202
- width: 100%;
5203
- }
5204
-
5205
5160
  .p-speeddial {
5206
5161
  position: absolute;
5207
5162
  display: flex;
@@ -5313,6 +5268,51 @@ input.p-dropdown-label {
5313
5268
  flex-direction: row;
5314
5269
  }
5315
5270
 
5271
+ .p-slider {
5272
+ position: relative;
5273
+ }
5274
+
5275
+ .p-slider .p-slider-handle {
5276
+ position: absolute;
5277
+ cursor: grab;
5278
+ touch-action: none;
5279
+ display: block;
5280
+ z-index: 1;
5281
+ }
5282
+
5283
+ .p-slider .p-slider-handle.p-slider-handle-active {
5284
+ z-index: 2;
5285
+ }
5286
+
5287
+ .p-slider-range {
5288
+ position: absolute;
5289
+ display: block;
5290
+ }
5291
+
5292
+ .p-slider-horizontal .p-slider-range {
5293
+ top: 0;
5294
+ left: 0;
5295
+ height: 100%;
5296
+ }
5297
+
5298
+ .p-slider-horizontal .p-slider-handle {
5299
+ top: 50%;
5300
+ }
5301
+
5302
+ .p-slider-vertical {
5303
+ height: 100px;
5304
+ }
5305
+
5306
+ .p-slider-vertical .p-slider-handle {
5307
+ left: 50%;
5308
+ }
5309
+
5310
+ .p-slider-vertical .p-slider-range {
5311
+ bottom: 0;
5312
+ left: 0;
5313
+ width: 100%;
5314
+ }
5315
+
5316
5316
  .p-splitbutton {
5317
5317
  display: inline-flex;
5318
5318
  position: relative;
@@ -5452,46 +5452,6 @@ input.p-dropdown-label {
5452
5452
  display: block;
5453
5453
  }
5454
5454
 
5455
- .p-tabmenu {
5456
- overflow-x: auto;
5457
- }
5458
-
5459
- .p-tabmenu-nav {
5460
- display: flex;
5461
- margin: 0;
5462
- padding: 0;
5463
- list-style-type: none;
5464
- flex-wrap: nowrap;
5465
- }
5466
-
5467
- .p-tabmenu-nav a {
5468
- cursor: pointer;
5469
- user-select: none;
5470
- display: flex;
5471
- align-items: center;
5472
- position: relative;
5473
- text-decoration: none;
5474
- text-decoration: none;
5475
- overflow: hidden;
5476
- }
5477
-
5478
- .p-tabmenu-nav a:focus {
5479
- z-index: 1;
5480
- }
5481
-
5482
- .p-tabmenu-nav .p-menuitem-text {
5483
- line-height: 1;
5484
- }
5485
-
5486
- .p-tabmenu-ink-bar {
5487
- display: none;
5488
- z-index: 1;
5489
- }
5490
-
5491
- .p-tabmenu::-webkit-scrollbar {
5492
- display: none;
5493
- }
5494
-
5495
5455
  .p-tabview-nav-container {
5496
5456
  position: relative;
5497
5457
  }
@@ -5567,21 +5527,46 @@ input.p-dropdown-label {
5567
5527
  display: none;
5568
5528
  }
5569
5529
 
5570
- .p-tag {
5571
- display: inline-flex;
5530
+ .p-tabmenu {
5531
+ overflow-x: auto;
5532
+ }
5533
+
5534
+ .p-tabmenu-nav {
5535
+ display: flex;
5536
+ margin: 0;
5537
+ padding: 0;
5538
+ list-style-type: none;
5539
+ flex-wrap: nowrap;
5540
+ }
5541
+
5542
+ .p-tabmenu-nav a {
5543
+ cursor: pointer;
5544
+ user-select: none;
5545
+ display: flex;
5572
5546
  align-items: center;
5573
- justify-content: center;
5547
+ position: relative;
5548
+ text-decoration: none;
5549
+ text-decoration: none;
5550
+ overflow: hidden;
5574
5551
  }
5575
5552
 
5576
- .p-tag-icon,
5577
- .p-tag-value,
5578
- .p-tag-icon.pi {
5579
- line-height: 1.5;
5553
+ .p-tabmenu-nav a:focus {
5554
+ z-index: 1;
5580
5555
  }
5581
5556
 
5582
- .p-tag.p-tag-rounded {
5583
- border-radius: 10rem;
5557
+ .p-tabmenu-nav .p-menuitem-text {
5558
+ line-height: 1;
5559
+ }
5560
+
5561
+ .p-tabmenu-ink-bar {
5562
+ display: none;
5563
+ z-index: 1;
5564
+ }
5565
+
5566
+ .p-tabmenu::-webkit-scrollbar {
5567
+ display: none;
5584
5568
  }
5569
+
5585
5570
  .p-terminal {
5586
5571
  height: 18rem;
5587
5572
  overflow: auto;
@@ -5605,6 +5590,21 @@ input.p-dropdown-label {
5605
5590
  display: none;
5606
5591
  }
5607
5592
 
5593
+ .p-tag {
5594
+ display: inline-flex;
5595
+ align-items: center;
5596
+ justify-content: center;
5597
+ }
5598
+
5599
+ .p-tag-icon,
5600
+ .p-tag-value,
5601
+ .p-tag-icon.pi {
5602
+ line-height: 1.5;
5603
+ }
5604
+
5605
+ .p-tag.p-tag-rounded {
5606
+ border-radius: 10rem;
5607
+ }
5608
5608
  .p-tieredmenu-overlay {
5609
5609
  position: absolute;
5610
5610
  }