@vitrosoftware/common-ui-ts 1.1.24 → 1.1.27

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 (47) hide show
  1. package/css/common.css +1 -0
  2. package/css/std/controls/action-handler/action-handler.css +4 -3
  3. package/css/std/controls/alert/alert.css +15 -10
  4. package/css/std/controls/command-menu/command-menu-dropdown-button.css +7 -2
  5. package/css/std/controls/dialog/dialog-button-close.css +4 -5
  6. package/css/std/controls/dialog/dialog-button.css +4 -0
  7. package/css/std/controls/dialog/dialog-content.css +9 -21
  8. package/css/std/controls/dialog/dialog-footer.css +6 -5
  9. package/css/std/controls/dialog/dialog-header.css +27 -3
  10. package/css/std/controls/dialog/dialog.css +3 -8
  11. package/css/std/controls/dropdown-button/dropdown-button.css +12 -7
  12. package/css/std/controls/lookup-picker/lookup-picker.css +1 -0
  13. package/css/std/controls/message-input/message-input.css +110 -0
  14. package/css/std/controls/pdf-viewer/pdf-viewer.css +369 -139
  15. package/css/std/controls/tab-group/tab-group.css +4 -0
  16. package/css/std/controls/table-view/treegrid.css +5 -4
  17. package/css/std/controls/tree-view/tree-view.css +21 -3
  18. package/dist/constants/Event.d.ts +2 -1
  19. package/dist/controls/ActionHandler/ActionHandlerConstants.d.ts +4 -3
  20. package/dist/controls/CommandMenu/CommandMenuDropdownButton.d.ts +1 -0
  21. package/dist/controls/CommandMenu/CommandMenuSubItem.d.ts +1 -0
  22. package/dist/controls/Dialog/Dialog.d.ts +16 -6
  23. package/dist/controls/Dialog/DialogButton.d.ts +2 -3
  24. package/dist/controls/Dialog/DialogComponent.d.ts +0 -1
  25. package/dist/controls/Dialog/DialogContent.d.ts +1 -0
  26. package/dist/controls/Dialog/DialogFooter.d.ts +5 -5
  27. package/dist/controls/Dialog/DialogHeader.d.ts +2 -0
  28. package/dist/controls/MessageInput/MessageInput.d.ts +14 -0
  29. package/dist/controls/PdfViewer/PdfViewerContext.d.ts +0 -1
  30. package/dist/controls/TabGroup/TabGroup.d.ts +1 -0
  31. package/dist/controls/TabGroup/TabGroupComponent.d.ts +1 -0
  32. package/dist/controls/TableView/TableViewConstants.d.ts +1 -0
  33. package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +1 -0
  34. package/dist/controls/TelerikUploader/TelerikUploaderSettings.d.ts +1 -0
  35. package/dist/controls/TreeView/JsTreeViewContextImpl.d.ts +7 -0
  36. package/dist/controls/TreeView/TreeView.d.ts +2 -0
  37. package/dist/controls/TreeView/TreeViewConfig.d.ts +12 -6
  38. package/dist/controls/TreeView/TreeViewConstants.d.ts +25 -2
  39. package/dist/controls/TreeView/TreeViewContext.d.ts +7 -0
  40. package/dist/index.css +259 -98
  41. package/dist/index.d.ts +4 -2
  42. package/dist/index.js +402 -154
  43. package/dist/index.js.map +1 -1
  44. package/dist/index.modern.js +402 -155
  45. package/dist/index.modern.js.map +1 -1
  46. package/package.json +4 -3
  47. package/src/controls/PdfViewer/js/pdf-viewer.js +213 -71
@@ -17,6 +17,10 @@ html[dir='ltr'] select, html[dir='ltr'] span, html[dir='ltr'] div, html[dir='ltr
17
17
  font-family: 'InterRegular' !important;
18
18
  }
19
19
 
20
+ #mainContainer {
21
+ background: #F7F9FC;
22
+ }
23
+
20
24
  #viewerContainer {
21
25
  margin-right: 4px;
22
26
  }
@@ -32,21 +36,22 @@ html[dir='ltr'] select, html[dir='ltr'] span, html[dir='ltr'] div, html[dir='ltr
32
36
  }
33
37
 
34
38
  #viewerContainer::-webkit-scrollbar-thumb {
35
- background: #BDBDBD;
39
+ background: #E4E6EC;
36
40
  border-radius: 4px;
37
41
  }
38
42
 
39
43
  #viewerContainer::-webkit-scrollbar-thumb:hover {
40
- background: #828282;
44
+ background: #E4E6EC;
41
45
  }
42
46
 
43
47
  #loadingBar .progress {
44
- background-color: #ff5b2d;
48
+ background-color: #3274E0;
45
49
  }
46
50
 
47
51
  #loadingBar {
48
- border-bottom: 1px solid #e0e0e0;
49
- background: #F5F6FA;
52
+ border-bottom: 1px solid #E4E6EC;
53
+ background: #FFF;
54
+ width: 100%;
50
55
  }
51
56
 
52
57
  #toolbarContainer, .findbar, .secondaryToolbar, .editorParamsToolbar {
@@ -60,8 +65,8 @@ html[dir='ltr'] select, html[dir='ltr'] span, html[dir='ltr'] div, html[dir='ltr
60
65
  }
61
66
 
62
67
  #toolbarContainer, .findbar, .secondaryToolbar, .editorParamsToolbar {
63
- box-shadow: none;
64
- border-bottom: 1px solid #e0e0e0;
68
+ box-shadow: none;
69
+ border-bottom: 1px solid #E4E6EC;
65
70
  }
66
71
 
67
72
  #sidebarContainer {
@@ -69,35 +74,72 @@ html[dir='ltr'] select, html[dir='ltr'] span, html[dir='ltr'] div, html[dir='ltr
69
74
  }
70
75
 
71
76
  #sidebarContent {
72
- background: #E0E0E0;
77
+ background: #E4E6EC;
73
78
  box-shadow: none;
74
- border-right: 1px solid #e0e0e0;
79
+ border-right: 1px solid #E4E6EC;
75
80
  }
76
81
 
77
82
  input#pageNumber {
78
- border-radius: 8px;
79
- border: 1px solid #e0e0e0;
83
+ border-radius: 4px;
84
+ margin: 0;
85
+ margin-top: 1px;
86
+ border: 1px solid #C0CAD5;
80
87
  }
81
88
 
82
89
  .horizontalToolbarSeparator {
83
- background: #e0e0e0;
90
+ background: #E4E6EC;
91
+ margin: 0;
84
92
  }
85
93
 
86
- .toolbarButton.toggled, .splitToolbarButton.toggled > .toolbarButton.toggled, .secondaryToolbarButton.toggled {
87
- background: #BDBDBD;
88
- color: #222d44;
94
+ .secondaryToolbarButton {
95
+ font-size: 14px !important;
96
+ height: 37px;
97
+ padding: 0;
98
+ padding-left: 44px !important;
99
+ padding-right: 8px;
100
+ }
101
+
102
+ .secondaryToolbarButton > span {
103
+ padding: 0 !important;
104
+ }
105
+
106
+ .secondaryToolbarButton:hover,
107
+ .secondaryToolbarButton:focus-visible {
108
+ background: #F3F8FF;
109
+ color: #222D44;
110
+ }
111
+
112
+ .toolbarButton.toggled,
113
+ .splitToolbarButton.toggled > .toolbarButton.toggled,
114
+ .secondaryToolbarButton.toggled {
115
+ background-color: #DCEEFF !important;
89
116
  }
90
117
 
91
118
  .toolbarButton.toggled::before, .secondaryToolbarButton.toggled::before {
92
119
  background: #4F4F4F;
93
120
  }
94
121
 
95
- .toolbarButton::before, .secondaryToolbarButton::before, .dropdownToolbarButton::after, .treeItemToggler::before {
96
- background: #4F4F4F;
122
+ .toolbarButton::before,
123
+ .secondaryToolbarButton::before,
124
+ .dropdownToolbarButton::after,
125
+ .treeItemToggler::before {
126
+ background: #4A556C;
97
127
  opacity: 1;
128
+ top: calc(50% - 8px);
129
+ }
130
+
131
+ .toolbarButton:hover,
132
+ .toolbarButton:focus-visible,
133
+ .splitToolbarButton > .toolbarButton:hover,
134
+ .splitToolbarButton > .toolbarButton:focus-visible,
135
+ .dropdownToolbarButton:hover {
136
+ background-color: #F3F8FF;
98
137
  }
99
138
 
100
- .toolbarButton:hover::before, .toolbarButton:focus-visible::before, .secondaryToolbarButton:hover::before, .secondaryToolbarButton:focus-visible::before {
139
+ .toolbarButton:hover::before,
140
+ .toolbarButton:focus-visible::before,
141
+ .secondaryToolbarButton:hover::before,
142
+ .secondaryToolbarButton:focus-visible::before {
101
143
  background: #4F4F4F;
102
144
  opacity: 1;
103
145
  }
@@ -117,16 +159,18 @@ input#pageNumber {
117
159
  }
118
160
 
119
161
  #thumbnailView::-webkit-scrollbar-thumb {
120
- background: #BDBDBD;
162
+ background: #E4E6EC;
121
163
  border-radius: 4px;
122
164
  }
123
165
 
124
166
  #thumbnailView::-webkit-scrollbar-thumb:hover {
125
- background: #828282;
167
+ background: #E4E6EC;
126
168
  }
127
169
 
170
+ a:focus > .thumbnail > .thumbnailSelectionRing,
171
+ .thumbnail:hover > .thumbnailSelectionRing,
128
172
  .thumbnail.selected > .thumbnailSelectionRing {
129
- background-color: #BDBDBD;
173
+ background-color: #8E98A3;
130
174
  }
131
175
 
132
176
  .dropdownToolbarButton > select {
@@ -134,43 +178,92 @@ input#pageNumber {
134
178
  }
135
179
 
136
180
  [dir="ltr"] .secondaryToolbar, [dir="ltr"] .editorParamsToolbar {
137
- box-shadow: 0 4px 16px rgba(0,0,0,.1);
138
- border-radius: 8px;
181
+ margin: 0;
182
+ padding: 0;
183
+ margin-top: 5px;
184
+ border-radius: 4px;
185
+ width: 261px;
186
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
187
+ }
188
+
189
+ #secondaryToolbarButtonContainer {
190
+ min-height: 26px;
191
+ max-height: calc(0 - 40px);
192
+ overflow-y: auto;
193
+ max-width: unset;
194
+ margin-bottom: 0;
139
195
  }
140
196
 
141
197
  [dir="ltr"] .doorHangerRight:after {
142
- right: 14px;
198
+ content: '';
199
+ border: none;
200
+ height: 11px;
201
+ width: 16px;
202
+ margin: 0;
203
+ display: block;
204
+ background-image: url("data:image/svg+xml,%3Csvg viewBox=%270 0 16 11%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M6.31554 1.65838L0.382812 11H15.6249L9.69214 1.65838C8.90651 0.421336 7.10117 0.421335 6.31554 1.65838Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
205
+ background-size: 100%;
143
206
  }
144
207
 
145
208
  [dir="ltr"] .doorHangerRight:before {
146
209
  display: none;
147
210
  }
148
211
 
212
+ .body__sidebar-content::-webkit-scrollbar {
213
+ width: 4px;
214
+ height: 4px;
215
+ }
216
+
217
+ .body__sidebar-content::-webkit-scrollbar-track {
218
+ background: transparent;
219
+ border-radius: 8px;
220
+ }
221
+
222
+ .body__sidebar-content::-webkit-scrollbar-thumb {
223
+ background: #E4E6EC;
224
+ border-radius: 4px;
225
+ }
226
+
227
+ .body__sidebar-content::-webkit-scrollbar-thumb:hover {
228
+ background: #E4E6EC;
229
+ }
230
+
149
231
  .dlg-overlay {
150
- background: rgba(34, 45, 68, .2);
232
+ background: #222D44;
233
+ opacity: 0.2;
151
234
  }
152
235
 
153
236
  .compare-dlg-wrap {
154
- font-family: 'GraphikRegular';
237
+ font-family: 'InterRegular';
155
238
  background: #fff;
156
- padding: 24px;
157
- border-radius: 8px;
239
+ border-radius: 4px;
158
240
  width: 600px;
159
241
  border: none;
160
242
  user-select: none;
161
243
  }
162
244
 
163
245
  .compare-dlg-header, .compare-panel_header {
164
- font-size: 18px;
246
+ font-size: 20px;
165
247
  line-height: 24px;
166
248
  font-weight: 500;
167
249
  background: transparent;
168
250
  border-bottom: none;
169
251
  padding: 0;
252
+ padding: 20px 16px;
253
+ border-bottom: 1px solid #E4E6EC;
170
254
  }
171
255
 
172
- .compare-panel_header {
173
- margin-bottom: 12px;
256
+ .compare-dlg-body {
257
+ padding: 12px 16px;
258
+ }
259
+
260
+ .compare-dlg_doc-a-wrap,
261
+ .compare-dlg_doc-b-wrap {
262
+ height: 175px;
263
+ }
264
+
265
+ .field-grp:has(.select.active) > label {
266
+ color: #3274E0;
174
267
  }
175
268
 
176
269
  .compare-dlg-footer {
@@ -178,6 +271,8 @@ input#pageNumber {
178
271
  padding: 0;
179
272
  display: flex;
180
273
  justify-content: flex-end;
274
+ padding: 16px;
275
+ border-top: 1px solid #E4E6EC;
181
276
  }
182
277
 
183
278
  .close {
@@ -186,50 +281,53 @@ input#pageNumber {
186
281
  }
187
282
 
188
283
  .compare-dlg-wrap .close {
189
- width: 32px;
190
- height: 32px;
191
- top: -24px;
192
- right: -72px;
284
+ width: 24px;
285
+ height: 24px;
286
+ top: 0;
287
+ right: -42px;
193
288
  }
194
289
 
195
290
  .close::before, .close::after {
196
291
  display: none;
197
292
  }
198
293
 
199
- .select {
294
+ .field-grp {
200
295
  position: relative;
296
+ padding: 0 !important;
297
+ margin-bottom: 22px;
201
298
  }
202
299
 
203
- .select:before {
204
- content: '';
300
+ .field-grp label {
301
+ color: #4A556C;
302
+ padding: 0 6px;
303
+ background: #fff;
304
+ width: fit-content;
205
305
  position: absolute;
206
- border: 2px solid #0097ff;
207
- border-radius: 10px;
208
- left: -5px;
209
- right: -5px;
210
- top: -5px;
211
- bottom: -5px;
212
- opacity: 0;
213
- visibility: hidden;
214
- transition: .1s;
306
+ top: -10px;
307
+ left: 10px;
308
+ z-index: 1000;
215
309
  }
216
310
 
217
- .select.active:before {
218
- opacity: .2;
219
- visibility: visible;
311
+ .select {
312
+ position: relative;
313
+ border: 1px solid #C0CAD5;
314
+ border-radius: 4px;
315
+ height: 40px;
316
+ background: #fff;
317
+ display: flex;
318
+ align-items: center;
220
319
  }
221
320
 
222
321
  .select > input {
223
- width: 100%;
224
- height: 32px;
225
- border-radius: 8px;
226
322
  border: none;
227
- background: #fff;
228
323
  cursor: pointer;
229
- position: relative;
230
- font-size: 10pt;
231
- padding: 0 12px 0 12px;
232
324
  box-sizing: border-box;
325
+ color: #222D44;
326
+ font-size: 14px;
327
+ line-height: 16px;
328
+ padding: 8px 16px;
329
+ height: 100%;
330
+ background: transparent;
233
331
  }
234
332
 
235
333
  .select > input:disabled {
@@ -240,21 +338,28 @@ input#pageNumber {
240
338
  .select::after {
241
339
  content: '';
242
340
  display: block;
243
- background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 12 8' style='enable-background:new 0 0 12 8;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:none;stroke:%23BDBDBD;stroke-width:1;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cpolyline class='st0' points='0.7,0.7 6,6.5 11.3,0.7 '/%3E%3C/svg%3E%0A");
244
- width: 12px;
245
- height: 12px;
341
+ 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");
342
+ width: 24px;
343
+ height: 24px;
246
344
  position: absolute;
247
- top: calc(50% - 5px);
248
- right: 12px;
345
+ top: calc(50% - 12px);
346
+ right: 16px;
249
347
  background-size: 100%;
250
348
  background-position: center;
251
349
  background-repeat: no-repeat;
252
- transition: all .3s ease;
253
350
  }
254
351
 
255
352
  .select.active::after {
256
353
  transform: rotate(-180deg);
257
- transition: all .3s ease;
354
+ 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");
355
+ }
356
+
357
+ .select.active {
358
+ border-color: #3274E0;
359
+ }
360
+
361
+ .select.active label {
362
+ color: #3274E0;
258
363
  }
259
364
 
260
365
  .select ul {
@@ -263,8 +368,8 @@ input#pageNumber {
263
368
  padding: 0;
264
369
  margin: 0;
265
370
  list-style: none;
266
- border-radius: 8px;
267
- font-size: 10pt;
371
+ border-radius: 4px;
372
+ font-size: 14px;
268
373
  max-height: 100px;
269
374
  overflow-y: auto;
270
375
  }
@@ -275,9 +380,9 @@ input#pageNumber {
275
380
  position: absolute;
276
381
  background: #fff;
277
382
  width: 100%;
278
- border-radius: 8px;
279
- box-shadow: 0 4px 16px rgba(0,0,0,.1);
280
- top: calc(100% + 6px);
383
+ border-radius: 4px;
384
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
385
+ top: calc(100% + 4px);
281
386
  left: 0;
282
387
  z-index: 10000;
283
388
  }
@@ -287,18 +392,19 @@ input#pageNumber {
287
392
  }
288
393
 
289
394
  .select ul > li {
290
- line-height: 24px;
291
- padding: 0 8px;
395
+ line-height: 16px;
396
+ padding: 8px 12px;
292
397
  cursor: pointer;
293
398
  }
294
399
 
295
400
  .select ul > li:hover {
296
- background: #F5F6FA;
401
+ background: #F3F8FF;
297
402
  }
298
403
 
299
404
  #toolbarViewerMiddle .select {
300
405
  min-width: 165px;
301
- margin: 2px 6px 0;
406
+ margin: 0 6px;
407
+ height: 30px;
302
408
  }
303
409
 
304
410
  #toolbarViewerMiddle .select > input:disabled {
@@ -329,71 +435,49 @@ input#pageNumber {
329
435
  }
330
436
 
331
437
  .select ul::-webkit-scrollbar-thumb {
332
- background: #e0e0e0;
438
+ background: #E4E6EC;
333
439
  border-radius: 2px;
334
440
  height: 20px;
335
441
  }
336
442
 
337
443
  .select ul::-webkit-scrollbar-thumb:hover {
338
- background: #BDBDBD;
444
+ background: #E4E6EC;
339
445
  }
340
446
 
341
447
  .compare-dlg-wrap .uk-button {
342
- font-family: 'GraphikRegular';
343
- font-size: 14px;
448
+ font-family: 'InterMedium';
344
449
  outline: none;
345
- height: 32px;
346
- font-weight: 500;
347
- border-radius: 8px;
450
+ font-size: 18px;
451
+ line-height: 27px;
348
452
  cursor: pointer;
349
- transition: all 0.3s ease 0s;
350
- position: relative;
351
- border-radius: 8px;
352
- padding: 0;
353
453
  background: #fff;
354
- color: #0097ff;
355
- border: 1px solid #0097ff;
356
- text-transform: none;
357
454
  display: flex;
358
455
  align-items: center;
359
- width: fit-content;
360
- min-width: 96px;
361
456
  justify-content: center;
362
- margin-left: 8px;
457
+ margin-left: 12px;
363
458
  margin-right: 0;
459
+ padding: 8px 34px;
460
+ border-radius: 4px;
461
+ border: none;
462
+ text-transform: none;
364
463
  }
365
464
 
465
+ .compare-dlg-wrap .uk-button:active,
466
+ .compare-dlg-wrap .uk-button:focus,
366
467
  .compare-dlg-wrap .uk-button:hover {
367
- -webkit-transition: background-color 0.3s ease;
368
- transition: background-color 0.3s ease;
369
- }
370
-
371
- .compare-dlg-wrap .uk-button-primary:active, .compare-dlg-wrap .uk-button-primary:focus, .compare-dlg-wrap .uk-button-primary:hover {
372
- background: rgba(0, 151, 255, .8);
373
- border-color: transparent;
374
- }
375
-
376
- .compare-dlg-wrap .uk-button:active:before {
377
- opacity: .2;
378
- visibility: visible;
468
+ background: #F3F8FF;
469
+ border: none;
379
470
  }
380
471
 
381
- .compare-dlg-wrap .uk-button:before {
382
- content: '';
383
- position: absolute;
384
- border: 2px solid #0097ff;
385
- border-radius: 10px;
386
- left: -5px;
387
- right: -5px;
388
- top: -5px;
389
- bottom: -5px;
390
- opacity: 0;
391
- visibility: hidden;
392
- transition: .1s;
472
+ .compare-dlg-wrap .uk-button-primary:active,
473
+ .compare-dlg-wrap .uk-button-primary:focus,
474
+ .compare-dlg-wrap .uk-button-primary:hover {
475
+ background: #3274E0;
476
+ border: none;
393
477
  }
394
478
 
395
479
  .compare-dlg-wrap .uk-button-primary {
396
- background: #0097ff;
480
+ background: #347FDE;
397
481
  color: #fff;
398
482
  }
399
483
 
@@ -402,14 +486,19 @@ input#pageNumber {
402
486
  }
403
487
 
404
488
  .compare-dlg-wrap .wrap-inner-bg {
405
- background: #F5F6FA;
406
- border-radius: 8px;
489
+ background: #fff;
407
490
  border: none;
491
+ padding: 0;
408
492
  }
409
493
 
410
-
411
494
  .compare-viewer-title {
412
- background: #222d44;
495
+ background: #4A556C;
496
+ padding: 0 16px;
497
+ color: #fff;
498
+ display: flex;
499
+ align-items: center;
500
+ font-weight: unset;
501
+ font-family: 'InterMedium';
413
502
  }
414
503
 
415
504
  .compare-viewer-title .close {
@@ -421,14 +510,13 @@ input#pageNumber {
421
510
  }
422
511
 
423
512
  .compare-ui-label {
424
- background-color: rgba(34, 45, 68,.75);
513
+ background-color: #4a556cbf;
425
514
  }
426
515
 
427
516
  .compare-panel {
428
- box-shadow: 0 0 16px rgba(0,0,0,.1);
429
- border-radius: 8px;
517
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
518
+ border-radius: 4px;
430
519
  border: none;
431
- padding: 24px;
432
520
  background: #fff;
433
521
  }
434
522
 
@@ -437,51 +525,189 @@ input#pageNumber {
437
525
  }
438
526
 
439
527
  .compare-panel_item-row.selected {
440
- border: 1px solid #E0E0E0;
528
+ border: 1px solid #fff;
529
+ background-color: #F3F8FF;
530
+ border-radius: 4px;
441
531
  }
442
532
 
443
533
  .compare-panel .close {
444
- width: 20px;
445
- height: 20px;
446
- top: 0;
447
- right: 0;
448
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' stroke-width='2px' stroke='%23e0e0e0' 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");
534
+ width: 24px;
535
+ height: 24px;
536
+ top: 20px;
537
+ right: 16px;
538
+ cursor: pointer;
539
+ 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");
540
+ }
541
+
542
+ .compare-panel_body {
543
+ padding: 12px 16px;
544
+ background: transparent;
449
545
  }
450
546
 
451
547
  .compare-panel_toolbar {
452
548
  padding: 0;
453
- margin-bottom: 18px;
549
+ margin-bottom: 12px;
454
550
  background-color: transparent;
455
551
  }
456
552
 
457
553
  .compare-toolbar-btn {
458
554
  margin: 0;
459
- margin-right: 8px;
555
+ margin-right: 12px;
460
556
  border: 1px solid #bdbdbd;
557
+ border-radius: 4px;
558
+ border: none;
559
+ }
560
+
561
+ .compare-toolbar-btn:last-child {
562
+ margin: 0 !important;
461
563
  }
462
564
 
463
565
  .compare-toolbar-btn.active {
464
- border: 1px solid #0097ff;
566
+ background-color: #DCEEFF !important;
567
+ }
568
+
569
+ .compare-toolbar-btn:not(.active) {
570
+ border: none;
571
+ border-radius: 4px;
572
+ }
573
+
574
+ #panelCompareType .compare-toolbar-btn {
575
+ margin-right: 0;
576
+ margin-bottom: 12px;
577
+ }
578
+
579
+ .compare-panel_doc-color {
580
+ border-radius: 4px;
581
+ padding: 8px 12px;
465
582
  }
466
583
 
467
584
  .compare-panel_doc-color.docA {
468
- border-left: 5px solid #ff5b2d;
585
+ border-left: 4px solid #ff5b2d;
469
586
  }
470
587
 
471
588
  .compare-panel_doc-color.docB {
472
- border-left: 5px solid #0097ff;
589
+ border-left: 4px solid #0097ff;
590
+ }
591
+
592
+ .compare-panel_doc-color .version,
593
+ .compare-panel_doc-color .upload-by,
594
+ .compare-panel_doc-color .upload-date {
595
+ font-size: 14px;
596
+ line-height: 21px;
597
+ color: #4A556C;
598
+ }
599
+
600
+ .compare-panel_doc-color .title {
601
+ font-family: 'InterSemiBold' !important;
602
+ font-size: 14px;
603
+ line-height: 21px;
604
+ padding: 0;
605
+ font-weight: unset;
473
606
  }
474
607
 
475
608
  .compare-viewer-toolbar .control-grp {
476
609
  background-color: #fff;
477
- border-radius: 8px;
478
- box-shadow: 0 0 16px rgba(0,0,0,.1);
610
+ border-radius: 4px;
611
+ padding: 4px;
612
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
479
613
  }
480
614
 
481
615
  #panelCompareType {
482
616
  background-color: #fff;
483
- border-radius: 8px;
484
- box-shadow: 0 0 16px rgba(0,0,0,.1);
617
+ border-radius: 4px;
618
+ padding: 4px;
619
+ top: -104px;
620
+ margin-left: -4px;
621
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
622
+ }
623
+
624
+ #btnComparePan {
625
+ 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");
626
+ }
627
+
628
+ #btnComparePan:hover,
629
+ #btnComparePan.active {
630
+ 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");
631
+ }
632
+
633
+ #btnCompareZoom {
634
+ 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");
635
+ }
636
+
637
+ #btnCompareZoom:hover,
638
+ #btnCompareZoom.active {
639
+ 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");
640
+ }
641
+
642
+ #btnFitToView {
643
+ 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");
644
+ }
645
+
646
+ #btnFitToView:hover,
647
+ #btnFitToView.active {
648
+ 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");
649
+ }
650
+
651
+ #btnCompareType.type-overlay {
652
+ 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");
653
+ }
654
+
655
+ #btnCompareType.type-side-by-side {
656
+ 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");
657
+ }
658
+
659
+ #btnComparePanel {
660
+ 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");
661
+ }
662
+
663
+ #btnComparePanel:hover,
664
+ #btnComparePanel.active {
665
+ 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");
666
+ }
667
+
668
+ #btnCompareViewerExit {
669
+ 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");
670
+ }
671
+
672
+ #btnCompareViewerExit:hover,
673
+ #btnCompareViewerExit.active {
674
+ 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");
675
+ }
676
+
677
+ #btnCompareTypeSideBySide {
678
+ 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");
679
+ }
680
+
681
+ #btnCompareTypeOverlay {
682
+ 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");
683
+ }
684
+
685
+ #btnCompareTypeSideBySide.active {
686
+ 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");
687
+ }
688
+
689
+ #btnCompareTypeOverlay.active {
690
+ 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");
691
+ }
692
+
693
+ #hideColors {
694
+ 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");
695
+ background-position: center !important;
696
+ background-repeat: no-repeat !important;
697
+ }
698
+
699
+ #hideColors.active {
700
+ 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");
701
+ }
702
+
703
+ #alignFinish {
704
+ 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");
705
+ background-position: center !important;
706
+ background-repeat: no-repeat !important;
707
+ }
708
+
709
+ #alignFinish.active {
710
+ 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");
485
711
  }
486
712
 
487
713
  #documentPropertiesDialog {
@@ -513,7 +739,7 @@ dialog .separator {
513
739
  }
514
740
 
515
741
  .dialogButton {
516
- font-family: 'GraphikRegular';
742
+ font-family: 'InterMedium';
517
743
  font-size: 14px;
518
744
  outline: none;
519
745
  height: 32px;
@@ -634,6 +860,10 @@ dialog .separator {
634
860
  border-radius: 4px;
635
861
  }
636
862
 
863
+ .body__sidebar, .body__sidebar * {
864
+ box-sizing: border-box !important;
865
+ }
866
+
637
867
  .body__sidebar {
638
868
  padding: 32px 0 16px 0;
639
869
  width: 408px;