@vitrosoftware/common-ui-ts 1.1.111 → 1.1.113

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 (53) hide show
  1. package/css/std/controls/criterion/criterion.css +0 -12
  2. package/css/std/controls/date-picker/date-picker.css +1 -0
  3. package/css/std/controls/dropdown-button/dropdown-button.css +8 -8
  4. package/css/std/controls/expand-control-group/expand-control-group.css +10 -32
  5. package/css/std/controls/field-iterator/field-iterator.css +55 -7
  6. package/css/std/controls/field-iterator/img/collapse-bottom.svg +4 -0
  7. package/css/std/controls/field-iterator/img/collapse-up.svg +4 -0
  8. package/css/std/controls/input/input.css +1 -1
  9. package/css/std/controls/message-input/message-input.css +3 -1
  10. package/css/std/controls/pdf-viewer/compare.css +24 -24
  11. package/css/std/controls/pdf-viewer/custom.css +2 -2
  12. package/css/std/controls/pdf-viewer/form.css +78 -1
  13. package/css/std/controls/pdf-viewer/img/cancel-white.svg +10 -0
  14. package/css/std/controls/pdf-viewer/img/close-compare-viewer-active.svg +5 -0
  15. package/css/std/controls/pdf-viewer/img/close-compare-viewer.svg +5 -0
  16. package/css/std/controls/pdf-viewer/img/collapse-bottom.svg +5 -0
  17. package/css/std/controls/pdf-viewer/img/collapse-up-blue.svg +5 -0
  18. package/css/std/controls/pdf-viewer/img/compare-dlg-separator.svg +1 -0
  19. package/css/std/controls/pdf-viewer/img/compare-overlay.svg +1 -0
  20. package/css/std/controls/pdf-viewer/img/compare-side-by-side.svg +5 -0
  21. package/css/std/controls/pdf-viewer/img/finish-align-active.svg +8 -0
  22. package/css/std/controls/pdf-viewer/img/finish-align.svg +8 -0
  23. package/css/std/controls/pdf-viewer/img/fit-to-view-active.svg +5 -0
  24. package/css/std/controls/pdf-viewer/img/fit-to-view.svg +5 -0
  25. package/css/std/controls/pdf-viewer/img/hide-colors-active.svg +1 -0
  26. package/css/std/controls/pdf-viewer/img/hide-colors.svg +3 -0
  27. package/css/std/controls/pdf-viewer/img/overlay-active.svg +4 -0
  28. package/css/std/controls/pdf-viewer/img/overlay.svg +4 -0
  29. package/css/std/controls/pdf-viewer/img/pan-active.svg +3 -0
  30. package/css/std/controls/pdf-viewer/img/pan.svg +3 -0
  31. package/css/std/controls/pdf-viewer/img/panel-visibility-active.svg +8 -0
  32. package/css/std/controls/pdf-viewer/img/panel-visibility.svg +8 -0
  33. package/css/std/controls/pdf-viewer/img/side-by-side-active.svg +4 -0
  34. package/css/std/controls/pdf-viewer/img/side-by-side.svg +4 -0
  35. package/css/std/controls/pdf-viewer/img/zoom-active.svg +5 -0
  36. package/css/std/controls/pdf-viewer/img/zoom.svg +5 -0
  37. package/css/std/controls/pdf-viewer/measure.css +138 -7
  38. package/css/std/controls/pdf-viewer/pdf-viewer-index.css +309 -64
  39. package/css/std/controls/pdf-viewer/pdf-viewer.css +66 -30
  40. package/css/std/controls/search/search.css +2 -6
  41. package/css/std/controls/tab-group/tab-group.css +0 -8
  42. package/css/std/controls/view/view.css +15 -2
  43. package/dist/index.css +106 -87
  44. package/dist/index.js +362 -285
  45. package/dist/index.js.map +1 -1
  46. package/dist/src/controls/ExpandControlGroup/ExpandControlGroup.d.ts +9 -4
  47. package/dist/src/controls/ExpandControlGroup/ExpandControlGroupConstants.d.ts +4 -0
  48. package/dist/src/controls/FieldIterator/FieldIterator.d.ts +2 -1
  49. package/dist/src/controls/LookupPicker/LookupPicker.d.ts +3 -0
  50. package/dist/src/controls/View/GroupControl.d.ts +2 -0
  51. package/package.json +1 -1
  52. package/src/controls/BimViewer/js/bim-viewer.js +2 -2
  53. package/src/controls/PdfViewer/js/pdf-viewer.js +1171 -238
@@ -5080,7 +5080,85 @@ canvas.zoom.loaded.transparent {
5080
5080
 
5081
5081
  .form-body .w-100 {
5082
5082
  width: 100%;
5083
- }
5083
+ }
5084
+
5085
+ .uk-select {
5086
+ width: 100%;
5087
+ }
5088
+
5089
+ .uk-margin {
5090
+ margin-top: 20px;
5091
+ margin-bottom: 20px;
5092
+ }
5093
+
5094
+ .uk-margin-first {
5095
+ margin-top: 0;
5096
+ }
5097
+
5098
+ .uk-margin-last {
5099
+ margin-bottom: 0;
5100
+ }
5101
+
5102
+ .form-body input.uk-checkbox,
5103
+ .form-body input.uk-radio,
5104
+ .uk-checkbox,
5105
+ .uk-radio {
5106
+ display: inline-block;
5107
+ height: 16px;
5108
+ width: 16px;
5109
+ min-width: initial;
5110
+ padding: 0;
5111
+ overflow: hidden;
5112
+ margin-top: -4px;
5113
+ vertical-align: middle;
5114
+ -webkit-appearance: none;
5115
+ -moz-appearance: none;
5116
+ background-color: transparent;
5117
+ background-repeat: no-repeat;
5118
+ background-position: 50% 50%;
5119
+ border: 1px solid #ccc;
5120
+ transition: .2s ease-in-out;
5121
+ transition-property: background-color, border;
5122
+ }
5123
+
5124
+ .uk-radio {
5125
+ border-radius: 50%;
5126
+ }
5127
+
5128
+ .uk-checkbox:not(:disabled),
5129
+ .uk-radio:not(:disabled) {
5130
+ cursor: pointer;
5131
+ }
5132
+
5133
+ .form-body input.uk-radio:checked,
5134
+ .uk-radio:checked {
5135
+ background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E);
5136
+ }
5137
+
5138
+ .form-body input.uk-checkbox:checked,
5139
+ .form-body input.uk-checkbox:indeterminate,
5140
+ .form-body input.uk-radio:checked,
5141
+ .uk-checkbox:checked,
5142
+ .uk-checkbox:indeterminate,
5143
+ .uk-radio:checked {
5144
+ background-color: #1e87f0;
5145
+ border-color: transparent;
5146
+ }
5147
+
5148
+ .uk-form-radio-group label {
5149
+ margin-bottom: 10px;
5150
+ }
5151
+
5152
+ .uk-button[disabled] {
5153
+ opacity: 0.5;
5154
+ }
5155
+
5156
+ .uk-button-full-width {
5157
+ width: 100%;
5158
+ }
5159
+
5160
+
5161
+
5084
5162
  .pixelcompare-wrapper.pixelcompare-horizontal {
5085
5163
  height: 100% !important;
5086
5164
  }
@@ -5368,7 +5446,7 @@ img.pixelcompare-before, img.pixelcompare-after {
5368
5446
 
5369
5447
  .compare-dlg_doc-sep {
5370
5448
  width: 68px;
5371
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/dlg-compare-ico.png') no-repeat center center;
5449
+ background: url('../img/dlg-compare-ico.png') no-repeat center center;
5372
5450
  }
5373
5451
 
5374
5452
  .compare-dlg_doc-a-wrap .wrap-inner,
@@ -5553,17 +5631,17 @@ img.pixelcompare-before, img.pixelcompare-after {
5553
5631
  }
5554
5632
 
5555
5633
  #hideColors {
5556
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/hide-colors.png');
5634
+ background: url('../img/hide-colors.png');
5557
5635
  }
5558
5636
  #hideColors.active {
5559
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/hide-colors_active.png');
5637
+ background: url('../img/hide-colors_active.png');
5560
5638
  }
5561
5639
 
5562
5640
  #alignFinish {
5563
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/finish-align.png');
5641
+ background: url('../img/finish-align.png');
5564
5642
  }
5565
5643
  #alignFinish.active {
5566
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/finish-align_active.png');
5644
+ background: url('../img/finish-align_active.png');
5567
5645
  }
5568
5646
 
5569
5647
  .compare-panel_body {
@@ -5629,12 +5707,12 @@ img.pixelcompare-before, img.pixelcompare-after {
5629
5707
  top: 50%;
5630
5708
  right: 0;
5631
5709
  transform: translate(0, -50%);
5632
- background-repeat: no-repeat;
5633
- background-image: url('img/layer-unvisible.svg');
5710
+
5711
+ background: url('../img/layer-unvisible.png') no-repeat center center;
5634
5712
  }
5635
5713
 
5636
5714
  .compare-layer-visibility.active {
5637
- background-image: url('img/layer-visible.svg');
5715
+ background: url('../img/layer-visible.png') no-repeat center center;
5638
5716
  }
5639
5717
 
5640
5718
  .compare-viewer-wrap.side-by-side #compareCanvasResult,
@@ -5672,50 +5750,50 @@ img.pixelcompare-before, img.pixelcompare-after {
5672
5750
  }
5673
5751
 
5674
5752
  #btnComparePan {
5675
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/pan.png') no-repeat center center;
5753
+ background: url('../img/pan.png') no-repeat center center;
5676
5754
  }
5677
5755
  #btnComparePan:hover,
5678
5756
  #btnComparePan.active {
5679
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/pan_active.png') no-repeat center center;
5757
+ background: url('../img/pan_active.png') no-repeat center center;
5680
5758
  }
5681
5759
 
5682
5760
  #btnCompareZoom {
5683
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/zoom.png') no-repeat center center;
5761
+ background: url('../img/zoom.png') no-repeat center center;
5684
5762
  }
5685
5763
  #btnCompareZoom:hover,
5686
5764
  #btnCompareZoom.active {
5687
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/zoom_active.png') no-repeat center center;
5765
+ background: url('../img/zoom_active.png') no-repeat center center;
5688
5766
  }
5689
5767
 
5690
5768
  #btnFitToView {
5691
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/fit-to-view.png') no-repeat center center;
5769
+ background: url('../img/fit-to-view.png') no-repeat center center;
5692
5770
  }
5693
5771
  #btnFitToView:hover,
5694
5772
  #btnFitToView.active {
5695
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/fit-to-view_active.png') no-repeat center center;
5773
+ background: url('../img/fit-to-view_active.png') no-repeat center center;
5696
5774
  }
5697
5775
 
5698
5776
  #btnCompareType.type-overlay {
5699
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/compare-overlay.png') no-repeat center center;
5777
+ background: url('../img/compare-overlay.png') no-repeat center center;
5700
5778
  }
5701
5779
  #btnCompareType.type-side-by-side {
5702
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/compare-side-by-side.png') no-repeat center center;
5780
+ background: url('../img/compare-side-by-side.png') no-repeat center center;
5703
5781
  }
5704
5782
 
5705
5783
  #btnComparePanel {
5706
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/panel-visibility.png') no-repeat center center;
5784
+ background: url('../img/panel-visibility.png') no-repeat center center;
5707
5785
  }
5708
5786
  #btnComparePanel:hover,
5709
5787
  #btnComparePanel.active {
5710
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/panel-visibility_active.png') no-repeat center center;
5788
+ background: url('../img/panel-visibility_active.png') no-repeat center center;
5711
5789
  }
5712
5790
 
5713
5791
  #btnCompareViewerExit {
5714
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/close-compare-viewer.png') no-repeat center center;
5792
+ background: url('../img/close-compare-viewer.png') no-repeat center center;
5715
5793
  }
5716
5794
  #btnCompareViewerExit:hover,
5717
5795
  #btnCompareViewerExit.active {
5718
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/close-compare-viewer_active.png') no-repeat center center;
5796
+ background: url('../img/close-compare-viewer_active.png') no-repeat center center;
5719
5797
  }
5720
5798
 
5721
5799
  /* Compare label */
@@ -5768,19 +5846,19 @@ img.pixelcompare-before, img.pixelcompare-after {
5768
5846
  }
5769
5847
 
5770
5848
  #btnCompareTypeSideBySide {
5771
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/side-by-side.png') no-repeat center center;
5849
+ background: url('../img/side-by-side.png') no-repeat center center;
5772
5850
  }
5773
5851
 
5774
5852
  #btnCompareTypeOverlay {
5775
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/overlay.png') no-repeat center center;
5853
+ background: url('../img/overlay.png') no-repeat center center;
5776
5854
  }
5777
5855
 
5778
5856
  #btnCompareTypeSideBySide.active {
5779
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/side-by-side_active.png') no-repeat center center;
5857
+ background: url('../img/side-by-side_active.png') no-repeat center center;
5780
5858
  }
5781
5859
 
5782
5860
  #btnCompareTypeOverlay.active {
5783
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/overlay_active.png') no-repeat center center;
5861
+ background: url('../img/overlay_active.png') no-repeat center center;
5784
5862
  }
5785
5863
 
5786
5864
  /* Side by Side */
@@ -6010,19 +6088,19 @@ img.pixelcompare-before, img.pixelcompare-after {
6010
6088
  position: absolute;
6011
6089
  z-index: 10100;
6012
6090
 
6013
- width: 450px;
6091
+ width: 320px;
6014
6092
  max-width: 100%;
6015
6093
  border: 1px solid #dddddd;
6016
6094
  background: #fff;
6017
- top: 50%;
6018
- left: 50%;
6019
- transform: translate(-50%, -50%);
6095
+ top: 32px;
6096
+ right: 0;
6097
+ height: calc(100% - 35px);
6020
6098
  }
6021
6099
  .measures-dlg-body {
6022
- padding: 30px;
6100
+ padding: 30px 16px 30px 16px;
6023
6101
  }
6024
6102
  .measures-dlg-header {
6025
- padding: 30px;
6103
+ padding: 24px 16px 24px 16px;
6026
6104
  position: relative;
6027
6105
  background: #F7F9FA;
6028
6106
  font-weight: 400;
@@ -6030,14 +6108,145 @@ img.pixelcompare-before, img.pixelcompare-after {
6030
6108
  border-bottom: 1px solid #DAE1E6;
6031
6109
  }
6032
6110
 
6111
+ .measures-dlg-header .close {
6112
+ right: 11px;
6113
+ }
6114
+
6033
6115
  .measures-dlg-footer {
6034
6116
  border-top: 1px solid #DAE1E6;
6035
6117
  text-align: right;
6036
- padding: 15px 30px 15px 30px;
6118
+ padding: 16px;
6037
6119
  }
6038
6120
 
6039
6121
  .hide-measures .svgsketch-wrap [id^='measure_'] {
6040
6122
  display: none;
6123
+ }
6124
+
6125
+ .measures-settings-controls.type-2-point .control-type-scale,
6126
+ .measures-settings-controls.type-scale .control-type-2-point {
6127
+ display: none;
6128
+ }
6129
+
6130
+ .measures-dlg-wrap .uk-button {
6131
+ width: 100%;
6132
+ margin: 0 0 16px 0;
6133
+ }
6134
+
6135
+ .measures-dlg-statusbar {
6136
+ font-family: Arial, sans-serif;
6137
+ font-size: 12px;
6138
+ padding: 0 16px 16px 16px;
6139
+ }
6140
+
6141
+ .measures-dlg-statusbar,
6142
+ #btnMeasuresSettingsDelete {
6143
+ display: none;
6144
+ }
6145
+
6146
+ .measures-dlg-statusbar.show,
6147
+ #btnMeasuresSettingsDelete.show {
6148
+ display: initial;
6149
+ }
6150
+
6151
+ #btnMeasuresSettingsDelete {
6152
+ margin-bottom: 30px;
6153
+ }
6154
+
6155
+ .measures-2-point-size-label {
6156
+ padding-left: 8px;
6157
+ }
6158
+
6159
+ .measures-dlg-visible #viewerContainer {
6160
+ right: 320px;
6161
+ }
6162
+
6163
+ .svgsketch-wrap [id^='calibration_'] {
6164
+ display: none;
6165
+ }
6166
+
6167
+ .calibration-2-point .svgsketch-wrap [id^='calibration_'] {
6168
+ display: initial;
6169
+ }
6170
+
6171
+ #measures2PointHint {
6172
+ font-family: Arial, sans-serif;
6173
+ position: absolute;
6174
+ top: 50px;
6175
+ left: 50%;
6176
+ transform: translate(-50%, 0);
6177
+ background: rgba(38,38,38, 0.8);
6178
+ opacity: 0.8;
6179
+ color: #ffffff;
6180
+ font-weight: bold;
6181
+ font-size: 16px;
6182
+ padding: 10px;
6183
+ border-radius: 4px;
6184
+ z-index: 1000;
6185
+ }
6186
+
6187
+ .measure-toolbar-btn.disabled {
6188
+ opacity: 0.6;
6189
+ }
6190
+
6191
+ /*.measures-dlg-visible .page:not(.current) {
6192
+ visibility: hidden !important;
6193
+ }*/
6194
+
6195
+
6196
+ .measures-dlg-header_page {
6197
+ display: block;
6198
+ font-size: 14px;
6199
+ }
6200
+
6201
+ .warning-wrap {
6202
+ background: #ffffff;
6203
+ border: 1px solid #DAE1E6;
6204
+ position: fixed;
6205
+ max-width: 550px;
6206
+ min-height: 300px;
6207
+ top: 50%;
6208
+ left: 50%;
6209
+ -ms-transform: translateX(-50%) translateY(-50%);
6210
+ transform: translateX(-50%) translateY(-50%);
6211
+ box-sizing: border-box;
6212
+ z-index: 1020;
6213
+ font-family: Arial, sans-serif;
6214
+ }
6215
+
6216
+ .warning-title {
6217
+ padding: 30px;
6218
+ position: relative;
6219
+ background: #F7F9FA;
6220
+ font-weight: 400;
6221
+ font-size: 22px;
6222
+ border-bottom: 1px solid #DAE1E6;
6223
+ padding: 30px;
6224
+ }
6225
+
6226
+ .warning-body {
6227
+ padding: 30px;
6228
+ font-size: 16px;
6229
+ line-height: 1.5;
6230
+ }
6231
+
6232
+ .warning-overlay {
6233
+ background: rgba(0,0,0,0.6);
6234
+ position: fixed;
6235
+ top: 0;
6236
+ right: 0;
6237
+ bottom: 0;
6238
+ left: 0;
6239
+ z-index: 1010;
6240
+ overflow-y: auto;
6241
+ }
6242
+
6243
+ .warning-footer {
6244
+ border-top: 1px solid #DAE1E6;
6245
+ padding: 15px 30px 15px 30px;
6246
+ }
6247
+
6248
+ #btnCalibrationPageWarning {
6249
+ margin-bottom: 15px;
6041
6250
  }
6042
6251
  .btn {
6043
6252
  padding: 2px 6px 0 6px;
@@ -6220,12 +6429,12 @@ a.ui-button:active,
6220
6429
  height: 16px;
6221
6430
  right: 0;
6222
6431
  top: 0;
6223
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/delete.png') 2px 0 no-repeat;
6432
+ background: url('../img/delete.png') 2px 0 no-repeat;
6224
6433
  cursor: pointer;
6225
6434
  }
6226
6435
 
6227
6436
  .body__sidebar-note-wrap.active .body__sidebar-note-btn-delete {
6228
- background: url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/img/delete-active.png') 2px 0 no-repeat;
6437
+ background: url('../img/delete-active.png') 2px 0 no-repeat;
6229
6438
  }
6230
6439
 
6231
6440
  .body__sidebar-note-body {
@@ -7058,6 +7267,11 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7058
7267
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
7059
7268
  }
7060
7269
 
7270
+ .measures-dlg-wrap {
7271
+ display: flex;
7272
+ flex-direction: column;
7273
+ }
7274
+
7061
7275
  .compare-dlg-wrap {
7062
7276
  width: 600px;
7063
7277
  }
@@ -7100,13 +7314,25 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7100
7314
  border-radius: 0 0 4px 4px;
7101
7315
  }
7102
7316
 
7317
+ .measures-dlg-footer {
7318
+ margin-top: auto;
7319
+ flex-direction: column;
7320
+ }
7321
+
7103
7322
  .close {
7104
7323
  opacity: 1;
7105
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' stroke-width='2px' stroke='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 32.333l16-16m0 0l-16-16m16 16l16 16m-16-16l16-16'%3E%3C/path%3E%3C/svg%3E");
7324
+ background-image: url('img/cancel-white.svg');
7106
7325
  }
7107
7326
 
7108
- .compare-dlg-wrap .close,
7109
- .measures-dlg-wrap .close {
7327
+ .measures-dlg-header .close {
7328
+ right: 20px;
7329
+ top: 24px;
7330
+ height: 24px;
7331
+ width: 24px;
7332
+ background-image: url('img/cancel-dark-grey.svg');
7333
+ }
7334
+
7335
+ .compare-dlg-wrap .close {
7110
7336
  width: 30px;
7111
7337
  height: 30px;
7112
7338
  top: 0;
@@ -7124,8 +7350,8 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7124
7350
  margin-bottom: 22px;
7125
7351
  }
7126
7352
 
7127
- .field-grp label,
7128
- .uk-margin label {
7353
+ .compare-dlg-body .field-grp label,
7354
+ .measures-settings-controls .uk-margin label {
7129
7355
  color: #4A556C;
7130
7356
  padding: 0 6px;
7131
7357
  background: #fff;
@@ -7174,7 +7400,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7174
7400
 
7175
7401
  .select > span {
7176
7402
  display: block;
7177
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
7403
+ background-image: url('img/collapse-bottom.svg');
7178
7404
  width: 24px;
7179
7405
  height: 24px;
7180
7406
  position: absolute;
@@ -7187,8 +7413,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7187
7413
  }
7188
7414
 
7189
7415
  .select.active > span {
7190
- transform: rotate(-180deg);
7191
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%233274E0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
7416
+ background-image: url('img/collapse-up-blue.svg');
7192
7417
  }
7193
7418
 
7194
7419
  .select.active {
@@ -7357,6 +7582,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7357
7582
  height: 20px;
7358
7583
  width: 20px;
7359
7584
  top: calc(50% - 10px);
7585
+ background-size: 100%;
7360
7586
  z-index: 1000;
7361
7587
  opacity: 1;
7362
7588
  }
@@ -7388,7 +7614,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7388
7614
  top: 20px;
7389
7615
  right: 16px;
7390
7616
  cursor: pointer;
7391
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.75781 17.2438L12.0008 12.0008L17.2438 17.2438M17.2438 6.75781L11.9998 12.0008L6.75781 6.75781' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
7617
+ background-image: url('img/cancel-dark-grey.svg');
7392
7618
  }
7393
7619
 
7394
7620
  .compare-panel_body {
@@ -7402,6 +7628,18 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7402
7628
  background-color: transparent;
7403
7629
  }
7404
7630
 
7631
+ .compare-layer-visibility {
7632
+ background-repeat: no-repeat;
7633
+ background-position: center center;
7634
+ background-image: url('img/layer-unvisible.svg');
7635
+ }
7636
+
7637
+ .compare-layer-visibility.active {
7638
+ background-repeat: no-repeat;
7639
+ background-position: center center;
7640
+ background-image: url('img/layer-visible.svg');
7641
+ }
7642
+
7405
7643
  .compare-toolbar-btn {
7406
7644
  margin: 0;
7407
7645
  margin-right: 12px;
@@ -7474,96 +7712,96 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
7474
7712
  }
7475
7713
 
7476
7714
  .compare-dlg_doc-sep {
7477
- background-image: url("data:image/svg+xml,%3Csvg width='38' height='22' viewBox='0 0 38 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1743_100928)'%3E%3Cpath d='M1.12227 5.08646C0.792376 5.26348 0.79238 5.73656 1.12228 5.91357L9.91038 10.6291C10.223 10.7969 10.6016 10.5704 10.6016 10.2155L10.6016 7.50613C10.6016 7.24693 10.8117 7.0368 11.0709 7.0368L26.1755 7.0368C26.4347 7.0368 26.6448 6.82667 26.6448 6.56747L26.6448 4.43239C26.6448 4.17318 26.4347 3.96306 26.1755 3.96306L11.0709 3.96306C10.8117 3.96306 10.6016 3.75293 10.6016 3.49373L10.6016 0.784335C10.6016 0.429502 10.223 0.203005 9.91037 0.37078L1.12227 5.08646Z' fill='%234A556C'/%3E%3Cpath d='M36.8777 16.9135C37.2076 16.7364 37.2076 16.2634 36.8777 16.0864L28.0897 11.3709C27.7771 11.2031 27.3985 11.4296 27.3985 11.7845L27.3985 14.4938C27.3985 14.753 27.1884 14.9632 26.9292 14.9632L11.8248 14.9632C11.5656 14.9632 11.3554 15.1733 11.3554 15.4325L11.3554 17.5675C11.3554 17.8267 11.5656 18.0368 11.8248 18.0368L26.9292 18.0368C27.1884 18.0368 27.3985 18.247 27.3985 18.5062L27.3985 21.2155C27.3985 21.5704 27.7771 21.7969 28.0897 21.6291L36.8777 16.9135Z' fill='%234A556C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1743_100928'%3E%3Crect width='22' height='38' fill='white' transform='translate(0 22) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
7715
+ background-image: url('img/compare-dlg-separator.svg');
7478
7716
  }
7479
7717
 
7480
7718
  #btnComparePan {
7481
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.558 15.6667C19.0625 19.7183 16.7393 23 12.6878 23C9.69961 23 7.23388 21.1642 6.12476 18.3867L3.12738 11.4225C3.06301 11.2606 3.04609 11.0838 3.07862 10.9126C3.11115 10.7415 3.19177 10.5831 3.31105 10.4562C3.43032 10.3292 3.5833 10.2388 3.75207 10.1957C3.92085 10.1525 4.09842 10.1584 4.264 10.2125L4.98813 10.4508C5.50145 10.6158 5.9231 11.01 6.12476 11.5142L7.29804 14.4567C7.37137 14.64 7.53637 14.75 7.71969 14.75H8.10468L7.18805 3.97917C7.18805 3.67527 7.30876 3.38383 7.52364 3.16894C7.73852 2.95405 8.02995 2.83333 8.33384 2.83333C8.63772 2.83333 8.92915 2.95405 9.14403 3.16894C9.35891 3.38383 9.47962 3.67527 9.47962 3.97917L10.3963 11.5417C10.3963 11.7983 10.5979 12 10.8546 12C11.1112 12 11.3129 11.7983 11.3129 11.5417V2.14583C11.3129 1.84194 11.4336 1.55049 11.6485 1.33561C11.8634 1.12072 12.1548 1 12.4587 1C12.7626 1 13.054 1.12072 13.2689 1.33561C13.4837 1.55049 13.6045 1.84194 13.6045 2.14583V11.5417C13.6045 11.7983 13.8061 12 14.0628 12C14.3194 12 14.5211 11.7983 14.5211 11.5417L14.9787 3.52083C14.9787 3.21694 15.0994 2.92549 15.3143 2.71061C15.5292 2.49572 15.8206 2.375 16.1245 2.375C16.4284 2.375 16.7198 2.49572 16.9347 2.71061C17.1496 2.92549 17.2703 3.21694 17.2703 3.52083L16.8127 11.5417C16.8127 11.7983 17.0143 12 17.271 12C17.5276 12 17.7293 11.7983 17.7293 11.5417L18.6459 6.27083C18.6459 5.96694 18.7666 5.67549 18.9815 5.46061C19.1964 5.24572 19.4878 5.125 19.7917 5.125C20.0956 5.125 20.387 5.24572 20.6019 5.46061C20.8168 5.67549 20.9375 5.96694 20.9375 6.27083L19.558 15.6667Z' fill='%23222D44'/%3E%3C/svg%3E%0A");
7719
+ background-image: url('img/pan.svg');
7482
7720
  }
7483
7721
 
7484
7722
  #btnComparePan:hover,
7485
7723
  #btnComparePan.active {
7486
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.558 15.6667C19.0625 19.7183 16.7393 23 12.6878 23C9.69961 23 7.23388 21.1642 6.12476 18.3867L3.12738 11.4225C3.06301 11.2606 3.04609 11.0838 3.07862 10.9126C3.11115 10.7415 3.19177 10.5831 3.31105 10.4562C3.43032 10.3292 3.5833 10.2388 3.75207 10.1957C3.92085 10.1525 4.09842 10.1584 4.264 10.2125L4.98813 10.4508C5.50145 10.6158 5.9231 11.01 6.12476 11.5142L7.29804 14.4567C7.37137 14.64 7.53637 14.75 7.71969 14.75H8.10468L7.18805 3.97917C7.18805 3.67527 7.30876 3.38383 7.52364 3.16894C7.73852 2.95405 8.02995 2.83333 8.33384 2.83333C8.63772 2.83333 8.92915 2.95405 9.14403 3.16894C9.35891 3.38383 9.47962 3.67527 9.47962 3.97917L10.3963 11.5417C10.3963 11.7983 10.5979 12 10.8546 12C11.1112 12 11.3129 11.7983 11.3129 11.5417V2.14583C11.3129 1.84194 11.4336 1.55049 11.6485 1.33561C11.8634 1.12072 12.1548 1 12.4587 1C12.7626 1 13.054 1.12072 13.2689 1.33561C13.4837 1.55049 13.6045 1.84194 13.6045 2.14583V11.5417C13.6045 11.7983 13.8061 12 14.0628 12C14.3194 12 14.5211 11.7983 14.5211 11.5417L14.9787 3.52083C14.9787 3.21694 15.0994 2.92549 15.3143 2.71061C15.5292 2.49572 15.8206 2.375 16.1245 2.375C16.4284 2.375 16.7198 2.49572 16.9347 2.71061C17.1496 2.92549 17.2703 3.21694 17.2703 3.52083L16.8127 11.5417C16.8127 11.7983 17.0143 12 17.271 12C17.5276 12 17.7293 11.7983 17.7293 11.5417L18.6459 6.27083C18.6459 5.96694 18.7666 5.67549 18.9815 5.46061C19.1964 5.24572 19.4878 5.125 19.7917 5.125C20.0956 5.125 20.387 5.24572 20.6019 5.46061C20.8168 5.67549 20.9375 5.96694 20.9375 6.27083L19.558 15.6667Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7724
+ background-image: url('img/pan-active.svg');
7487
7725
  }
7488
7726
 
7489
7727
  #btnCompareZoom {
7490
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.332 5.33333L11.9961 2L8.66536 5.32817' stroke='%23222D44' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 15.0109L16.6684 17.3406L12.0053 22L7.33511 17.3333L5 15' stroke='%23222D44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 2H13V22H11V2Z' fill='%23222D44'/%3E%3C/svg%3E%0A");
7728
+ background-image: url('img/zoom.svg');
7491
7729
  }
7492
7730
 
7493
7731
  #btnCompareZoom:hover,
7494
7732
  #btnCompareZoom.active {
7495
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.332 5.33333L11.9961 2L8.66536 5.32817' stroke='%23326AD6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 15.0109L16.6684 17.3406L12.0053 22L7.33511 17.3333L5 15' stroke='%23326AD6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 2H13V22H11V2Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7733
+ background-image: url('img/zoom-active.svg');
7496
7734
  }
7497
7735
 
7498
7736
  #btnFitToView {
7499
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 1H7.5C7.77614 1 8 1.22386 8 1.5V1.5C8 1.77614 7.77614 2 7.5 2H3C2.44772 2 2 2.44772 2 3V7.5C2 7.77614 1.77614 8 1.5 8V8C1.22386 8 1 7.77614 1 7.5V2V2C1 1.44772 1.44772 1 2 1V1ZM1.5 16C1.22386 16 1 16.2239 1 16.5V22V22C1 22.5523 1.44772 23 2 23V23H7.5C7.77614 23 8 22.7761 8 22.5V22.5C8 22.2239 7.77614 22 7.5 22H3C2.44772 22 2 21.5523 2 21V16.5C2 16.2239 1.77614 16 1.5 16V16ZM22.5 16C22.2239 16 22 16.2239 22 16.5V21C22 21.5523 21.5523 22 21 22H16.5C16.2239 22 16 22.2239 16 22.5V22.5C16 22.7761 16.2239 23 16.5 23H22V23C22.5523 23 23 22.5523 23 22V22V16.5C23 16.2239 22.7761 16 22.5 16V16ZM22.5 8C22.7761 8 23 7.77614 23 7.5V2V2C23 1.44772 22.5523 1 22 1V1H16.5C16.2239 1 16 1.22386 16 1.5V1.5C16 1.77614 16.2239 2 16.5 2H21C21.5523 2 22 2.44772 22 3V7.5C22 7.77614 22.2239 8 22.5 8V8Z' fill='%23222D44'/%3E%3Cpath d='M7 9.56619C7 9.21493 7.1843 8.88942 7.4855 8.7087L11.4855 6.3087C11.8022 6.11869 12.1978 6.11869 12.5145 6.3087L16.3748 8.6249C16.6456 8.78733 16.6302 9.18468 16.3478 9.32575L12.5532 11.2209C12.2142 11.3902 12 11.7366 12 12.1155V17.2935C12 17.6044 11.6608 17.7965 11.3942 17.6365L7.4855 15.2913C7.1843 15.1106 7 14.7851 7 14.4338V12V9.56619Z' fill='%23222D44'/%3E%3Cpath d='M7.74275 9.13744L11.7428 6.73744C11.9011 6.64244 12.0989 6.64244 12.2572 6.73744L16.2572 9.13744C16.4079 9.22781 16.5 9.39056 16.5 9.56619V12V14.4338C16.5 14.6094 16.4079 14.7722 16.2572 14.8626L12.2572 17.2626C12.0989 17.3576 11.9011 17.3576 11.7428 17.2626L7.74275 14.8626C7.59215 14.7722 7.5 14.6094 7.5 14.4338V12V9.56619C7.5 9.39056 7.59215 9.22781 7.74275 9.13744Z' stroke='%23222D44'/%3E%3C/svg%3E%0A");
7737
+ background-image: url('img/fit-to-view.svg');
7500
7738
  }
7501
7739
 
7502
7740
  #btnFitToView:hover,
7503
7741
  #btnFitToView.active {
7504
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22 3C22 2.44772 21.5523 2 21 2H16.5C16.2239 2 16 1.77614 16 1.5V1.5C16 1.22386 16.2239 1 16.5 1H22V1C22.5523 1 23 1.44772 23 2V2V7.5C23 7.77614 22.7761 8 22.5 8V8C22.2239 8 22 7.77614 22 7.5V3ZM1.5 8C1.77614 8 2 7.77614 2 7.5V3C2 2.44772 2.44772 2 3 2H7.5C7.77614 2 8 1.77614 8 1.5V1.5C8 1.22386 7.77614 1 7.5 1H2V1C1.44772 1 1 1.44772 1 2V2V7.5C1 7.77614 1.22386 8 1.5 8V8ZM1 16.5C1 16.2239 1.22386 16 1.5 16V16C1.77614 16 2 16.2239 2 16.5V21C2 21.5523 2.44772 22 3 22H7.5C7.77614 22 8 22.2239 8 22.5V22.5C8 22.7761 7.77614 23 7.5 23H2V23C1.44772 23 1 22.5523 1 22V22V16.5ZM22 16.5C22 16.2239 22.2239 16 22.5 16V16C22.7761 16 23 16.2239 23 16.5V22V22C23 22.5523 22.5523 23 22 23V23H16.5C16.2239 23 16 22.7761 16 22.5V22.5C16 22.2239 16.2239 22 16.5 22H21C21.5523 22 22 21.5523 22 21V16.5Z' fill='%23326AD6'/%3E%3Cpath d='M7 9.56619C7 9.21493 7.1843 8.88942 7.4855 8.7087L11.4855 6.3087C11.8022 6.11869 12.1978 6.11869 12.5145 6.3087L16.3748 8.6249C16.6456 8.78733 16.6302 9.18468 16.3478 9.32575L12.5532 11.2209C12.2142 11.3902 12 11.7366 12 12.1155V17.2935C12 17.6044 11.6608 17.7965 11.3942 17.6365L7.4855 15.2913C7.1843 15.1106 7 14.7851 7 14.4338V12V9.56619Z' fill='%23326AD6'/%3E%3Cpath d='M7.74275 9.13744L11.7428 6.73744C11.9011 6.64244 12.0989 6.64244 12.2572 6.73744L16.2572 9.13744C16.4079 9.22781 16.5 9.39056 16.5 9.56619V12V14.4338C16.5 14.6094 16.4079 14.7722 16.2572 14.8626L12.2572 17.2626C12.0989 17.3576 11.9011 17.3576 11.7428 17.2626L7.74275 14.8626C7.59215 14.7722 7.5 14.6094 7.5 14.4338V12V9.56619C7.5 9.39056 7.59215 9.22781 7.74275 9.13744Z' stroke='%23326AD6'/%3E%3C/svg%3E%0A");
7742
+ background-image: url('img/fit-to-view-active.svg');
7505
7743
  }
7506
7744
 
7507
7745
  #btnCompareType.type-overlay {
7508
- background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2.00391' y='14' width='13.9982' height='14.0038' rx='2' fill='%23326AD6'/%3E%3Cpath d='M10.0078 7.99805C10.0078 6.89348 10.9032 5.99805 12.0078 5.99805H22.006C23.1106 5.99805 24.006 6.89348 24.006 7.99805V18.0018C24.006 19.1064 23.1106 20.0018 22.006 20.0018H17.0069L17.0089 15.0028C17.0094 13.8982 16.1143 13.0024 15.0098 13.002L10.0078 12.9999V7.99805Z' fill='%23326AD6'/%3E%3Cpath d='M27.6536 2.6C27.8076 2.33333 28.1925 2.33333 28.3464 2.6L31.1177 7.4C31.2717 7.66667 31.0792 8 30.7713 8H25.2287C24.9208 8 24.7283 7.66667 24.8823 7.4L27.6536 2.6Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7746
+ background-image: url('img/compare-overlay.svg');
7509
7747
  }
7510
7748
 
7511
7749
  #btnCompareType.type-side-by-side {
7512
- background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 24.9V9.1C12.5 7.6 11.86 7 10.27 7H5.23C3.64 7 3 7.6 3 9.1V24.9C3 26.4 3.64 27 5.23 27H10.27C11.86 27 12.5 26.4 12.5 24.9Z' fill='%23326AD6'/%3E%3Cpath d='M23 24.9V9.1C23 7.6 22.36 7 20.77 7H15.73C14.14 7 13.5 7.6 13.5 9.1V24.9C13.5 26.4 14.14 27 15.73 27H20.77C22.36 27 23 26.4 23 24.9Z' fill='%23326AD6'/%3E%3Cpath d='M26.6536 2.6C26.8076 2.33333 27.1925 2.33333 27.3464 2.6L30.1177 7.4C30.2717 7.66667 30.0792 8 29.7713 8H24.2287C23.9208 8 23.7283 7.66667 23.8823 7.4L26.6536 2.6Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7750
+ background-image: url('img/compare-side-by-side.svg');
7513
7751
  }
7514
7752
 
7515
7753
  #btnComparePanel {
7516
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='1' width='4' height='9' rx='1' fill='%23222D44'/%3E%3Crect x='10' y='1' width='4' height='9' rx='1' fill='%23222D44'/%3E%3Crect x='18' y='1' width='4' height='9' rx='1' fill='%23222D44'/%3E%3Crect x='2' y='12' width='20' height='3' rx='1' fill='%23222D44'/%3E%3Crect x='2' y='16' width='20' height='3' rx='1' fill='%23222D44'/%3E%3Crect x='2' y='20' width='20' height='3' rx='1' fill='%23222D44'/%3E%3C/svg%3E%0A");
7754
+ background-image: url('img/panel-visibility.svg');
7517
7755
  }
7518
7756
 
7519
7757
  #btnComparePanel:hover,
7520
7758
  #btnComparePanel.active {
7521
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='1' width='4' height='9' rx='1' fill='%23326AD6'/%3E%3Crect x='10' y='1' width='4' height='9' rx='1' fill='%23326AD6'/%3E%3Crect x='18' y='1' width='4' height='9' rx='1' fill='%23326AD6'/%3E%3Crect x='2' y='12' width='20' height='3' rx='1' fill='%23326AD6'/%3E%3Crect x='2' y='16' width='20' height='3' rx='1' fill='%23326AD6'/%3E%3Crect x='2' y='20' width='20' height='3' rx='1' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7759
+ background-image: url('img/panel-visibility-active.svg');
7522
7760
  }
7523
7761
 
7524
7762
  #btnCompareViewerExit {
7525
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.9375V4.5C3 3.67158 3.67155 3 4.5 3H19.5C20.3284 3 21 3.67158 21 4.5V19.5C21 20.3285 20.3284 21 19.5 21H4.5C3.67155 21 3 20.3285 3 19.5V17.3438' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 12H15' stroke='%23222D44' stroke-linecap='round'/%3E%3Cpath d='M12 15L15 12L12 9' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7763
+ background-image: url('img/close-compare-viewer.svg');
7526
7764
  }
7527
7765
 
7528
7766
  #btnCompareViewerExit:hover,
7529
7767
  #btnCompareViewerExit.active {
7530
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.9375V4.5C3 3.67158 3.67155 3 4.5 3H19.5C20.3284 3 21 3.67158 21 4.5V19.5C21 20.3285 20.3284 21 19.5 21H4.5C3.67155 21 3 20.3285 3 19.5V17.3438' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 12H15' stroke='%23326AD6' stroke-linecap='round'/%3E%3Cpath d='M12 15L15 12L12 9' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7768
+ background-image: url('img/close-compare-viewer-active.svg');
7531
7769
  }
7532
7770
 
7533
7771
  #btnCompareTypeSideBySide {
7534
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 19.9V4.1C11.5 2.6 10.86 2 9.27 2H4.23C2.64 2 2 2.6 2 4.1V19.9C2 21.4 2.64 22 4.23 22H9.27C10.86 22 11.5 21.4 11.5 19.9Z' fill='%23222D44'/%3E%3Cpath d='M22 19.9V4.1C22 2.6 21.36 2 19.77 2H14.73C13.14 2 12.5 2.6 12.5 4.1V19.9C12.5 21.4 13.14 22 14.73 22H19.77C21.36 22 22 21.4 22 19.9Z' fill='%23222D44'/%3E%3C/svg%3E%0A");
7772
+ background-image: url('img/side-by-side.svg');
7535
7773
  }
7536
7774
 
7537
7775
  #btnCompareTypeOverlay {
7538
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.00391' y='9' width='13.9982' height='14.0038' rx='2' fill='%23222D44'/%3E%3Cpath d='M9.00781 2.99805C9.00781 1.89348 9.90324 0.998047 11.0078 0.998047H21.006C22.1106 0.998047 23.006 1.89348 23.006 2.99805V13.0018C23.006 14.1064 22.1106 15.0018 21.006 15.0018H16.0069L16.0089 10.0028C16.0094 8.89824 15.1143 8.00244 14.0098 8.00199L9.00781 7.99994V2.99805Z' fill='%23222D44'/%3E%3C/svg%3E%0A");
7776
+ background-image: url('img/overlay.svg');
7539
7777
  }
7540
7778
 
7541
7779
  #btnCompareTypeSideBySide.active {
7542
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 19.9V4.1C11.5 2.6 10.86 2 9.27 2H4.23C2.64 2 2 2.6 2 4.1V19.9C2 21.4 2.64 22 4.23 22H9.27C10.86 22 11.5 21.4 11.5 19.9Z' fill='%23326AD6'/%3E%3Cpath d='M22 19.9V4.1C22 2.6 21.36 2 19.77 2H14.73C13.14 2 12.5 2.6 12.5 4.1V19.9C12.5 21.4 13.14 22 14.73 22H19.77C21.36 22 22 21.4 22 19.9Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7780
+ background-image: url('img/side-by-side-active.svg');
7543
7781
  }
7544
7782
 
7545
7783
  #btnCompareTypeOverlay.active {
7546
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.00391' y='9' width='13.9982' height='14.0038' rx='2' fill='%23326AD6'/%3E%3Cpath d='M9.00781 2.99805C9.00781 1.89348 9.90324 0.998047 11.0078 0.998047H21.006C22.1106 0.998047 23.006 1.89348 23.006 2.99805V13.0018C23.006 14.1064 22.1106 15.0018 21.006 15.0018H16.0069L16.0089 10.0028C16.0094 8.89824 15.1143 8.00244 14.0098 8.00199L9.00781 7.99994V2.99805Z' fill='%23326AD6'/%3E%3C/svg%3E%0A");
7784
+ background-image: url('img/overlay-active.svg');
7547
7785
  }
7548
7786
 
7549
7787
  #hideColors {
7550
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21.5C16.1421 21.5 18 19.1421 18 15C18 9 12 2.5 12 2.5C12 2.5 6 9 6 15C6 19.1421 7.85785 21.5 12 21.5Z' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7788
+ background-image: url('img/hide-colors.svg');
7551
7789
  background-position: center !important;
7552
7790
  background-repeat: no-repeat !important;
7553
7791
  }
7554
7792
 
7555
7793
  #hideColors.active {
7556
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21.5C16.1421 21.5 18 19.1421 18 15C18 9 12 2.5 12 2.5C12 2.5 6 9 6 15C6 19.1421 7.85785 21.5 12 21.5Z' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7794
+ background-image: url('img/hide-colors-active.svg');
7557
7795
  }
7558
7796
 
7559
7797
  #alignFinish {
7560
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99535 15.002L3.9969 14.0027L2 12.0043L4 10.0027L5 9.00195' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.0047 9L20.0031 9.99924L22 11.9977L20 13.9992L19 15' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12H22' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 5L13.9992 4L11.9977 2L9.99922 3.9969L9 4.99535' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 19.0047L14.0008 20.0031L12.0023 22L10.0008 20L9 19' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 2L12 22' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7798
+ background-image: url('img/finish-align.svg');
7561
7799
  background-position: center !important;
7562
7800
  background-repeat: no-repeat !important;
7563
7801
  }
7564
7802
 
7565
7803
  #alignFinish.active {
7566
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99535 15.002L3.9969 14.0027L2 12.0043L4 10.0027L5 9.00195' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.0047 9L20.0031 9.99924L22 11.9977L20 13.9992L19 15' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12H22' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 5L13.9992 4L11.9977 2L9.99922 3.9969L9 4.99535' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 19.0047L14.0008 20.0031L12.0023 22L10.0008 20L9 19' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 2L12 22' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
7804
+ background-image: url('img/finish-align-active.svg');
7567
7805
  }
7568
7806
 
7569
7807
  #documentPropertiesDialog {
@@ -7773,4 +8011,11 @@ dialog .separator {
7773
8011
  .measure-toolbar-btn.active {
7774
8012
  background-color: #DCEEFF;
7775
8013
  border-radius: 4px;
8014
+ }
8015
+
8016
+ .uk-input#measures2PointSize {
8017
+ border: 1px solid #C0CAD5;
8018
+ border-radius: 4px;
8019
+ height: 40px;
8020
+ width: 100%;
7776
8021
  }