@vitrosoftware/common-ui-ts 1.1.112 → 1.1.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/std/controls/action-handler/action-result-list.css +34 -0
- package/css/std/controls/action-handler/confirm-dialog.css +1 -0
- package/css/std/controls/action-handler/result-dialog.css +20 -0
- package/css/std/controls/checkbox/checkbox.css +1 -0
- package/css/std/controls/criterion/criterion.css +67 -33
- package/css/std/controls/dialog/dialog-footer.css +1 -1
- package/css/std/controls/image-button/image-button.css +6 -2
- package/css/std/controls/list/list.css +10 -0
- package/css/std/controls/pdf-viewer/compare.css +24 -24
- package/css/std/controls/pdf-viewer/custom.css +2 -2
- package/css/std/controls/pdf-viewer/form.css +78 -1
- package/css/std/controls/pdf-viewer/img/cancel-white.svg +10 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer.svg +5 -0
- package/css/std/controls/pdf-viewer/img/collapse-bottom.svg +5 -0
- package/css/std/controls/pdf-viewer/img/collapse-up-blue.svg +5 -0
- package/css/std/controls/pdf-viewer/img/compare-dlg-separator.svg +1 -0
- package/css/std/controls/pdf-viewer/img/compare-overlay.svg +1 -0
- package/css/std/controls/pdf-viewer/img/compare-side-by-side.svg +5 -0
- package/css/std/controls/pdf-viewer/img/finish-align-active.svg +8 -0
- package/css/std/controls/pdf-viewer/img/finish-align.svg +8 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view.svg +5 -0
- package/css/std/controls/pdf-viewer/img/hide-colors-active.svg +1 -0
- package/css/std/controls/pdf-viewer/img/hide-colors.svg +3 -0
- package/css/std/controls/pdf-viewer/img/overlay-active.svg +4 -0
- package/css/std/controls/pdf-viewer/img/overlay.svg +4 -0
- package/css/std/controls/pdf-viewer/img/pan-active.svg +3 -0
- package/css/std/controls/pdf-viewer/img/pan.svg +3 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility-active.svg +8 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility.svg +8 -0
- package/css/std/controls/pdf-viewer/img/side-by-side-active.svg +4 -0
- package/css/std/controls/pdf-viewer/img/side-by-side.svg +4 -0
- package/css/std/controls/pdf-viewer/img/zoom-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/zoom.svg +5 -0
- package/css/std/controls/pdf-viewer/measure.css +138 -7
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +309 -64
- package/css/std/controls/pdf-viewer/pdf-viewer.css +66 -30
- package/css/std/controls/search/checkbox-list.css +8 -15
- package/css/std/controls/search/search.css +113 -22
- package/css/std/controls/search-input/img/search-blue.svg +3 -0
- package/css/std/controls/search-input/search-input.css +16 -35
- package/css/std/controls/table-view/treegrid.css +113 -1
- package/css/std/controls/uploader/uploader.css +17 -0
- package/dist/index.css +294 -111
- package/dist/index.js +393 -377
- package/dist/index.js.map +1 -1
- package/dist/src/controls/Button/Button.d.ts +2 -2
- package/dist/src/controls/Criterion/Criterion.d.ts +1 -0
- package/dist/src/controls/Dialog/Dialog.d.ts +1 -0
- package/dist/src/controls/Dialog/DialogFooter.d.ts +3 -2
- package/dist/src/controls/Label/Label.d.ts +2 -2
- package/dist/src/controls/List/List.d.ts +10 -0
- package/dist/src/controls/Search/CheckboxList.d.ts +2 -2
- package/dist/src/controls/Search/Filter.d.ts +1 -0
- package/dist/src/controls/Search/Search.d.ts +2 -1
- package/dist/src/controls/SearchInput/SearchInput.d.ts +1 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +17 -0
- package/dist/src/controls/TelerikUploader/TelerikUploader.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1171 -238
|
@@ -271,6 +271,11 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
271
271
|
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 12px 34px 0 rgba(0, 0, 0, 0.19);
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
+
.measures-dlg-wrap {
|
|
275
|
+
display: flex;
|
|
276
|
+
flex-direction: column;
|
|
277
|
+
}
|
|
278
|
+
|
|
274
279
|
.compare-dlg-wrap {
|
|
275
280
|
width: 600px;
|
|
276
281
|
}
|
|
@@ -313,13 +318,25 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
313
318
|
border-radius: 0 0 4px 4px;
|
|
314
319
|
}
|
|
315
320
|
|
|
321
|
+
.measures-dlg-footer {
|
|
322
|
+
margin-top: auto;
|
|
323
|
+
flex-direction: column;
|
|
324
|
+
}
|
|
325
|
+
|
|
316
326
|
.close {
|
|
317
327
|
opacity: 1;
|
|
318
|
-
background-image: url(
|
|
328
|
+
background-image: url('img/cancel-white.svg');
|
|
319
329
|
}
|
|
320
330
|
|
|
321
|
-
.
|
|
322
|
-
|
|
331
|
+
.measures-dlg-header .close {
|
|
332
|
+
right: 20px;
|
|
333
|
+
top: 24px;
|
|
334
|
+
height: 24px;
|
|
335
|
+
width: 24px;
|
|
336
|
+
background-image: url('img/cancel-dark-grey.svg');
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.compare-dlg-wrap .close {
|
|
323
340
|
width: 30px;
|
|
324
341
|
height: 30px;
|
|
325
342
|
top: 0;
|
|
@@ -337,8 +354,8 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
337
354
|
margin-bottom: 22px;
|
|
338
355
|
}
|
|
339
356
|
|
|
340
|
-
.field-grp label,
|
|
341
|
-
.uk-margin label {
|
|
357
|
+
.compare-dlg-body .field-grp label,
|
|
358
|
+
.measures-settings-controls .uk-margin label {
|
|
342
359
|
color: #4A556C;
|
|
343
360
|
padding: 0 6px;
|
|
344
361
|
background: #fff;
|
|
@@ -387,7 +404,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
387
404
|
|
|
388
405
|
.select > span {
|
|
389
406
|
display: block;
|
|
390
|
-
background-image: url(
|
|
407
|
+
background-image: url('img/collapse-bottom.svg');
|
|
391
408
|
width: 24px;
|
|
392
409
|
height: 24px;
|
|
393
410
|
position: absolute;
|
|
@@ -400,8 +417,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
400
417
|
}
|
|
401
418
|
|
|
402
419
|
.select.active > span {
|
|
403
|
-
|
|
404
|
-
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");
|
|
420
|
+
background-image: url('img/collapse-up-blue.svg');
|
|
405
421
|
}
|
|
406
422
|
|
|
407
423
|
.select.active {
|
|
@@ -570,6 +586,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
570
586
|
height: 20px;
|
|
571
587
|
width: 20px;
|
|
572
588
|
top: calc(50% - 10px);
|
|
589
|
+
background-size: 100%;
|
|
573
590
|
z-index: 1000;
|
|
574
591
|
opacity: 1;
|
|
575
592
|
}
|
|
@@ -601,7 +618,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
601
618
|
top: 20px;
|
|
602
619
|
right: 16px;
|
|
603
620
|
cursor: pointer;
|
|
604
|
-
background-image: url(
|
|
621
|
+
background-image: url('img/cancel-dark-grey.svg');
|
|
605
622
|
}
|
|
606
623
|
|
|
607
624
|
.compare-panel_body {
|
|
@@ -615,6 +632,18 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
615
632
|
background-color: transparent;
|
|
616
633
|
}
|
|
617
634
|
|
|
635
|
+
.compare-layer-visibility {
|
|
636
|
+
background-repeat: no-repeat;
|
|
637
|
+
background-position: center center;
|
|
638
|
+
background-image: url('img/layer-unvisible.svg');
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.compare-layer-visibility.active {
|
|
642
|
+
background-repeat: no-repeat;
|
|
643
|
+
background-position: center center;
|
|
644
|
+
background-image: url('img/layer-visible.svg');
|
|
645
|
+
}
|
|
646
|
+
|
|
618
647
|
.compare-toolbar-btn {
|
|
619
648
|
margin: 0;
|
|
620
649
|
margin-right: 12px;
|
|
@@ -687,96 +716,96 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
687
716
|
}
|
|
688
717
|
|
|
689
718
|
.compare-dlg_doc-sep {
|
|
690
|
-
background-image: url(
|
|
719
|
+
background-image: url('img/compare-dlg-separator.svg');
|
|
691
720
|
}
|
|
692
721
|
|
|
693
722
|
#btnComparePan {
|
|
694
|
-
background-image: url(
|
|
723
|
+
background-image: url('img/pan.svg');
|
|
695
724
|
}
|
|
696
725
|
|
|
697
726
|
#btnComparePan:hover,
|
|
698
727
|
#btnComparePan.active {
|
|
699
|
-
background-image: url(
|
|
728
|
+
background-image: url('img/pan-active.svg');
|
|
700
729
|
}
|
|
701
730
|
|
|
702
731
|
#btnCompareZoom {
|
|
703
|
-
background-image: url(
|
|
732
|
+
background-image: url('img/zoom.svg');
|
|
704
733
|
}
|
|
705
734
|
|
|
706
735
|
#btnCompareZoom:hover,
|
|
707
736
|
#btnCompareZoom.active {
|
|
708
|
-
background-image: url(
|
|
737
|
+
background-image: url('img/zoom-active.svg');
|
|
709
738
|
}
|
|
710
739
|
|
|
711
740
|
#btnFitToView {
|
|
712
|
-
background-image: url(
|
|
741
|
+
background-image: url('img/fit-to-view.svg');
|
|
713
742
|
}
|
|
714
743
|
|
|
715
744
|
#btnFitToView:hover,
|
|
716
745
|
#btnFitToView.active {
|
|
717
|
-
background-image: url(
|
|
746
|
+
background-image: url('img/fit-to-view-active.svg');
|
|
718
747
|
}
|
|
719
748
|
|
|
720
749
|
#btnCompareType.type-overlay {
|
|
721
|
-
background-image: url(
|
|
750
|
+
background-image: url('img/compare-overlay.svg');
|
|
722
751
|
}
|
|
723
752
|
|
|
724
753
|
#btnCompareType.type-side-by-side {
|
|
725
|
-
background-image: url(
|
|
754
|
+
background-image: url('img/compare-side-by-side.svg');
|
|
726
755
|
}
|
|
727
756
|
|
|
728
757
|
#btnComparePanel {
|
|
729
|
-
background-image: url(
|
|
758
|
+
background-image: url('img/panel-visibility.svg');
|
|
730
759
|
}
|
|
731
760
|
|
|
732
761
|
#btnComparePanel:hover,
|
|
733
762
|
#btnComparePanel.active {
|
|
734
|
-
background-image: url(
|
|
763
|
+
background-image: url('img/panel-visibility-active.svg');
|
|
735
764
|
}
|
|
736
765
|
|
|
737
766
|
#btnCompareViewerExit {
|
|
738
|
-
background-image: url(
|
|
767
|
+
background-image: url('img/close-compare-viewer.svg');
|
|
739
768
|
}
|
|
740
769
|
|
|
741
770
|
#btnCompareViewerExit:hover,
|
|
742
771
|
#btnCompareViewerExit.active {
|
|
743
|
-
background-image: url(
|
|
772
|
+
background-image: url('img/close-compare-viewer-active.svg');
|
|
744
773
|
}
|
|
745
774
|
|
|
746
775
|
#btnCompareTypeSideBySide {
|
|
747
|
-
background-image: url(
|
|
776
|
+
background-image: url('img/side-by-side.svg');
|
|
748
777
|
}
|
|
749
778
|
|
|
750
779
|
#btnCompareTypeOverlay {
|
|
751
|
-
background-image: url(
|
|
780
|
+
background-image: url('img/overlay.svg');
|
|
752
781
|
}
|
|
753
782
|
|
|
754
783
|
#btnCompareTypeSideBySide.active {
|
|
755
|
-
background-image: url(
|
|
784
|
+
background-image: url('img/side-by-side-active.svg');
|
|
756
785
|
}
|
|
757
786
|
|
|
758
787
|
#btnCompareTypeOverlay.active {
|
|
759
|
-
background-image: url(
|
|
788
|
+
background-image: url('img/overlay-active.svg');
|
|
760
789
|
}
|
|
761
790
|
|
|
762
791
|
#hideColors {
|
|
763
|
-
background-image: url(
|
|
792
|
+
background-image: url('img/hide-colors.svg');
|
|
764
793
|
background-position: center !important;
|
|
765
794
|
background-repeat: no-repeat !important;
|
|
766
795
|
}
|
|
767
796
|
|
|
768
797
|
#hideColors.active {
|
|
769
|
-
background-image: url(
|
|
798
|
+
background-image: url('img/hide-colors-active.svg');
|
|
770
799
|
}
|
|
771
800
|
|
|
772
801
|
#alignFinish {
|
|
773
|
-
background-image: url(
|
|
802
|
+
background-image: url('img/finish-align.svg');
|
|
774
803
|
background-position: center !important;
|
|
775
804
|
background-repeat: no-repeat !important;
|
|
776
805
|
}
|
|
777
806
|
|
|
778
807
|
#alignFinish.active {
|
|
779
|
-
background-image: url(
|
|
808
|
+
background-image: url('img/finish-align-active.svg');
|
|
780
809
|
}
|
|
781
810
|
|
|
782
811
|
#documentPropertiesDialog {
|
|
@@ -986,4 +1015,11 @@ dialog .separator {
|
|
|
986
1015
|
.measure-toolbar-btn.active {
|
|
987
1016
|
background-color: #DCEEFF;
|
|
988
1017
|
border-radius: 4px;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.uk-input#measures2PointSize {
|
|
1021
|
+
border: 1px solid #C0CAD5;
|
|
1022
|
+
border-radius: 4px;
|
|
1023
|
+
height: 40px;
|
|
1024
|
+
width: 100%;
|
|
989
1025
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
.vitro-checkbox-list {
|
|
2
2
|
border-radius: 4px;
|
|
3
3
|
background: #fff;
|
|
4
|
-
max-width:
|
|
4
|
+
max-width: 252px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-search-value-list > div:first-child {
|
|
8
|
+
padding: 12px 12px 8px 12px;
|
|
5
9
|
}
|
|
6
10
|
|
|
7
11
|
.vitro-checkbox-list :global(.ps) > div:first-child {
|
|
@@ -10,19 +14,8 @@
|
|
|
10
14
|
|
|
11
15
|
.vitro-checkbox-list .vitro-checkbox {
|
|
12
16
|
margin-bottom: 4px;
|
|
13
|
-
height: 24px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.vitro-checkbox-list .vitro-checkbox input {
|
|
17
|
-
width: 16px;
|
|
18
|
-
height: 16px;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
.vitro-checkbox:last-child
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.vitro-checkbox-list span {
|
|
27
|
-
display: block;
|
|
28
|
-
}
|
|
19
|
+
.vitro-checkbox:last-child {
|
|
20
|
+
padding-bottom: 8px;
|
|
21
|
+
}
|
|
@@ -17,27 +17,42 @@
|
|
|
17
17
|
top: 36px;
|
|
18
18
|
right: 0;
|
|
19
19
|
z-index: 2;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vitro-filter-container {
|
|
20
23
|
padding: 24px 0 16px 12px;
|
|
21
24
|
display: flex;
|
|
22
25
|
flex-direction: column;
|
|
26
|
+
align-self: stretch;
|
|
27
|
+
width: 502px;
|
|
23
28
|
}
|
|
24
29
|
|
|
25
30
|
.vitro-filter {
|
|
26
|
-
|
|
31
|
+
overflow: hidden;
|
|
27
32
|
}
|
|
28
33
|
|
|
29
|
-
.vitro-
|
|
30
|
-
max-height:
|
|
34
|
+
.vitro-filter :global(.ps) {
|
|
35
|
+
max-height: 458px;
|
|
31
36
|
}
|
|
32
37
|
|
|
33
|
-
.vitro-
|
|
38
|
+
.vitro-filter :global(.ps.ps--active-y) {
|
|
34
39
|
padding-right: 14px;
|
|
35
40
|
}
|
|
36
41
|
|
|
42
|
+
.vitro-filter :global(.ps) > div:first-child {
|
|
43
|
+
padding-top: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.vitro-filter :global(.vitro-block:last-child) > div > div {
|
|
47
|
+
margin-bottom: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.vitro-filter :global(.vitro-block:nth-child(2)) {
|
|
51
|
+
margin-top: 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
37
54
|
.vitro-add-field {
|
|
38
|
-
|
|
39
|
-
margin-bottom: 16px;
|
|
40
|
-
margin-top: 18px;
|
|
55
|
+
margin: 18px 0 16px 66px;
|
|
41
56
|
}
|
|
42
57
|
|
|
43
58
|
.vitro-add-field-button,
|
|
@@ -46,38 +61,45 @@
|
|
|
46
61
|
font-family: 'InterRegular' !important;
|
|
47
62
|
background: #fff !important;
|
|
48
63
|
color: #326AD6 !important;
|
|
49
|
-
margin-left: 66px;
|
|
50
64
|
padding: 0 !important;
|
|
51
65
|
min-width: unset !important;
|
|
52
66
|
height: 16px !important;
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
line-height: 16px;
|
|
53
69
|
}
|
|
54
70
|
|
|
55
71
|
.vitro-add-field-dialog {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
top: 32px;
|
|
59
|
-
left: 0;
|
|
72
|
+
z-index: 10001;
|
|
73
|
+
overflow: hidden;
|
|
60
74
|
border-radius: 4px;
|
|
61
75
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
62
76
|
}
|
|
63
77
|
|
|
78
|
+
.vitro-add-field-dialog[placement='right-start'] {
|
|
79
|
+
margin-top: -4px;
|
|
80
|
+
margin-left: 14px;
|
|
81
|
+
}
|
|
82
|
+
|
|
64
83
|
.vitro-add-field-dialog :global(.ps) > div:first-child {
|
|
65
84
|
max-height: 204px;
|
|
85
|
+
max-width: 242px;
|
|
66
86
|
}
|
|
67
87
|
|
|
68
|
-
.vitro-
|
|
69
|
-
|
|
70
|
-
grid-gap: 12px;
|
|
71
|
-
justify-content: flex-end;
|
|
88
|
+
.vitro-button-group {
|
|
89
|
+
gap: 12px;
|
|
72
90
|
padding: 0 24px;
|
|
73
91
|
margin-top: auto;
|
|
74
92
|
}
|
|
75
93
|
|
|
94
|
+
.vitro-button,
|
|
95
|
+
.vitro-button-cancel {
|
|
96
|
+
padding: 8px 16px;
|
|
97
|
+
font-family: 'InterRegular' !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
76
100
|
.vitro-button-cancel {
|
|
77
101
|
background: #fff !important;
|
|
78
102
|
color: #222D44 !important;
|
|
79
|
-
font-family: 'InterRegular' !important;
|
|
80
|
-
border: 1px solid #E4E6EC !important;
|
|
81
103
|
}
|
|
82
104
|
|
|
83
105
|
.vitro-button-cancel:hover,
|
|
@@ -107,8 +129,77 @@
|
|
|
107
129
|
background-color: #DCEEFF;
|
|
108
130
|
}
|
|
109
131
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
132
|
+
.vitro-search-mobile {
|
|
133
|
+
position: relative;
|
|
134
|
+
align-self: baseline;
|
|
135
|
+
margin-left: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.vitro-settings-dialog-mobile {
|
|
139
|
+
height: 100%;
|
|
140
|
+
width: 100%;
|
|
141
|
+
max-width: unset !important;
|
|
142
|
+
border: none !important;
|
|
143
|
+
border-radius: 0 !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.vitro-settings-dialog-mobile .vitro-filter-container {
|
|
147
|
+
width: 100%;
|
|
148
|
+
position: relative;
|
|
149
|
+
overflow: hidden;
|
|
150
|
+
flex: 1 1;
|
|
151
|
+
padding: 0 0 0 15px;
|
|
114
152
|
}
|
|
153
|
+
|
|
154
|
+
.vitro-settings-dialog-header {
|
|
155
|
+
padding: 20px 15px 15px 15px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.vitro-settings-dialog-footer {
|
|
159
|
+
border: none;
|
|
160
|
+
background-color: #fff;
|
|
161
|
+
height: unset;
|
|
162
|
+
padding: 28px 15px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.vitro-settings-dialog-footer button {
|
|
166
|
+
height: 32px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.vitro-settings-dialog-header h1 {
|
|
170
|
+
font-size: 18px !important;
|
|
171
|
+
line-height: 150% !important;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.vitro-settings-dialog-mobile .vitro-add-field {
|
|
175
|
+
margin: 18px 0 0 4px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) {
|
|
179
|
+
max-height: unset;
|
|
180
|
+
padding-right: 15px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div:first-child {
|
|
184
|
+
padding-top: 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.vitro-block:last-child) > div > div {
|
|
188
|
+
margin-top: 12px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div > div {
|
|
192
|
+
padding: 0;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.vitro-settings-dialog-mobile .vitro-scrollbar > div > div > :global(.vitro-block):first-child > div > div {
|
|
196
|
+
margin: 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.vitro-add-field-dialog[placement='bottom-start'] {
|
|
200
|
+
margin-top: 7px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.vitro-add-field-dialog[placement='top-start'] {
|
|
204
|
+
margin-bottom: 7px;
|
|
205
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M20.1303 20.8499C20.596 21.313 21.3149 20.5982 20.8491 20.1451L17.0525 16.3597C18.3843 14.8944 19.1205 12.9889 19.1179 11.0138C19.1179 6.59414 15.5035 3 11.0589 3C6.61438 3 3 6.59414 3 11.0138C3 15.4335 6.61438 19.0276 11.0589 19.0276C13.0636 19.0276 14.9163 18.2927 16.3337 17.0745L20.1303 20.8499ZM4.01142 11.0138C4.01142 7.14785 7.18032 4.00676 11.0579 4.00676C14.9457 4.00676 18.1044 7.14785 18.1044 11.0138C18.1044 14.8798 14.9457 18.0209 11.0579 18.0209C7.18032 18.0209 4.01142 14.8798 4.01142 11.0138Z" fill="#326AD6"/>
|
|
3
|
+
</svg>
|
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
border-radius: 4px;
|
|
4
4
|
border: 1px solid #C0CAD5;
|
|
5
5
|
padding: 4px 8px;
|
|
6
|
-
display: flex;
|
|
7
|
-
align-items: center;
|
|
8
6
|
}
|
|
9
7
|
|
|
10
8
|
.vitro-search-input:global(.vitro-active) {
|
|
@@ -33,16 +31,9 @@
|
|
|
33
31
|
overflow: hidden;
|
|
34
32
|
}
|
|
35
33
|
|
|
36
|
-
.vitro-search-input :global(.vitro-button-search)
|
|
37
|
-
.vitro-search-input :global(.vitro-button-search):hover {
|
|
34
|
+
.vitro-search-input :global(.vitro-button-search) {
|
|
38
35
|
width: 24px;
|
|
39
36
|
height: 24px;
|
|
40
|
-
border: none;
|
|
41
|
-
outline: none;
|
|
42
|
-
flex-shrink: 0;
|
|
43
|
-
background-color: transparent;
|
|
44
|
-
background-size: 100%;
|
|
45
|
-
background-position: center;
|
|
46
37
|
margin-right: 8px;
|
|
47
38
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
48
39
|
}
|
|
@@ -53,19 +44,10 @@
|
|
|
53
44
|
background-color: #fff;
|
|
54
45
|
}
|
|
55
46
|
|
|
56
|
-
.vitro-button-cancel
|
|
57
|
-
.vitro-button-cancel:hover {
|
|
47
|
+
.vitro-button-cancel {
|
|
58
48
|
width: 24px;
|
|
59
49
|
height: 24px;
|
|
60
|
-
flex-shrink: 0;
|
|
61
|
-
border: none;
|
|
62
|
-
background-size: 100%;
|
|
63
|
-
background-position: center;
|
|
64
50
|
margin-left: 8px;
|
|
65
|
-
background-color: transparent;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.vitro-button-cancel {
|
|
69
51
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-black.svg');
|
|
70
52
|
}
|
|
71
53
|
|
|
@@ -92,21 +74,20 @@
|
|
|
92
74
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-dark-grey.svg');
|
|
93
75
|
}
|
|
94
76
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
padding: 0;
|
|
100
|
-
}
|
|
77
|
+
.vitro-search-input-mobile {
|
|
78
|
+
width: 32px;
|
|
79
|
+
height: 32px;
|
|
80
|
+
}
|
|
101
81
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
82
|
+
.vitro-search-input-mobile :global(.vitro-button-search) {
|
|
83
|
+
width: 32px;
|
|
84
|
+
height: 32px;
|
|
85
|
+
border-radius: 4px;
|
|
86
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
87
|
+
}
|
|
108
88
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
89
|
+
.vitro-search-input-mobile:global(.vitro-active) :global(.vitro-button-search) {
|
|
90
|
+
background-color: #DCEEFF;
|
|
91
|
+
background-size: 24px;
|
|
92
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search-blue.svg');
|
|
112
93
|
}
|