@vitrosoftware/common-ui-ts 1.1.96 → 1.1.98

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.
Files changed (113) hide show
  1. package/css/std/controls/action-handler/action-result-list.css +86 -0
  2. package/css/std/controls/action-handler/confirm-dialog.css +25 -0
  3. package/css/std/controls/action-handler/img/question.svg +39 -8
  4. package/css/std/controls/action-handler/img/save-blue.svg +5 -0
  5. package/css/std/controls/action-handler/result-dialog.css +124 -0
  6. package/css/std/controls/button-cancel/button-cancel.css +12 -0
  7. package/css/std/controls/button-group/button-group.css +1 -0
  8. package/css/std/controls/checkbox/checkbox.css +4 -4
  9. package/css/std/controls/checkbox/img/checkbox-active.svg +4 -0
  10. package/css/std/controls/checkbox/img/checkbox-empty.svg +3 -0
  11. package/css/std/controls/criterion/criterion.css +1 -1
  12. package/css/std/controls/date-picker/date-picker.css +1 -4
  13. package/css/std/controls/dialog/dialog-content.css +12 -0
  14. package/css/std/controls/dialog/dialog-footer.css +52 -4
  15. package/css/std/controls/dialog/dialog-header.css +14 -17
  16. package/css/std/controls/dialog/dialog.css +45 -9
  17. package/css/std/controls/dialog/img/cancel-white.svg +9 -2
  18. package/css/std/controls/dialog/img/collapse-bottom-grey.svg +3 -0
  19. package/css/std/controls/dialog/img/collapse-up-grey.svg +3 -0
  20. package/css/std/controls/expand-collapse-button/expand-collapse-button.css +33 -0
  21. package/css/std/controls/expand-control-group/expand-control-group.css +1 -10
  22. package/css/std/controls/field-iterator/field-iterator.css +4 -0
  23. package/css/std/controls/file-version-select/file-version-select.css +8 -4
  24. package/css/std/controls/heading/heading.css +49 -0
  25. package/css/std/controls/image-picker/image-picker.css +31 -1
  26. package/css/std/controls/input/input.css +2 -7
  27. package/css/std/controls/lookup-picker/lookup-picker.css +1 -4
  28. package/css/std/controls/pdf-viewer/custom.css +25 -2
  29. package/css/std/controls/pdf-viewer/img/cancel-black.svg +3 -0
  30. package/css/std/controls/pdf-viewer/img/create-issue-black.svg +5 -0
  31. package/css/std/controls/pdf-viewer/img/delete-black.svg +11 -0
  32. package/css/std/controls/pdf-viewer/img/hide-measures.svg +16 -0
  33. package/css/std/controls/pdf-viewer/img/measures-area.svg +17 -0
  34. package/css/std/controls/pdf-viewer/img/measures-area_active.svg +17 -0
  35. package/css/std/controls/pdf-viewer/img/measures-line.svg +8 -0
  36. package/css/std/controls/pdf-viewer/img/measures-line_active.svg +8 -0
  37. package/css/std/controls/pdf-viewer/img/measures-settings.svg +4 -0
  38. package/css/std/controls/pdf-viewer/img/measures-settings_active.svg +4 -0
  39. package/css/std/controls/pdf-viewer/img/measures-toolbar.svg +15 -0
  40. package/css/std/controls/pdf-viewer/img/show-measures.svg +16 -0
  41. package/css/std/controls/pdf-viewer/measure.css +137 -0
  42. package/css/std/controls/pdf-viewer/pdf-viewer-index.css +2570 -236
  43. package/css/std/controls/pdf-viewer/pdf-viewer.css +124 -87
  44. package/css/std/controls/pdf-viewer/viewer.css +158 -147
  45. package/css/std/controls/progress-bar/progress-bar.css +25 -0
  46. package/css/std/controls/scrollbar/scrollbar.css +2 -2
  47. package/css/std/controls/sidebar/sidebar.css +4 -3
  48. package/css/std/controls/system-exception-dialog/img/error.svg +40 -0
  49. package/css/std/controls/system-exception-dialog/system-exception-dialog.css +119 -0
  50. package/css/std/controls/time-picker/time-picker.css +1 -4
  51. package/css/std/controls/tree-view/tree-view.css +4 -0
  52. package/css/std/controls/uploader/uploader.css +1 -12
  53. package/css/std/controls/view/view.css +8 -1
  54. package/css/std/controls/view-part/view-part.css +0 -5
  55. package/css/third-party/jquery-contextMenu/jquery.contextMenu.min.css +1 -1
  56. package/dist/index.css +802 -627
  57. package/dist/index.js +1197 -1096
  58. package/dist/index.js.map +1 -1
  59. package/dist/src/constants/KeyCode.d.ts +1 -0
  60. package/dist/src/controls/ActionHandler/ActionHandler.d.ts +15 -11
  61. package/dist/src/controls/ActionHandler/ActionHandlerConstants.d.ts +7 -28
  62. package/dist/src/controls/ActionHandler/ActionHandlerItem.d.ts +6 -0
  63. package/dist/src/controls/ActionHandler/ActionHandlerResult.d.ts +3 -0
  64. package/dist/src/controls/ActionHandler/ActionResultItem.d.ts +11 -0
  65. package/dist/src/controls/ActionHandler/ActionResultList.d.ts +9 -0
  66. package/dist/src/controls/ActionHandler/ConfirmDialog.d.ts +11 -0
  67. package/dist/src/controls/ActionHandler/ResultDialog.d.ts +17 -0
  68. package/dist/src/controls/ButtonCancel/ButtonCancel.d.ts +3 -0
  69. package/dist/src/controls/ButtonGroup/ButtonGroup.d.ts +1 -0
  70. package/dist/src/controls/Checkbox/Checkbox.d.ts +4 -3
  71. package/dist/src/controls/Checkbox/CheckboxRef.d.ts +4 -0
  72. package/dist/src/controls/Dialog/Dialog.d.ts +7 -3
  73. package/dist/src/controls/Dialog/DialogComponent.d.ts +1 -0
  74. package/dist/src/controls/Dialog/DialogConstants.d.ts +3 -1
  75. package/dist/src/controls/Dialog/DialogDetailExpandButton.d.ts +6 -0
  76. package/dist/src/controls/Dialog/DialogFooter.d.ts +5 -3
  77. package/dist/src/controls/Dialog/DialogHeader.d.ts +4 -2
  78. package/dist/src/controls/ExpandCollapseButton/ExpandCollapseButton.d.ts +12 -0
  79. package/dist/src/controls/Heading/Heading.d.ts +11 -0
  80. package/dist/src/controls/Heading/HeadingConstants.d.ts +7 -0
  81. package/dist/src/controls/ImagePicker/ImagePicker.d.ts +2 -0
  82. package/dist/src/controls/Input/Input.d.ts +2 -1
  83. package/dist/src/controls/Input/InputRef.d.ts +5 -0
  84. package/dist/src/controls/ProgressBar/ProgressBar.d.ts +7 -0
  85. package/dist/src/controls/ScrollBar/ScrollBar.d.ts +1 -0
  86. package/dist/src/controls/Sidebar/Section.d.ts +0 -1
  87. package/dist/src/controls/SystemExceptionDialog/SystemExceptionDialog.d.ts +11 -0
  88. package/dist/src/controls/SystemExceptionDialog/SystemExceptionDialogConstants.d.ts +11 -0
  89. package/dist/src/controls/SystemExceptionDialog/SystemExceptionDialogData.d.ts +7 -0
  90. package/dist/src/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +2 -1
  91. package/dist/src/controls/TelerikUploader/TelerikUploaderSettings.d.ts +4 -1
  92. package/dist/src/controls/UpdatingPopover/UpdatingPopover.d.ts +2 -0
  93. package/dist/src/index.d.ts +16 -2
  94. package/lib/screen.dpi.detector/screen.dpi.detector.js +92 -0
  95. package/lib/third-party.js +92 -0
  96. package/package.json +1 -1
  97. package/src/controls/BimViewer/js/bim-viewer.js +2 -2
  98. package/src/controls/PdfViewer/js/pdf-viewer.js +1104 -58
  99. package/css/std/controls/action-handler/action-handler-info.css +0 -99
  100. package/css/std/controls/action-handler/action-handler.css +0 -265
  101. package/css/std/controls/action-handler/img/cancel-red-big.svg +0 -5
  102. package/css/std/controls/action-handler/img/progress.svg +0 -1
  103. package/css/std/controls/action-handler/img/warning.svg +0 -10
  104. package/css/std/controls/checkbox/img/checkbox-big-active.svg +0 -4
  105. package/css/std/controls/checkbox/img/checkbox-big-empty.svg +0 -5
  106. package/css/std/controls/dialog/dialog-button-close.css +0 -34
  107. package/css/std/controls/dialog/dialog-button.css +0 -7
  108. package/css/std/controls/expand-control-group/img/collapse-bottom.svg +0 -5
  109. package/css/std/controls/expand-control-group/img/collapse-up.svg +0 -3
  110. package/css/std/controls/pdf-viewer/img/delete-active.svg +0 -11
  111. package/css/std/controls/pdf-viewer/img/delete.svg +0 -11
  112. /package/css/std/controls/{action-handler → expand-collapse-button}/img/collapse-bottom.svg +0 -0
  113. /package/css/std/controls/{action-handler → expand-collapse-button}/img/collapse-up.svg +0 -0
package/dist/index.css CHANGED
@@ -310,12 +310,12 @@ html, body {
310
310
 
311
311
  .ps__thumb-y {
312
312
  width: 4px !important;
313
- right: 3px !important;
313
+ right: 4px !important;
314
314
  }
315
315
 
316
316
  .ps__thumb-x {
317
317
  height: 4px !important;
318
- top: 3px !important;
318
+ top: 4px !important;
319
319
  }
320
320
 
321
321
  .ps .ps__rail-x:hover, .ps .ps__rail-y:hover, .ps .ps__rail-x:focus,
@@ -439,6 +439,10 @@ html, body {
439
439
  padding-top: 8px;
440
440
  }
441
441
 
442
+ .ps .jstree-container-ul {
443
+ padding-bottom: 12px;
444
+ }
445
+
442
446
  ._tree-view_vitro-tree-view_3oii-CW {
443
447
  height: 100%;
444
448
  }
@@ -741,6 +745,31 @@ html, body {
741
745
  cursor: pointer;
742
746
  }
743
747
 
748
+ ._progress-bar_vitro-progress-bar_u2VLQeW {
749
+ width: 100%;
750
+ height: 8px;
751
+ background-color: #E9ECEF;
752
+ overflow: hidden;
753
+ border-radius: 4px;
754
+ }
755
+
756
+ ._progress-bar_vitro-bar_7V1N3eH {
757
+ width: 0%;
758
+ height: 100%;
759
+ background: repeating-linear-gradient( 45deg, #3184FD, #3184FD 8px, #0D6EFD 8px, #0D6EFD 16px );
760
+ transition: width 0.3s ease;
761
+ background-size: 46px 46px;
762
+ animation: _progress-bar_progressBar_2l9PJjC 2s linear infinite;
763
+ }
764
+
765
+ @keyframes _progress-bar_progressBar_2l9PJjC {
766
+ from {
767
+ background-position: 46px 0;
768
+ }
769
+ to {
770
+ background-position: 0 0;
771
+ }
772
+ }
744
773
  ._uploader_vitro-uploader_237vX7T {
745
774
  bottom: 24px;
746
775
  right: 24px;
@@ -1074,21 +1103,10 @@ html, body {
1074
1103
  pointer-events: none;
1075
1104
  }
1076
1105
 
1077
- ._uploader_vitro-progress_2NtaSj2 {
1078
- width: 100%;
1079
- background-color: #E9ECEF;
1080
- border-radius: 4px;
1081
- overflow: hidden;
1106
+ ._uploader_vitro-progress-bar_3YXLbbu {
1082
1107
  margin-top: 8px;
1083
1108
  }
1084
1109
 
1085
- ._uploader_vitro-uploader_237vX7T ._uploader_vitro-progress-bar_3YXLbbu {
1086
- width: 0%;
1087
- height: 8px;
1088
- background: repeating-linear-gradient( 45deg, #3184FD, #3184FD 8px, #0D6EFD 8px, #0D6EFD 16px );
1089
- transition: width 1s ease;
1090
- }
1091
-
1092
1110
  .vitro-display-none {
1093
1111
  display: none;
1094
1112
  }
@@ -1178,22 +1196,184 @@ html, body {
1178
1196
  width: 24px;
1179
1197
  height: 24px;
1180
1198
  }
1181
- ._button-group_vitro-button-group_3TLqxjf {
1182
- display: flex;
1183
- justify-content: flex-start;
1184
- width: 100%;
1185
- padding: 0;
1186
- justify-content: flex-end;
1199
+ ._tooltip_vitro-tooltip_JvGPShz {
1200
+ display: none !important;
1201
+ opacity: 1 !important;
1202
+ z-index: 10000 !important;
1187
1203
  }
1188
1204
 
1189
- ._button-group_vitro-button-group_3TLqxjf > button:first-child {
1190
- margin-left: 0px;
1191
- }
1205
+ ._tooltip_vitro-tooltip_JvGPShz[style*='transform'] {
1206
+ display: block !important;
1207
+ }
1208
+
1209
+ ._tooltip_vitro-tooltip_JvGPShz .tooltip-inner {
1210
+ color: #FFF;
1211
+ font-family: 'InterRegular';
1212
+ font-size: 14px;
1213
+ line-height: 21px;
1214
+ padding: 8px 10px;
1215
+ border-radius: 4px;
1216
+ background: #4A556C;
1217
+ box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 6px 0px rgba(0, 0, 0, 0.10);
1218
+ max-width: 224px;
1219
+ text-align: left;
1220
+ white-space: pre-wrap;
1221
+ }
1222
+
1223
+ ._tooltip_vitro-tooltip_JvGPShz .tooltip-arrow::before {
1224
+ content: '';
1225
+ display: block;
1226
+ width: 16px;
1227
+ height: 13px;
1228
+ border: unset !important;
1229
+ background-size: 100%;
1230
+ background-position: center;
1231
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/tooltip/img/tooltip-arrow.svg');
1232
+ }
1233
+
1234
+ ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-top .tooltip-arrow::before {
1235
+ top: -3px;
1236
+ }
1237
+
1238
+ ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-bottom .tooltip-arrow::before {
1239
+ bottom: -3px;
1240
+ transform: rotate(180deg);
1241
+ }
1242
+
1243
+ ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-end .tooltip-arrow::before {
1244
+ right: -3px;
1245
+ transform: rotate(90deg);
1246
+ }
1247
+
1248
+ ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-start .tooltip-arrow::before {
1249
+ left: -3px;
1250
+ transform: rotate(-90deg);
1251
+ }
1192
1252
 
1193
1253
  .vitro-display-none {
1194
1254
  display: none;
1195
1255
  }
1196
1256
 
1257
+ ._image-button_vitro-image-button_34pBVmE,
1258
+ ._image-button_vitro-image-button_34pBVmE:hover,
1259
+ ._image-button_vitro-image-button_34pBVmE:active {
1260
+ width: 20px;
1261
+ height: 20px;
1262
+ flex-shrink: 0;
1263
+ background-position: center;
1264
+ background-size: 100%;
1265
+ background-repeat: no-repeat;
1266
+ border: none;
1267
+ outline: none;
1268
+ background-color: transparent;
1269
+ }
1270
+
1271
+ ._dialog-content_vitro-dialog-content_qQNWu6x {
1272
+ min-width: auto;
1273
+ overflow: hidden;
1274
+ display: flex;
1275
+ flex-direction: column;
1276
+ flex-grow: 1;
1277
+ flex-shrink: 1;
1278
+ padding: 0 24px 16px 24px;
1279
+ }
1280
+
1281
+ ._dialog-content_vitro-dialog-content_qQNWu6x > #TreeView > .ps {
1282
+ padding-top: 12px !important;
1283
+ padding-left: 16px;
1284
+ }
1285
+
1286
+ ._dialog-content_vitro-dialog-content_qQNWu6x > #TreeView {
1287
+ margin-left: -24px;
1288
+ margin-right: -24px;
1289
+ }
1290
+
1291
+ ._dialog-content_vitro-dialog-content_qQNWu6x > div {
1292
+ max-height: 100%;
1293
+ }
1294
+
1295
+ @media (max-width: 800px) {
1296
+ ._dialog-content_vitro-dialog-content_qQNWu6x {
1297
+ padding: 0 16px 16px 16px;
1298
+ }
1299
+ }
1300
+ ._heading_vitro-heading-h1_3SB01Ds {
1301
+ color: #222D44;
1302
+ font-size: 20px;
1303
+ line-height: 24px;
1304
+ font-family: 'InterRegular';
1305
+ font-weight: unset;
1306
+ margin-top: 0;
1307
+ margin-bottom: 0;
1308
+ }
1309
+
1310
+ ._heading_vitro-heading-h2_2W1uEiH {
1311
+ color: #222D44;
1312
+ font-size: 14px;
1313
+ line-height: 16px;
1314
+ font-family: 'InterRegular';
1315
+ font-weight: unset;
1316
+ margin-top: 0;
1317
+ margin-bottom: 0;
1318
+ }
1319
+
1320
+ ._heading_vitro-heading-h3_3H5QlHH {
1321
+ color: #222D44;
1322
+ font-size: 14px;
1323
+ line-height: 16px;
1324
+ font-family: 'InterMedium';
1325
+ font-weight: unset;
1326
+ margin-top: 0;
1327
+ margin-bottom: 0;
1328
+ }
1329
+
1330
+ ._heading_vitro-heading-h4_y-DCkfR {
1331
+ color: #222D44;
1332
+ font-size: 12px;
1333
+ line-height: 16px;
1334
+ font-family: 'InterRegular';
1335
+ font-weight: unset;
1336
+ margin-top: 0;
1337
+ margin-bottom: 0;
1338
+ }
1339
+
1340
+ ._heading_vitro-heading-h5_2MeHzg3 {
1341
+ color: #222D44;
1342
+ font-size: 11px;
1343
+ line-height: 16px;
1344
+ font-family: 'InterRegular';
1345
+ font-weight: unset;
1346
+ margin-top: 0;
1347
+ margin-bottom: 0;
1348
+ }
1349
+ ._dialog-header_vitro-dialog-header_2W3GraU {
1350
+ padding: 20px;
1351
+ background: #fff;
1352
+ border-radius: 4px 4px 0 0;
1353
+ display: flex;
1354
+ align-items: center;
1355
+ }
1356
+
1357
+ ._dialog-header_vitro-subtitle_3mjvJAN {
1358
+ line-height: 150%;
1359
+ }
1360
+
1361
+ ._dialog-header_vitro-image_3TdbvmV {
1362
+ width: 38px;
1363
+ height: 38px;
1364
+ margin-right: 16px;
1365
+ }
1366
+
1367
+ @media (max-width: 800px) {
1368
+ ._dialog-header_vitro-dialog-header_2W3GraU {
1369
+ padding: 12px 16px;
1370
+ }
1371
+
1372
+ ._dialog-header_vitro-dialog-header_2W3GraU h1 {
1373
+ font-size: 16px !important;
1374
+ line-height: 140% !important;
1375
+ }
1376
+ }
1197
1377
  ._button_vitro-button_hVfBuSO {
1198
1378
  font-family: 'InterMedium';
1199
1379
  font-size: 14px;
@@ -1269,375 +1449,447 @@ html, body {
1269
1449
  .vitro-display-none {
1270
1450
  display: none;
1271
1451
  }
1272
- ._action-handler_vitro-action-handler_1wgWRHB > div.popover {
1273
- z-index: 10000;
1274
- max-width: unset !important;
1275
- border: none;
1276
- box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
1277
- }
1278
-
1279
- ._action-handler_vitro-icon-before_2OomEjN,
1280
- ._action-handler_vitro-icon-progress_2QurHaw,
1281
- ._action-handler_vitro-icon-success_3Pt7XlJ,
1282
- ._action-handler_vitro-icon-error_2elcVFa {
1283
- background-size: 100%;
1284
- background-position: center;
1285
- background-repeat: no-repeat;
1286
- }
1287
-
1288
- ._action-handler_vitro-icon-before_2OomEjN {
1289
- width: 42px;
1290
- height: 42px;
1291
- min-width: 42px;
1292
- margin-right: 16px;
1293
- }
1294
-
1295
- ._action-handler_vitro-icon-progress_2QurHaw,
1296
- ._action-handler_vitro-icon-success_3Pt7XlJ,
1297
- ._action-handler_vitro-icon-error_2elcVFa,
1298
- ._action-handler_vitro-icon-warning_3X_YncE {
1299
- width: 24px;
1300
- height: 24px;
1301
- margin-right: 8px;
1302
- }
1303
-
1304
- ._action-handler_vitro-icon-before_2OomEjN {
1305
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/question.svg');
1306
- }
1307
-
1308
- ._action-handler_vitro-icon-progress_2QurHaw {
1309
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/progress.svg');
1310
- }
1311
-
1312
- ._action-handler_vitro-icon-error_2elcVFa {
1313
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/error.svg');
1314
- }
1315
-
1316
- ._action-handler_vitro-icon-success_3Pt7XlJ {
1317
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/success.svg');
1318
- }
1319
-
1320
- ._action-handler_vitro-icon-warning_3X_YncE {
1321
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/warning.svg');
1322
- }
1323
-
1324
- ._action-handler_vitro-action-handler_1wgWRHB .popover-body {
1325
- padding: 24px;
1326
- width: 460px;
1327
- height: 170px;
1328
- }
1452
+ ._button-cancel_vitro-button-cancel_2UT1K9Z {
1453
+ cursor: pointer;
1454
+ background: #fff !important;
1455
+ color: #222D44 !important;
1456
+ border: 1px solid #E4E6EC !important;
1457
+ font-family: 'InterRegular' !important;
1458
+ }
1459
+
1460
+ ._button-cancel_vitro-button-cancel_2UT1K9Z:hover,
1461
+ ._button-cancel_vitro-button-cancel_2UT1K9Z:active {
1462
+ background: #F3F8FF !important;
1463
+ }
1329
1464
 
1330
- ._action-handler_vitro-action-handler_1wgWRHB .popover-body ._action-handler_vitro-content_1UEsgWV {
1465
+ ._button-group_vitro-button-group_3TLqxjf {
1331
1466
  display: flex;
1332
- flex-direction: column;
1333
- }
1334
-
1335
- ._action-handler_vitro-flex_ryggQ_S {
1336
- display: flex;
1337
- }
1338
-
1339
- .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
1340
- border-bottom-color: rgba(0, 0, 0, 0.12);
1341
- }
1342
-
1343
- ._action-handler_vitro-interface-blur_3p_JKB_ {
1344
- position: absolute;
1345
- z-index: 100000;
1346
- height: 100vh;
1347
- width: 100vw;
1348
- top: 0;
1349
- left: 0;
1350
- }
1351
-
1352
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp, ._action-handler_vitro-action-handler-dialog_1rRT66e {
1353
- z-index: 100000000;
1354
- position: absolute;
1355
- display: flex;
1356
- flex-direction: column;
1357
- justify-content: space-between;
1358
- overflow: hidden;
1359
- }
1360
-
1361
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp {
1362
- top: 0;
1363
- left: 0;
1364
- box-sizing: border-box !important;
1365
- }
1366
-
1367
- ._action-handler_vitro-content-container_DBST6Nz {
1368
- padding: 16px;
1369
- flex: 1 1;
1370
- }
1371
-
1372
- ._action-handler_vitro-confirm_24pI7Nj ._action-handler_vitro-content-container_DBST6Nz {
1373
- padding: 0;
1374
- }
1375
-
1376
- ._action-handler_vitro-content_1UEsgWV {
1377
- width: 100%;
1378
- height: 100%;
1379
- }
1380
-
1381
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp {
1382
- height: 100%;
1383
- width: 100%;
1384
- background: rgba(34, 45, 68, 0.2);
1385
- }
1386
-
1387
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp ._action-handler_vitro-content_1UEsgWV {
1388
- padding: 24px;
1389
- width: 460px;
1390
- height: 170px;
1391
- background: #fff;
1392
- border-radius: 4px;
1393
- border: 1px solid #C0CAD5;
1394
- position: absolute;
1395
- top: calc(50% - 75px);
1396
- left: calc(50% - 230px);
1397
- box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
1398
- display: flex;
1399
- flex-direction: column;
1400
- box-sizing: border-box;
1401
- max-width: 460px;
1402
- }
1403
-
1404
- ._action-handler_vitro-action-handler-dialog_1rRT66e {
1405
- height: auto;
1406
- width: 450px;
1407
- top: 56px;
1408
- right: 24px;
1409
- overflow: hidden;
1410
- box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
1411
- border-radius: 4px;
1412
- background: #fff;
1413
- }
1414
-
1415
- ._action-handler_vitro-action-handler-dialog_1rRT66e ._action-handler_vitro-flex_ryggQ_S,
1416
- .popover-body ._action-handler_vitro-flex_ryggQ_S {
1417
- overflow: hidden;
1418
- }
1419
-
1420
- ._action-handler_vitro-action-handler-dialog_1rRT66e ._action-handler_vitro-flex_ryggQ_S > span {
1421
- font-size: 14px;
1422
- flex: 1 1;
1467
+ justify-content: flex-start;
1468
+ width: 100%;
1469
+ padding: 0;
1470
+ justify-content: flex-end;
1471
+ align-items: center;
1472
+ }
1473
+
1474
+ ._button-group_vitro-button-group_3TLqxjf > button:first-child {
1475
+ margin-left: 0px;
1423
1476
  }
1424
1477
 
1425
- ._action-handler_vitro-progress_2RheviN {
1426
- width: 100%;
1478
+ ._expand-collapse-button_vitro-expand-collapse-button_2O97Y_w:hover,
1479
+ ._expand-collapse-button_vitro-expand-collapse-button_2O97Y_w:active,
1480
+ ._expand-collapse-button_vitro-expand-collapse-button_2O97Y_w {
1481
+ width: -moz-fit-content;
1482
+ width: fit-content;
1483
+ height: -moz-fit-content;
1484
+ height: fit-content;
1485
+ border: none;
1486
+ outline: none;
1427
1487
  background-color: transparent;
1428
- overflow: hidden;
1429
- margin-top: -4px;
1430
- }
1431
-
1432
- ._action-handler_vitro-progress-bar_1dwFpsn {
1433
- width: 1%;
1434
- height: 4px;
1435
- background: #3274E0;
1436
- }
1437
-
1438
- ._action-handler_vitro-flex_ryggQ_S > span {
1439
- color: #222D44;
1440
- font-size: 18px;
1441
- line-height: 150%;
1442
- margin-top: auto;
1443
- padding-bottom: 5px
1444
- }
1445
-
1446
- ._action-handler_vitro-small_oqifqlS {
1447
- display: inline-block;
1448
- color: #4A556C;
1449
1488
  font-size: 14px;
1450
- line-height: 150% !important;
1451
- padding-left: 59px;
1452
- margin-top: -5px;
1453
- max-width: 100%;
1454
- white-space: nowrap;
1455
- overflow: hidden;
1456
- text-overflow: ellipsis;
1489
+ line-height: 150%;
1490
+ display: flex;
1491
+ align-items: center;
1492
+ grid-gap: 10px;
1493
+ padding: 0;
1457
1494
  }
1458
1495
 
1459
- ._action-handler_vitro-button-close_3mRTgQq {
1460
- cursor: pointer;
1496
+ ._expand-collapse-button_vitro-expanded_bPbXQ6M,
1497
+ ._expand-collapse-button_vitro-collapsed_1NqpRKU {
1498
+ flex-shrink: 0;
1461
1499
  width: 24px;
1462
1500
  height: 24px;
1463
1501
  background-size: 100%;
1464
- background-position: center;
1465
1502
  background-repeat: no-repeat;
1466
- margin-left: 10px;
1467
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/cancel-red-big.svg');
1468
- }
1469
-
1470
- ._action-handler_vitro-success_1bfGHQQ ._action-handler_vitro-button-close_3mRTgQq,
1471
- ._action-handler_vitro-warning_2uE9UfG ._action-handler_vitro-button-close_3mRTgQq,
1472
- ._action-handler_vitro-error_1XXlWG- ._action-handler_vitro-button-close_3mRTgQq {
1473
- margin-left: 8px;
1474
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/cancel-dark-grey.svg');
1475
- }
1476
-
1477
- ._action-handler_vitro-button-cancel_GE8JsGp {
1478
- cursor: pointer;
1479
- background: #fff !important;
1480
- color: #222D44 !important;
1481
- border: 1px solid #E4E6EC !important;
1482
- margin-right: 12px !important;
1483
- font-family: 'InterRegular' !important;
1484
- }
1485
-
1486
- ._action-handler_vitro-button-cancel_GE8JsGp:hover, ._action-handler_vitro-button-cancel_GE8JsGp:active {
1487
- background: #F3F8FF !important;
1488
- }
1489
-
1490
- ._action-handler_vitro-button_1wSNAYT, ._action-handler_vitro-button-cancel_GE8JsGp {
1491
- min-width: 120px !important;
1492
- height: 40px !important;
1493
- font-size: 16px !important;
1494
- }
1495
-
1496
- ._action-handler_vitro-success_1bfGHQQ {
1497
- border-left: 4px solid #198754;
1498
- }
1499
-
1500
- ._action-handler_vitro-error_1XXlWG- {
1501
- border-left: 4px solid #D13438;
1502
- }
1503
-
1504
- ._action-handler_vitro-warning_2uE9UfG {
1505
- border-left: 4px solid #F3AD4A;
1506
- }
1507
-
1508
- ._action-handler_vitro-button-collapse-up_2lQ6JWm,
1509
- ._action-handler_vitro-button-collapse-bottom_aocIZUX {
1510
- width: 24px;
1511
- height: 24px;
1512
- background-size: 100%;
1513
1503
  background-position: center;
1514
- background-repeat: no-repeat;
1515
- cursor: pointer;
1516
1504
  }
1517
1505
 
1518
- ._action-handler_vitro-button-collapse-bottom_aocIZUX {
1519
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/collapse-up.svg');
1506
+ ._expand-collapse-button_vitro-expanded_bPbXQ6M {
1507
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/expand-collapse-button/img/collapse-up.svg');
1520
1508
  }
1521
1509
 
1522
- ._action-handler_vitro-button-collapse-up_2lQ6JWm {
1523
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/collapse-bottom.svg');
1510
+ ._expand-collapse-button_vitro-collapsed_1NqpRKU {
1511
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/expand-collapse-button/img/collapse-bottom.svg');
1524
1512
  }
1525
1513
 
1526
- @media (max-width: 800px) {
1527
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp ._action-handler_vitro-content_1UEsgWV {
1528
- width: 100%;
1529
- }
1530
- }
1531
-
1532
- @media (max-width: 460px) {
1533
- ._action-handler_vitro-action-handler-dialog-confirm_30dwuBp ._action-handler_vitro-content_1UEsgWV {
1534
- left: auto;
1535
- }
1536
- }
1537
- ._action-handler-info_vitro-info-container_eNvJr3n {
1514
+ ._dialog-footer_vitro-dialog-footer_2vUQ3aG {
1515
+ display: flex;
1516
+ justify-content: flex-end;
1538
1517
  width: 100%;
1539
- padding-top: 16px;
1540
- margin-top: 16px;
1518
+ height: 88px;
1519
+ margin-top: auto;
1520
+ padding: 24px;
1521
+ background-color: #F8F9FA;
1522
+ border-radius: 0 0 4px 4px;
1541
1523
  border-top: 1px solid #E4E6EC;
1542
1524
  }
1543
1525
 
1544
- ._action-handler-info_vitro-action-info_40N4L4N {
1545
- color: #4A556C;
1546
- font-size: 14px;
1547
- line-height: 21px;
1548
- margin-left: 32px;
1526
+ ._dialog-footer_vitro-button-group_1HXCUOQ {
1527
+ grid-gap: 12px;
1549
1528
  }
1550
1529
 
1551
- ._action-handler-info_vitro-item_2pXL5Ks {
1552
- display: flex;
1553
- margin-bottom: 4px;
1554
- height: 32px;
1555
- justify-content: space-between;
1556
- align-items: center;
1530
+ ._dialog-footer_vitro-button_3RufMLa {
1531
+ min-width: 139px;
1532
+ height: 40px !important;
1533
+ font-size: 16px;
1557
1534
  }
1558
1535
 
1559
- ._action-handler-info_vitro-item_2pXL5Ks:last-child {
1560
- margin-bottom: 0;
1536
+ ._dialog-footer_vitro-detail-button_Ue4coux {
1537
+ color: #2A63F6;
1538
+ margin-right: auto;
1561
1539
  }
1562
1540
 
1563
- ._action-handler-info_vitro-title_kdIhxqv {
1564
- color: #222D44;
1565
- font-size: 12px;
1566
- line-height: 16px;
1541
+ ._dialog-footer_vitro-expand_cSDlKgd,
1542
+ ._dialog-footer_vitro-collapse_21FwaIZ {
1543
+ width: 24px;
1544
+ height: 24px;
1545
+ border-radius: 50%;
1546
+ background-color: #fff;
1547
+ overflow: hidden;
1548
+ box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.12);
1549
+ background-size: 100%;
1550
+ background-repeat: no-repeat;
1551
+ background-position: center;
1567
1552
  }
1568
1553
 
1569
- ._action-handler-info_vitro-subtitle_29cfoD0 {
1570
- color: #8E98A3;
1571
- font-size: 11px;
1572
- line-height: 16px;
1554
+ ._dialog-footer_vitro-expand_cSDlKgd {
1555
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/dialog/img/collapse-bottom-grey.svg');
1573
1556
  }
1574
1557
 
1575
- ._action-handler-info_vitro-progress-bar_2IxowO0 {
1576
- width: 32px;
1577
- height: 32px;
1578
- border-radius: 50%;
1558
+ ._dialog-footer_vitro-collapse_21FwaIZ {
1559
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/dialog/img/collapse-up-grey.svg');
1560
+ }
1561
+
1562
+
1563
+ @media (max-width: 800px) {
1564
+ ._dialog-footer_vitro-dialog-footer_2vUQ3aG {
1565
+ justify-content: center !important;
1566
+ }
1567
+
1568
+ ._dialog-footer_vitro-button_3RufMLa {
1569
+ width: 100%;
1570
+ min-width: unset;
1571
+ font-size: 14px;
1572
+ font-family: 'InterRegular';
1573
+ line-height: 16px;
1574
+ }
1575
+
1576
+ ._dialog-footer_vitro-detail-button_Ue4coux {
1577
+ margin-left: 16px;
1578
+ margin-bottom: 16px;
1579
+ }
1580
+ }
1581
+
1582
+ ._dialog_vitro-dialog_2NzcRZg {
1583
+ position: fixed;
1584
+ margin: 0 auto;
1585
+ left: 0;
1586
+ right: 0;
1587
+ top: 0;
1588
+ bottom: 0;
1589
+ z-index: 1002;
1579
1590
  display: flex;
1580
1591
  align-items: center;
1581
1592
  justify-content: center;
1582
- background: #3274E0;
1583
- position: relative;
1584
- margin-left: 12px;
1593
+ background: rgba(34, 45, 68, 0.2);
1585
1594
  }
1586
1595
 
1587
- ._action-handler-info_vitro-progress-bar_2IxowO0::before {
1588
- content: '';
1589
- display: block;
1590
- width: 28px;
1591
- height: 28px;
1596
+ ._dialog_vitro-dialog_2NzcRZg > div {
1597
+ display: flex;
1598
+ flex-direction: column;
1599
+ border: 1px solid rgba(74, 85, 108, 0.35);
1592
1600
  background: #fff;
1593
- border-radius: 50%;
1594
1601
  position: absolute;
1595
- top: calc(50% - 14px);
1596
- left: calc(50% - 14px);
1602
+ overflow: visible;
1603
+ left: 50%;
1604
+ top: 50%;
1605
+ transform: translate(-50%, -50%);
1606
+ opacity: 1;
1607
+ border-radius: 4px;
1608
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
1609
+ min-width: 469px;
1610
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
1597
1611
  }
1598
1612
 
1599
- ._action-handler-info_vitro-button-cancel_3eqrIKx {
1613
+ ._dialog_vitro-dialog-button-close_2TF5iry,
1614
+ ._dialog_vitro-dialog-button-close_2TF5iry:hover,
1615
+ ._dialog_vitro-dialog-button-close_2TF5iry:active {
1616
+ display: block;
1617
+ position: absolute;
1618
+ border: none;
1619
+ background: 0 0;
1620
+ outline: 0;
1600
1621
  cursor: pointer;
1601
- width: 16px;
1602
- height: 16px;
1603
- z-index: 100;
1622
+ padding: 0;
1623
+ width: 30px;
1624
+ height: 30px;
1625
+ right: -42px;
1626
+ top: 0;
1627
+ background-size: 100%;
1628
+ background-repeat: no-repeat;
1629
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/dialog/img/cancel-white.svg');
1630
+ }
1631
+
1632
+ ._dialog_vitro-hidden-content_niGbpGx {
1633
+ max-height: 500px;
1634
+ overflow: hidden;
1635
+ transition: max-height 0.5s ease;
1636
+ }
1637
+
1638
+ ._dialog_vitro-hidden-content_niGbpGx._dialog_vitro-hidden_1kSAyNC {
1639
+ max-height: 0;
1640
+ overflow: hidden;
1641
+ transition: max-height 0.5s ease;
1642
+ }
1643
+
1644
+ @media (max-width: 800px) {
1645
+ ._dialog_vitro-dialog_2NzcRZg {
1646
+ z-index: 10001 !important;
1647
+ }
1648
+
1649
+ ._dialog_vitro-dialog_2NzcRZg > div {
1650
+ min-width: unset;
1651
+ max-width: calc(100% - 16px);
1652
+ }
1653
+
1654
+ ._dialog_vitro-dialog-button-close_2TF5iry {
1655
+ display: none;
1656
+ }
1657
+ }
1658
+ ._confirm-dialog_vitro-confirm-dialog_1r-CtWW {
1659
+ min-width: 469px;
1660
+ max-width: 706px;
1661
+ border: 1px solid rgba(74, 85, 108, 0.35);
1662
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
1663
+ }
1664
+
1665
+ ._confirm-dialog_vitro-confirm-dialog_1r-CtWW h1 {
1666
+ font-size: 18px;
1667
+ }
1668
+
1669
+ ._confirm-dialog_vitro-image_3vwBe8E {
1670
+ height: 40px;
1671
+ width: 40px;
1672
+ margin-right: 8px;
1604
1673
  background-size: 100%;
1605
- background-position: center;
1606
1674
  background-repeat: no-repeat;
1607
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/cancel-dark-grey.svg');
1675
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/question.svg');
1676
+ }
1677
+
1678
+ ._confirm-dialog_vitro-header_3nRlgzW {
1679
+ height: 88px;
1680
+ padding: 24px 20px;
1681
+ border-bottom: none;
1682
+ }
1683
+ ._action-result-list_vitro-action-result-list_fJtJWdL {
1684
+ width: 100%;
1685
+ padding-left: 12px;
1686
+ }
1687
+
1688
+ ._action-result-list_vitro-scrollbar_1mcualw > div:first-child {
1689
+ padding-right: 16px;
1690
+ }
1691
+
1692
+ ._action-result-list_vitro-result-item_2AUSpie {
1693
+ display: flex;
1694
+ border-top: 1px solid #E4E6EC;
1695
+ padding: 8px 0;
1696
+ }
1697
+
1698
+ ._action-result-list_vitro-result-item_2AUSpie:nth-child(2) {
1699
+ padding-top: 12px;
1700
+ }
1701
+
1702
+ ._action-result-list_vitro-image-container_ModalRS {
1703
+ flex-shrink: 0;
1704
+ margin-right: 8px;
1705
+ height: 24px;
1706
+ width: 24px;
1707
+ }
1708
+
1709
+ ._action-result-list_vitro-image-container_ModalRS img {
1710
+ width: 24px;
1711
+ height: 24px;
1712
+ }
1713
+
1714
+ ._action-result-list_vitro-flex-column_3z0h2Y_ {
1715
+ display: flex;
1716
+ flex-direction: column;
1717
+ flex: 1 1;
1718
+ }
1719
+
1720
+ ._action-result-list_vitro-name_10TEfnU {
1721
+ font-size: 12px;
1722
+ line-height: 16px;
1608
1723
  }
1609
1724
 
1610
- ._action-handler-info_vitro-success_22wks7Q,
1611
- ._action-handler-info_vitro-progress_1pVf3VJ,
1612
- ._action-handler-info_vitro-error_2JNd137,
1613
- ._action-handler-info_vitro-status_3Ey3f6C {
1725
+ ._action-result-list_vitro-error-message_12OqWLU,
1726
+ ._action-result-list_vitro-success-message_1yRyyKc {
1614
1727
  font-size: 12px;
1615
1728
  line-height: 16px;
1616
- white-space: nowrap;
1617
- display: flex;
1618
- align-items: center;
1729
+ margin-top: 8px;
1730
+ }
1731
+
1732
+ ._action-result-list_vitro-error-message_12OqWLU {
1733
+ color: #D13438;
1619
1734
  }
1620
1735
 
1621
- ._action-handler-info_vitro-success_22wks7Q {
1736
+ ._action-result-list_vitro-success-message_1yRyyKc {
1622
1737
  color: #198754;
1623
1738
  }
1624
1739
 
1625
- ._action-handler-info_vitro-progress_1pVf3VJ {
1626
- color: #2A63F6;
1740
+ ._action-result-list_vitro-image-success_2ovrZNi,
1741
+ ._action-result-list_vitro-image-error_KGQj2dj {
1742
+ margin-left: 4px;
1743
+ flex-shrink: 0;
1744
+ height: 24px;
1745
+ width: 24px;
1746
+ background-size: 100%;
1747
+ background-position: center;
1748
+ background-repeat: no-repeat;
1627
1749
  }
1628
1750
 
1629
- ._action-handler-info_vitro-error_2JNd137 {
1630
- color: #D13438;
1751
+ ._action-result-list_vitro-image-success_2ovrZNi {
1752
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/success.svg');
1631
1753
  }
1632
1754
 
1633
- ._action-handler-info_vitro-status_3Ey3f6C {
1634
- color: #4A556C;
1755
+ ._action-result-list_vitro-image-error_KGQj2dj {
1756
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/error.svg');
1757
+ }
1758
+
1759
+ ._action-result-list_vitro-hidden_1_bZmps {
1760
+ max-height: 0;
1761
+ transition: max-height 0.4s ease;
1762
+ }
1763
+
1764
+ ._action-result-list_vitro-visible_2K_m-HH {
1765
+ max-height: 2000px;
1766
+ overflow: hidden;
1767
+ transition: max-height 0.4s ease;
1768
+ }
1769
+ ._result-dialog_vitro-result-dialog_kqxXHts {
1770
+ z-index: 1001;
1771
+ position: fixed;
1772
+ display: flex;
1773
+ flex-direction: column;
1774
+ justify-content: space-between;
1775
+ overflow: hidden;
1776
+ height: auto;
1777
+ max-height: 74%;
1778
+ width: 400px;
1779
+ top: 56px;
1780
+ right: 16px;
1781
+ overflow: hidden;
1782
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
1783
+ border-radius: 4px;
1784
+ background: #fff;
1785
+ }
1786
+
1787
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-progress_3WaZ52V {
1788
+ width: 400px;
1789
+ }
1790
+
1791
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-success_3UZikJl,
1792
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-error_3-IKuM9 {
1793
+ width: 467px;
1794
+ }
1795
+
1796
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-success_3UZikJl ._result-dialog_vitro-header_2rBOm3x,
1797
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-error_3-IKuM9 ._result-dialog_vitro-header_2rBOm3x {
1798
+ padding: 12px 16px 12px 12px;
1799
+ }
1800
+
1801
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-success_3UZikJl {
1802
+ border-left: 4px solid #198754;
1803
+ }
1804
+
1805
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-success_3UZikJl ._result-dialog_vitro-image_19CVcbX {
1806
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/success.svg');
1807
+ }
1808
+
1809
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-error_3-IKuM9 {
1810
+ border-left: 4px solid #D13438;
1811
+ }
1812
+
1813
+ ._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-error_3-IKuM9 ._result-dialog_vitro-image_19CVcbX {
1814
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/error.svg');
1815
+ }
1816
+
1817
+ ._result-dialog_vitro-header_2rBOm3x {
1818
+ display: flex;
1819
+ flex-direction: column;
1820
+ padding: 12px 16px;
1821
+ }
1822
+
1823
+ ._result-dialog_vitro-flex_1CUfSCh {
1824
+ display: flex;
1825
+ align-items: center;
1826
+ grid-gap: 8px;
1827
+ }
1828
+
1829
+ ._result-dialog_vitro-image_19CVcbX {
1830
+ flex-shrink: 0;
1831
+ align-self: flex-start;
1832
+ height: 24px;
1833
+ width: 24px;
1834
+ background-size: 100%;
1835
+ background-repeat: no-repeat;
1836
+ background-position: center;
1837
+ }
1838
+
1839
+ ._result-dialog_vitro-result-text_3wNan1D {
1840
+ font-size: 14px;
1841
+ line-height: 150%;
1842
+ white-space: pre-wrap;
1843
+ }
1844
+
1845
+ ._result-dialog_vitro-button-group_2cBzj9Q {
1846
+ grid-gap: 8px;
1847
+ width: unset;
1848
+ flex: 1 1;
1849
+ align-self: flex-start;
1850
+ }
1851
+
1852
+ ._result-dialog_vitro-progress-bar_2MazExd {
1853
+ margin-top: 8px;
1854
+ padding-right: 16px;
1855
+ }
1856
+
1857
+ ._result-dialog_vitro-button-close_AJxsgiW,
1858
+ ._result-dialog_vitro-button-close_AJxsgiW:hover,
1859
+ ._result-dialog_vitro-button-close_AJxsgiW:active {
1860
+ cursor: pointer;
1861
+ width: 24px;
1862
+ height: 24px;
1863
+ background-size: 100%;
1864
+ background-repeat: no-repeat;
1865
+ background-position: center;
1866
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/cancel-dark-grey.svg');
1635
1867
  }
1636
- ._view-part_vitro-view-part_3j_gZpl {
1637
- margin-left: -16px;
1638
- margin-right: -16px;
1868
+
1869
+ ._result-dialog_vitro-save-report-button_28kdZ5l,
1870
+ ._result-dialog_vitro-save-report-button_28kdZ5l:hover,
1871
+ ._result-dialog_vitro-save-report-button_28kdZ5l:active {
1872
+ font-size: 14px;
1873
+ line-height: 150%;
1874
+ color: #3274E0;
1875
+ border: none;
1876
+ outline: none;
1877
+ background-color: #fff;
1878
+ display: flex;
1879
+ align-items: center;
1880
+ padding: 0;
1881
+ margin-left: auto;
1639
1882
  }
1640
1883
 
1884
+ ._result-dialog_vitro-save-report-image_2fnLBCP {
1885
+ width: 24px;
1886
+ height: 24px;
1887
+ margin-left: 4px;
1888
+ background-size: 100%;
1889
+ background-repeat: no-repeat;
1890
+ background-position: center;
1891
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/save-blue.svg');
1892
+ }
1641
1893
  ._view-part_vitro-view-part_3j_gZpl:last-child {
1642
1894
  flex-grow: 1;
1643
1895
  max-height: 100%;
@@ -1916,7 +2168,6 @@ html, body {
1916
2168
 
1917
2169
  ._view_vitro-view_1NKb-kU {
1918
2170
  flex: 1 1;
1919
- padding: 16px;
1920
2171
  overflow: hidden;
1921
2172
  }
1922
2173
 
@@ -1925,6 +2176,14 @@ html, body {
1925
2176
  flex-grow: 1;
1926
2177
  }
1927
2178
 
2179
+ ._view_vitro-tab_2sqf0L9 .nav {
2180
+ padding: 16px 16px 0 16px;
2181
+ }
2182
+
2183
+ ._view_vitro-tab_2sqf0L9 > .vitro-content {
2184
+ overflow: hidden;
2185
+ }
2186
+
1928
2187
  ._label_vitro-label_it8WNUE {
1929
2188
  font-size: inherit;
1930
2189
  margin-left: 0;
@@ -1981,7 +2240,7 @@ html, body {
1981
2240
  }
1982
2241
 
1983
2242
  ._input_vitro-control_1DmPFkF textarea::-webkit-scrollbar-track {
1984
- background: #fff;
2243
+ background: transparent;
1985
2244
  border-radius: 4px;
1986
2245
  }
1987
2246
 
@@ -1996,8 +2255,6 @@ html, body {
1996
2255
 
1997
2256
  ._input_vitro-control_1DmPFkF textarea {
1998
2257
  line-height: 150%;
1999
- scrollbar-color: #E4E6EC #fff;
2000
- scrollbar-width: thin;
2001
2258
  }
2002
2259
 
2003
2260
  ._input_vitro-control_1DmPFkF input::-moz-placeholder, ._input_vitro-control_1DmPFkF textarea::-moz-placeholder {
@@ -2063,7 +2320,7 @@ html, body {
2063
2320
  padding: 0 6px;
2064
2321
  background: transparent;
2065
2322
  background-image: linear-gradient(#fff, #fff);
2066
- background-size: 100% 2px;
2323
+ background-size: 100% 3px;
2067
2324
  background-position: 0 calc(50% + 3px);
2068
2325
  background-repeat: no-repeat;
2069
2326
  z-index: 1;
@@ -2090,9 +2347,6 @@ html, body {
2090
2347
  line-height: 19px;
2091
2348
  margin-top: 2px;
2092
2349
  width: 100%;
2093
- text-overflow: ellipsis;
2094
- white-space: nowrap;
2095
- overflow: hidden;
2096
2350
  }
2097
2351
 
2098
2352
  ._input_vitro-focus_1txynr8 ._input_vitro-error-text_QpZK56k {
@@ -2286,16 +2540,20 @@ html, body {
2286
2540
  cursor: pointer;
2287
2541
  }
2288
2542
 
2289
- ._file-version-select_vitro-file-name_1PtLh8A {
2290
- text-overflow: ellipsis;
2291
- overflow: hidden;
2543
+ ._file-version-select_vitro-file-name_1PtLh8A,
2544
+ ._file-version-select_vitro-file-name-tip_12pxa7I {
2292
2545
  color: #222D44;
2293
2546
  font-size: 14px;
2294
2547
  line-height: 16px;
2295
2548
  white-space: nowrap;
2296
2549
  }
2297
2550
 
2298
- ._file-version-select_vitro-position-absolute_1ENrwLq {
2551
+ ._file-version-select_vitro-file-name_1PtLh8A {
2552
+ text-overflow: ellipsis;
2553
+ overflow: hidden;
2554
+ }
2555
+
2556
+ ._file-version-select_vitro-file-name-tip_12pxa7I {
2299
2557
  position: absolute;
2300
2558
  top: 0;
2301
2559
  left: 0;
@@ -2445,60 +2703,6 @@ html, body {
2445
2703
  ._file-version-select_vitro-active_1PRyjUa:hover {
2446
2704
  background-color: #DCEEFF;
2447
2705
  }
2448
- ._tooltip_vitro-tooltip_JvGPShz {
2449
- display: none !important;
2450
- opacity: 1 !important;
2451
- z-index: 10000 !important;
2452
- }
2453
-
2454
- ._tooltip_vitro-tooltip_JvGPShz[style*='transform'] {
2455
- display: block !important;
2456
- }
2457
-
2458
- ._tooltip_vitro-tooltip_JvGPShz .tooltip-inner {
2459
- color: #FFF;
2460
- font-family: 'InterRegular';
2461
- font-size: 14px;
2462
- line-height: 21px;
2463
- padding: 8px 10px;
2464
- border-radius: 4px;
2465
- background: #4A556C;
2466
- box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 6px 0px rgba(0, 0, 0, 0.10);
2467
- max-width: 224px;
2468
- text-align: left;
2469
- white-space: pre-wrap;
2470
- }
2471
-
2472
- ._tooltip_vitro-tooltip_JvGPShz .tooltip-arrow::before {
2473
- content: '';
2474
- display: block;
2475
- width: 16px;
2476
- height: 13px;
2477
- border: unset !important;
2478
- background-size: 100%;
2479
- background-position: center;
2480
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/tooltip/img/tooltip-arrow.svg');
2481
- }
2482
-
2483
- ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-top .tooltip-arrow::before {
2484
- top: -3px;
2485
- }
2486
-
2487
- ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-bottom .tooltip-arrow::before {
2488
- bottom: -3px;
2489
- transform: rotate(180deg);
2490
- }
2491
-
2492
- ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-end .tooltip-arrow::before {
2493
- right: -3px;
2494
- transform: rotate(90deg);
2495
- }
2496
-
2497
- ._tooltip_vitro-tooltip_JvGPShz.bs-tooltip-start .tooltip-arrow::before {
2498
- left: -3px;
2499
- transform: rotate(-90deg);
2500
- }
2501
-
2502
2706
  ._login-content_vitro-login-content_2RdLZle {
2503
2707
  height: 100%;
2504
2708
  width: 100%;
@@ -2643,7 +2847,7 @@ html, body {
2643
2847
  ._checkbox_vitro-checkbox-content_2fBG1zl input {
2644
2848
  width: 24px;
2645
2849
  height: 24px;
2646
- margin-right: 6px;
2850
+ margin-right: 4px;
2647
2851
  cursor: pointer;
2648
2852
  -moz-appearance: none;
2649
2853
  appearance: none;
@@ -2656,18 +2860,18 @@ html, body {
2656
2860
  display: block;
2657
2861
  width: 100%;
2658
2862
  height: 100%;
2659
- background: #fff;
2863
+ background: transparent;
2660
2864
  background-size: 100%;
2661
2865
  background-position: center;
2662
2866
  background-repeat: no-repeat;
2663
2867
  }
2664
2868
 
2665
2869
  ._checkbox_vitro-checkbox-content_2fBG1zl input::before {
2666
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/checkbox/img/checkbox-big-empty.svg');
2870
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/checkbox/img/checkbox-empty.svg');
2667
2871
  }
2668
2872
 
2669
2873
  ._checkbox_vitro-checkbox-content_2fBG1zl input:checked::before {
2670
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/checkbox/img/checkbox-big-active.svg');
2874
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/checkbox/img/checkbox-active.svg');
2671
2875
  }
2672
2876
 
2673
2877
  ._checkbox_vitro-label_qZxCbCP {
@@ -3182,7 +3386,7 @@ html, body {
3182
3386
  padding: 0 6px;
3183
3387
  background: transparent;
3184
3388
  background-image: linear-gradient(#fff, #fff);
3185
- background-size: 100% 2px;
3389
+ background-size: 100% 3px;
3186
3390
  background-position: 0 calc(50% + 3px);
3187
3391
  background-repeat: no-repeat;
3188
3392
  z-index: 1;
@@ -3210,9 +3414,6 @@ html, body {
3210
3414
  line-height: 135%;
3211
3415
  margin-top: 2px;
3212
3416
  width: 100%;
3213
- text-overflow: ellipsis;
3214
- white-space: nowrap;
3215
- overflow: hidden;
3216
3417
  }
3217
3418
 
3218
3419
  ._date-picker_vitro-focus_2cJKcKr ._date-picker_vitro-error-text_15CdrRj {
@@ -3537,7 +3738,7 @@ html, body {
3537
3738
  padding: 0 6px;
3538
3739
  background: transparent;
3539
3740
  background-image: linear-gradient(#fff, #fff);
3540
- background-size: 100% 2px;
3741
+ background-size: 100% 3px;
3541
3742
  background-position: 0 calc(50% + 3px);
3542
3743
  background-repeat: no-repeat;
3543
3744
  z-index: 1;
@@ -3565,9 +3766,6 @@ html, body {
3565
3766
  line-height: 135%;
3566
3767
  margin-top: 2px;
3567
3768
  width: 100%;
3568
- text-overflow: ellipsis;
3569
- white-space: nowrap;
3570
- overflow: hidden;
3571
3769
  }
3572
3770
 
3573
3771
  ._time-picker_vitro-focus_wmhPjvE ._time-picker_vitro-error-text_2BNoBKW {
@@ -3958,7 +4156,7 @@ html, body {
3958
4156
  padding: 0 6px;
3959
4157
  background: transparent;
3960
4158
  background-image: linear-gradient(#fff, #fff);
3961
- background-size: 100% 2px;
4159
+ background-size: 100% 3px;
3962
4160
  background-position: 0 calc(50% + 3px);
3963
4161
  background-repeat: no-repeat;
3964
4162
  z-index: 1;
@@ -3975,9 +4173,6 @@ html, body {
3975
4173
  line-height: 135%;
3976
4174
  margin-top: 2px;
3977
4175
  width: 100%;
3978
- text-overflow: ellipsis;
3979
- white-space: nowrap;
3980
- overflow: hidden;
3981
4176
  }
3982
4177
 
3983
4178
  ._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-error-text_273lqvD {
@@ -4700,7 +4895,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
4700
4895
  flex: 1 0;
4701
4896
  }
4702
4897
 
4703
- ._sidebar_vitro-sidebar-section-list_1nGto5m > li::before {
4898
+ ._sidebar_vitro-sidebar-section-list_1nGto5m > li > ul::before {
4704
4899
  display: block;
4705
4900
  content: '';
4706
4901
  background: #E4E6EC;
@@ -4711,11 +4906,11 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
4711
4906
  margin-bottom: 4px;
4712
4907
  }
4713
4908
 
4714
- ._sidebar_vitro-sidebar-section-list_1nGto5m > li:first-child::before {
4909
+ ._sidebar_vitro-sidebar-section-list_1nGto5m > li:first-child > ul::before {
4715
4910
  display: none;
4716
4911
  }
4717
4912
 
4718
- .vitro-bottom-menu ._sidebar_vitro-sidebar-section-list_1nGto5m > li::before {
4913
+ .vitro-bottom-menu ._sidebar_vitro-sidebar-section-list_1nGto5m > li > ul::before {
4719
4914
  display: none;
4720
4915
  }
4721
4916
 
@@ -4740,6 +4935,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
4740
4935
  }
4741
4936
 
4742
4937
  ._sidebar_vitro-scroll-container_3K-iJy8 {
4938
+ width: 100%;
4743
4939
  height: 100%;
4744
4940
  flex: 0 1 auto;
4745
4941
  overflow-x: hidden;
@@ -5157,214 +5353,63 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
5157
5353
 
5158
5354
  ._alert_vitro-alert_3sPAkJb .btn:active,
5159
5355
  ._alert_vitro-alert_3sPAkJb .btn:focus {
5160
- outline: none !important;
5161
- }
5162
-
5163
- ._alert_vitro-alert_3sPAkJb > div .header {
5164
- font-weight: 500;
5165
- font-size: 15px;
5166
- }
5167
-
5168
- ._alert_vitro-alert_3sPAkJb button.close {
5169
- position: relative;
5170
- padding: 0.2rem;
5171
- }
5172
-
5173
- ._alert_vitro-alert_3sPAkJb button.btn.error {
5174
- margin-left: 8px;
5175
- font-size: 13px;
5176
- font-weight: bold;
5177
- padding: 0.1rem 0.75rem;
5178
- border-radius: 0;
5179
- }
5180
-
5181
- ._alert_vitro-alert_3sPAkJb .btn.danger,
5182
- ._alert_vitro-alert_3sPAkJb .btn.warning {
5183
- margin: 5px;
5184
- }
5185
-
5186
- ._alert_vitro-alert_3sPAkJb .alert-danger,
5187
- ._alert_vitro-alert_3sPAkJb .alert-success,
5188
- ._alert_vitro-alert_3sPAkJb .alert-warning {
5189
- border: none;
5190
- background-color: #fff !important;
5191
- color: #222d44;
5192
- }
5193
-
5194
- ._alert_vitro-alert_3sPAkJb .alert-danger {
5195
- border-left: 4px solid #D13438;
5196
- }
5197
-
5198
- ._alert_vitro-alert_3sPAkJb .alert-success {
5199
- border-left: 4px solid #198754;
5200
- }
5201
-
5202
- ._alert_vitro-alert_3sPAkJb .alert-warning {
5203
- border-left: 4px solid #F3AD4A;
5204
- }
5205
-
5206
- ._alert_vitro-alert_3sPAkJb .alert-danger ._alert_vitro-icon_pK385gF {
5207
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/error.svg');
5208
- }
5209
-
5210
- ._alert_vitro-alert_3sPAkJb .alert-success ._alert_vitro-icon_pK385gF {
5211
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/success.svg');
5212
- }
5213
-
5214
- ._alert_vitro-alert_3sPAkJb .alert-warning ._alert_vitro-icon_pK385gF {
5215
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/warning.svg');
5216
- }
5217
- ._dialog-content_vitro-dialog-content_qQNWu6x {
5218
- min-width: auto;
5219
- overflow: hidden;
5220
- display: flex;
5221
- flex-direction: column;
5222
- flex-grow: 1;
5223
- flex-shrink: 1;
5224
- }
5225
-
5226
- ._dialog-content_vitro-dialog-content_qQNWu6x > #TreeView > .ps {
5227
- padding-top: 12px !important;
5228
- padding-left: 16px;
5356
+ outline: none !important;
5229
5357
  }
5230
5358
 
5231
- ._dialog-content_vitro-dialog-content_qQNWu6x > div {
5232
- max-height: 100%;
5233
- }
5234
- ._dialog-header_vitro-dialog-header_2W3GraU {
5235
- padding: 20px 16px;
5236
- border-bottom: 1px solid #E4E6EC;
5237
- background: #fff;
5238
- border-radius: 4px 4px 0 0;
5239
- display: flex;
5240
- align-items: center;
5359
+ ._alert_vitro-alert_3sPAkJb > div .header {
5360
+ font-weight: 500;
5361
+ font-size: 15px;
5241
5362
  }
5242
5363
 
5243
- ._dialog-header_vitro-title_2k8SPhE {
5244
- color: #222D44;
5245
- font-size: 20px;
5246
- line-height: 24px;
5247
- font-family: 'InterRegular';
5248
- margin-bottom: 0;
5364
+ ._alert_vitro-alert_3sPAkJb button.close {
5365
+ position: relative;
5366
+ padding: 0.2rem;
5249
5367
  }
5250
5368
 
5251
- ._dialog-header_vitro-description_Hiq51VI {
5252
- color: #4A556C;
5253
- font-size: 14px;
5254
- line-height: 16px;
5255
- font-family: 'InterRegular';
5256
- margin-top: 7px;
5257
- margin-bottom: 0;
5369
+ ._alert_vitro-alert_3sPAkJb button.btn.error {
5370
+ margin-left: 8px;
5371
+ font-size: 13px;
5372
+ font-weight: bold;
5373
+ padding: 0.1rem 0.75rem;
5374
+ border-radius: 0;
5258
5375
  }
5259
5376
 
5260
- ._dialog-header_vitro-image_3TdbvmV {
5261
- width: 38px;
5262
- height: 38px;
5263
- margin-right: 16px;
5264
- }
5265
- ._dialog-button_vitro-dialog-button_1fQ5l22 {
5266
- margin-left: 12px;
5377
+ ._alert_vitro-alert_3sPAkJb .btn.danger,
5378
+ ._alert_vitro-alert_3sPAkJb .btn.warning {
5379
+ margin: 5px;
5267
5380
  }
5268
5381
 
5269
- ._dialog-button_vitro-dialog-button_1fQ5l22:disabled {
5270
- background: #E0E0E0;
5271
- }
5272
- ._dialog-button-close_vitro-dialog-button-close_1p27cEz {
5273
- display: block;
5274
- position: absolute;
5382
+ ._alert_vitro-alert_3sPAkJb .alert-danger,
5383
+ ._alert_vitro-alert_3sPAkJb .alert-success,
5384
+ ._alert_vitro-alert_3sPAkJb .alert-warning {
5275
5385
  border: none;
5276
- background: 0 0;
5277
- outline: 0;
5278
- cursor: pointer;
5279
- padding: 0;
5280
- width: 60px;
5281
- height: 60px;
5282
- right: -64px;
5283
- top: -9px;
5284
- background-size: 100%;
5285
- background-repeat: no-repeat;
5286
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/dialog/img/cancel-white.svg');
5386
+ background-color: #fff !important;
5387
+ color: #222d44;
5287
5388
  }
5288
5389
 
5289
- ._dialog-button-close_vitro-button-close_2BpzTR0 {
5290
- font-family: 'InterRegular' !important;
5291
- background: #fff !important;
5292
- color: #222D44 !important;
5293
- border: none;
5390
+ ._alert_vitro-alert_3sPAkJb .alert-danger {
5391
+ border-left: 4px solid #D13438;
5294
5392
  }
5295
5393
 
5296
- ._dialog-button-close_vitro-button-close_2BpzTR0:hover,
5297
- ._dialog-button-close_vitro-button-close_2BpzTR0:active {
5298
- background: #F3F8FF !important;
5394
+ ._alert_vitro-alert_3sPAkJb .alert-success {
5395
+ border-left: 4px solid #198754;
5299
5396
  }
5300
5397
 
5301
- @media (max-width: 650px) {
5302
- ._dialog-button-close_vitro-dialog-button-close_1p27cEz {
5303
- display: none;
5304
- }
5305
- }
5306
-
5307
- ._dialog-footer_vitro-dialog-footer_2vUQ3aG {
5308
- display: flex;
5309
- justify-content: flex-end;
5310
- background: #fff;
5311
- width: 100%;
5312
- padding: 16px;
5313
- border-top: 1px solid #E4E6EC;
5314
- margin-top: auto;
5315
- border-radius: 0 0 4px 4px;
5398
+ ._alert_vitro-alert_3sPAkJb .alert-warning {
5399
+ border-left: 4px solid #F3AD4A;
5316
5400
  }
5317
5401
 
5318
- @media (max-width: 800px) {
5319
- ._dialog-footer_vitro-dialog-footer_2vUQ3aG {
5320
- justify-content: center !important;
5321
- }
5322
- button {
5323
- width: 100%;
5324
- }
5325
- }
5326
-
5327
- ._dialog_vitro-dialog_2NzcRZg {
5328
- position: fixed;
5329
- margin: 0 auto;
5330
- left: 0;
5331
- right: 0;
5332
- top: 0;
5333
- bottom: 0;
5334
- z-index: 1001;
5335
- display: flex;
5336
- align-items: center;
5337
- justify-content: center;
5338
- background: rgba(34, 45, 68, 0.2);
5402
+ ._alert_vitro-alert_3sPAkJb .alert-danger ._alert_vitro-icon_pK385gF {
5403
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/error.svg');
5339
5404
  }
5340
5405
 
5341
- ._dialog_vitro-dialog_2NzcRZg > div {
5342
- display: flex;
5343
- flex-direction: column;
5344
- border: 1px solid #C0CAD5;
5345
- background: #fff;
5346
- position: absolute;
5347
- overflow: visible;
5348
- left: 50%;
5349
- top: 50%;
5350
- transform: translate(-50%, -50%);
5351
- opacity: 1;
5352
- border-radius: 4px;
5353
- box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
5406
+ ._alert_vitro-alert_3sPAkJb .alert-success ._alert_vitro-icon_pK385gF {
5407
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/success.svg');
5354
5408
  }
5355
5409
 
5356
- @media (max-width: 800px) {
5357
- ._dialog_vitro-dialog_2NzcRZg {
5358
- z-index: 10001 !important;
5359
- }
5360
- ._dialog_vitro-dialog_2NzcRZg > div {
5361
- width: 100% !important;
5362
- height: 100% !important;
5363
- border-radius: 0 !important;
5364
- border: none !important;
5365
- }
5366
- }
5367
-
5410
+ ._alert_vitro-alert_3sPAkJb .alert-warning ._alert_vitro-icon_pK385gF {
5411
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/alert/img/warning.svg');
5412
+ }
5368
5413
  ._user-profile_vitro-user-profile_11XpBoQ span {
5369
5414
  margin-right: 10px;
5370
5415
  color: #5F6276;
@@ -5656,7 +5701,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
5656
5701
  justify-content: flex-start;
5657
5702
  flex-direction: row;
5658
5703
  position: relative;
5659
- margin-bottom: 16px;
5660
5704
  }
5661
5705
 
5662
5706
  ._image-picker_vitro-image-picker-dropdown-wrapper_8Tr_BBS .dropdown-menu {
@@ -5725,6 +5769,37 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
5725
5769
  ._image-picker_vitro-image-picker-wrapper_dlZyYFL {
5726
5770
  display: flex;
5727
5771
  flex-direction: column;
5772
+ margin-bottom: 16px;
5773
+ }
5774
+
5775
+ ._image-picker_vitro-required_2lpwlb0 {
5776
+ color: red;
5777
+ }
5778
+
5779
+ ._image-picker_vitro-error-text_3xviMND {
5780
+ display: inline-block;
5781
+ color: #D13438;
5782
+ font-size: 14px;
5783
+ line-height: 19px;
5784
+ margin-top: 2px;
5785
+ width: 100%;
5786
+ text-overflow: ellipsis;
5787
+ white-space: nowrap;
5788
+ overflow: hidden;
5789
+ }
5790
+
5791
+ ._image-picker_vitro-error-text_3xviMND::before {
5792
+ content: '';
5793
+ display: inline-block;
5794
+ vertical-align: text-top;
5795
+ height: 16px;
5796
+ width: 16px;
5797
+ min-width: 16px;
5798
+ min-height: 16px;
5799
+ margin-right: 4px;
5800
+ background-size: 100%;
5801
+ background-position: center;
5802
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/input/img/error-message.svg');
5728
5803
  }
5729
5804
  ._criterion_vitro-criterion-container_2cYcSkL {
5730
5805
  width: 100%;
@@ -5755,7 +5830,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
5755
5830
  padding: 0 6px;
5756
5831
  background: transparent;
5757
5832
  background-image: linear-gradient(#fff, #fff);
5758
- background-size: 100% 2px;
5833
+ background-size: 100% 3px;
5759
5834
  background-position: 0 calc(50% + 3px);
5760
5835
  background-repeat: no-repeat;
5761
5836
  z-index: 1;
@@ -6103,6 +6178,10 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6103
6178
  .vitro-block:nth-child(2) {
6104
6179
  margin-top: 8px;
6105
6180
  }
6181
+
6182
+ .vitro-block:last-child > div > div {
6183
+ margin: 0;
6184
+ }
6106
6185
 
6107
6186
  ._search_vitro-search_QkJksC_ {
6108
6187
  position: relative;
@@ -6568,8 +6647,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6568
6647
  position: relative;
6569
6648
  }
6570
6649
 
6571
- ._expand-control-group_vitro-button-collapse_14wEdB1,
6572
- ._expand-control-group_vitro-button-expand_bwV3dXl {
6650
+ ._expand-control-group_vitro-expand-collapse-button_hBX5TTj {
6573
6651
  vertical-align: middle;
6574
6652
  margin-right: 8px;
6575
6653
  margin-top: -2px;
@@ -6577,14 +6655,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6577
6655
  height: 12px;
6578
6656
  }
6579
6657
 
6580
- ._expand-control-group_vitro-button-collapse_14wEdB1 {
6581
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/expand-control-group/img/collapse-up.svg');
6582
- }
6583
-
6584
- ._expand-control-group_vitro-button-expand_bwV3dXl {
6585
- background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/expand-control-group/img/collapse-bottom.svg');
6586
- }
6587
-
6588
6658
  ._expand-control-group_vitro-expand-control-group_1qSUMoN > ._expand-control-group_vitro-content_2UPEUhm {
6589
6659
  margin: 8px 0 16px 0;
6590
6660
  }
@@ -6670,20 +6740,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6670
6740
  }
6671
6741
 
6672
6742
 
6673
- ._image-button_vitro-image-button_34pBVmE,
6674
- ._image-button_vitro-image-button_34pBVmE:hover,
6675
- ._image-button_vitro-image-button_34pBVmE:active {
6676
- width: 20px;
6677
- height: 20px;
6678
- flex-shrink: 0;
6679
- background-position: center;
6680
- background-size: 100%;
6681
- background-repeat: no-repeat;
6682
- border: none;
6683
- outline: none;
6684
- background-color: transparent;
6685
- }
6686
-
6687
6743
  ._link-input_vitro-link-input_1FBo8kO {
6688
6744
  position: relative;
6689
6745
  }
@@ -6720,4 +6776,123 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6720
6776
  right: 16px;
6721
6777
  top: 10px;
6722
6778
  background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/link-input/img/edit.svg');
6779
+ }
6780
+ ._system-exception-dialog_vitro-system-exception-dialog_2UVdbuB {
6781
+ width: 618px;
6782
+ }
6783
+
6784
+ ._system-exception-dialog_vitro-system-exception-dialog_2UVdbuB h1 {
6785
+ font-size: 18px;
6786
+ line-height: 150%;
6787
+ }
6788
+
6789
+ ._system-exception-dialog_vitro-image_XG5PD8h {
6790
+ flex-shrink: 0;
6791
+ height: 40px;
6792
+ width: 40px;
6793
+ margin-right: 8px;
6794
+ background-size: 100%;
6795
+ background-repeat: no-repeat;
6796
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/system-exception-dialog/img/error.svg');
6797
+ }
6798
+
6799
+ ._system-exception-dialog_vitro-exception_2bLGF01 {
6800
+ max-height: 98px !important;
6801
+ margin-top: 16px;
6802
+ background-color: #F7F9FC;
6803
+ color: #D13438;
6804
+ font-size: 12px;
6805
+ line-height: 18px;
6806
+ border-radius: 4px;
6807
+ border: 1px solid rgba(228, 230, 236, 0.5);
6808
+ width: 100%;
6809
+ display: flex;
6810
+ flex-direction: column;
6811
+ }
6812
+
6813
+ ._system-exception-dialog_vitro-exception_2bLGF01 .ps__rail-x,
6814
+ ._system-exception-dialog_vitro-exception_2bLGF01 .ps__rail-y {
6815
+ background-color: #F7F9FC !important;
6816
+ }
6817
+
6818
+ ._system-exception-dialog_vitro-exception_2bLGF01 .ps__rail-x {
6819
+ border-top: 1px solid #F5F6FA;
6820
+ }
6821
+
6822
+ ._system-exception-dialog_vitro-exception_2bLGF01 .ps__rail-y {
6823
+ border-left: 1px solid #F5F6FA;
6824
+ }
6825
+
6826
+ ._system-exception-dialog_vitro-scrollbar-content_2sob8Xl {
6827
+ padding: 8px 12px;
6828
+ }
6829
+
6830
+ ._system-exception-dialog_vitro-label_1Nbb_It {
6831
+ font-size: 14px;
6832
+ line-height: 150%;
6833
+ color: #222D44;
6834
+ margin-bottom: 4px;
6835
+ white-space: normal;
6836
+ }
6837
+
6838
+ ._system-exception-dialog_vitro-input_262484M {
6839
+ margin: 0;
6840
+ height: 118px;
6841
+ }
6842
+
6843
+ ._system-exception-dialog_vitro-input_262484M textarea {
6844
+ resize: none;
6845
+ height: 100%;
6846
+ font-size: 12px;
6847
+ padding: 8px 12px;
6848
+ }
6849
+
6850
+ ._system-exception-dialog_vitro-flex_EHka5VC {
6851
+ display: flex;
6852
+ align-items: center;
6853
+ white-space: nowrap;
6854
+ }
6855
+
6856
+ ._system-exception-dialog_vitro-flex_EHka5VC span:nth-child(3) {
6857
+ color: #2A63F6;
6858
+ margin-left: 4px;
6859
+ }
6860
+
6861
+ ._system-exception-dialog_vitro-settings-list_6N3QiPa {
6862
+ width: 100%;
6863
+ padding: 0 24px 16px 24px;
6864
+ }
6865
+
6866
+ ._system-exception-dialog_vitro-checkbox_354NjHR {
6867
+ margin-bottom: 0;
6868
+ width: unset;
6869
+ }
6870
+
6871
+ @media (max-width: 800px) {
6872
+ ._system-exception-dialog_vitro-settings-list_6N3QiPa {
6873
+ padding: 0 16px 16px 16px;
6874
+ }
6875
+ }
6876
+
6877
+ @media (max-width: 370px) {
6878
+ ._system-exception-dialog_vitro-flex_EHka5VC span:nth-child(2) {
6879
+ display: none;
6880
+ }
6881
+
6882
+ ._system-exception-dialog_vitro-flex_EHka5VC span:nth-child(3) {
6883
+ color: #222D44;
6884
+ margin: 0;
6885
+ }
6886
+ }
6887
+
6888
+ @media (max-height: 620px) {
6889
+ ._system-exception-dialog_vitro-exception_2bLGF01 {
6890
+ display: none;
6891
+ }
6892
+ }
6893
+
6894
+ @media (max-height: 480px) {
6895
+ ._system-exception-dialog_vitro-input_262484M {
6896
+ height: 72px;
6897
+ }
6723
6898
  }