@vitrosoftware/common-ui-ts 1.1.169 → 1.1.170

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 (35) hide show
  1. package/css/std/controls/bim-viewer/annotation.css +7 -2
  2. package/css/std/controls/bim-viewer/bim-viewer-index.css +27 -3
  3. package/css/std/controls/bim-viewer/bim-viewer.css +12 -1
  4. package/css/std/controls/bim-viewer/img/hide-annotation-description.svg +19 -0
  5. package/css/std/controls/bim-viewer/img/show-annotation-description.svg +18 -0
  6. package/css/std/controls/bim-viewer/toolbar.css +8 -0
  7. package/css/std/controls/criterion/criterion.css +0 -1
  8. package/css/std/controls/criterion-field-iterator/criterion-field-iterator.css +8 -9
  9. package/css/std/controls/heading/heading.css +0 -7
  10. package/css/std/controls/search/search.css +12 -7
  11. package/css/std/controls/table-view/table-view.css +0 -7
  12. package/css/std/controls/tree-view/tree-view.css +3 -13
  13. package/css/std/controls/video-viewer/img/video-viewer-close.svg +3 -0
  14. package/css/std/controls/video-viewer/video-viewer.css +56 -0
  15. package/dist/index.css +79 -45
  16. package/dist/index.js +223 -36
  17. package/dist/index.js.map +1 -1
  18. package/dist/src/controls/CheckboxReorderableList/CheckboxReorderableList.d.ts +2 -5
  19. package/dist/src/controls/CheckboxReorderableList/CheckboxReorderableListItem.d.ts +6 -0
  20. package/dist/src/controls/CriterionFieldIterator/CriterionFieldIterator.d.ts +1 -0
  21. package/dist/src/controls/EditableList/EditableList.d.ts +3 -9
  22. package/dist/src/controls/EditableList/EditableListItem.d.ts +6 -0
  23. package/dist/src/controls/TreeView/TreeView.d.ts +2 -0
  24. package/dist/src/controls/VideoViewer/TelerikMediaPlayerConstants.d.ts +8 -0
  25. package/dist/src/controls/VideoViewer/TelerikMediaPlayerContext.d.ts +19 -0
  26. package/dist/src/controls/VideoViewer/TelerikMediaPlayerContextImpl.d.ts +50 -0
  27. package/dist/src/controls/VideoViewer/TelerikMediaPlayerSettings.d.ts +13 -0
  28. package/dist/src/controls/VideoViewer/VideoItem.d.ts +5 -0
  29. package/dist/src/controls/VideoViewer/VideoViewer.d.ts +18 -0
  30. package/dist/src/controls/VideoViewer/VideoViewerRef.d.ts +4 -0
  31. package/dist/src/index.d.ts +8 -2
  32. package/package.json +1 -1
  33. package/src/controls/BimViewer/js/bim-viewer.js +125 -10
  34. package/src/controls/DxfViewer/js/dxf-viewer.js +88 -15
  35. package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
@@ -68,6 +68,7 @@
68
68
 
69
69
  .annotation-desc {
70
70
  font: normal 14px arial, serif;
71
+ overflow-wrap: break-word !important;
71
72
  }
72
73
 
73
74
  .hide-annotations .annotation-label,
@@ -80,6 +81,10 @@ body:not(.hide-annotations) .annotation-marker {
80
81
  visibility: visible !important;
81
82
  }
82
83
 
83
- body:not(.hide-annotations) .annotation-label {
84
- visibility: visible !important;
84
+ [class^='_component-loader_vitro-component-loader'] {
85
+ z-index: 90000 !important;
86
+ }
87
+
88
+ [class^='_component-loader_vitro-component-loader'] {
89
+ z-index: 99000010 !important;
85
90
  }
@@ -13269,6 +13269,10 @@ select {
13269
13269
  content: url('img/hide-annotation.svg');
13270
13270
  }
13271
13271
 
13272
+ .toolbarButton#btnToggleNotesDescription::before {
13273
+ content: url('img/hide-annotation-description.svg');
13274
+ }
13275
+
13272
13276
  .toolbarButton#btnToggleSidebarNotes::before {
13273
13277
  content: url('img/sidebar-notes-toggle.svg');
13274
13278
  }
@@ -13293,6 +13297,10 @@ select {
13293
13297
  content: url('img/show-annotation.svg');
13294
13298
  }
13295
13299
 
13300
+ .toolbarButton#btnToggleNotesDescription.show::before {
13301
+ content: url('img/show-annotation-description.svg');
13302
+ }
13303
+
13296
13304
  .toolbarButton#btnCreateAngleMeasurements::before {
13297
13305
  content: url('img/angle-measurements-create.svg');
13298
13306
  }
@@ -13690,6 +13698,7 @@ div.sidebar-note-id:hover {
13690
13698
 
13691
13699
  .annotation-desc {
13692
13700
  font: normal 14px arial, serif;
13701
+ overflow-wrap: break-word !important;
13693
13702
  }
13694
13703
 
13695
13704
  .hide-annotations .annotation-label,
@@ -13702,8 +13711,12 @@ body:not(.hide-annotations) .annotation-marker {
13702
13711
  visibility: visible !important;
13703
13712
  }
13704
13713
 
13705
- body:not(.hide-annotations) .annotation-label {
13706
- visibility: visible !important;
13714
+ [class^='_component-loader_vitro-component-loader'] {
13715
+ z-index: 90000 !important;
13716
+ }
13717
+
13718
+ [class^='_component-loader_vitro-component-loader'] {
13719
+ z-index: 99000010 !important;
13707
13720
  }
13708
13721
 
13709
13722
  #dlgNoteTxt {
@@ -14149,7 +14162,8 @@ a.ui-button:active,
14149
14162
  }
14150
14163
 
14151
14164
  .vitro-bim-viewer-issue-detail {
14152
- position: absolute;
14165
+ position: fixed;
14166
+ top: 50px;
14153
14167
  bottom: 0px;
14154
14168
  right: 0px;
14155
14169
  width: 410px;
@@ -14567,4 +14581,14 @@ a.ui-button:active,
14567
14581
  background-image: url("img/all-windows.svg");
14568
14582
  background-position: center center;
14569
14583
  margin: 0 !important;
14584
+ }
14585
+
14586
+ #propInspector,
14587
+ #storeyViewsSidebar,
14588
+ #treeViewContainerWrap {
14589
+ height: calc(100% - 50px);
14590
+ }
14591
+
14592
+ .prop-inspector-inner-wrap {
14593
+ height: 100%;
14570
14594
  }
@@ -1,5 +1,6 @@
1
1
  .vitro-bim-viewer-issue-detail {
2
- position: absolute;
2
+ position: fixed;
3
+ top: 50px;
3
4
  bottom: 0px;
4
5
  right: 0px;
5
6
  width: 410px;
@@ -417,4 +418,14 @@
417
418
  background-image: url("img/all-windows.svg");
418
419
  background-position: center center;
419
420
  margin: 0 !important;
421
+ }
422
+
423
+ #propInspector,
424
+ #storeyViewsSidebar,
425
+ #treeViewContainerWrap {
426
+ height: calc(100% - 50px);
427
+ }
428
+
429
+ .prop-inspector-inner-wrap {
430
+ height: 100%;
420
431
  }
@@ -0,0 +1,19 @@
1
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2264_794)">
3
+ <mask id="mask0_2264_794" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="26" height="26">
4
+ <path d="M25.334 1.5H0.333984V26.5H25.334V1.5Z" fill="white"/>
5
+ </mask>
6
+ <g mask="url(#mask0_2264_794)">
7
+ <path d="M24.8864 9.5C24.8864 9.5 24.8864 4.79331 24.8864 3.73213C24.8864 2.67094 24.1693 1.94641 23.1007 1.94641C22.0321 1.94641 2.56501 1.94641 2.56501 1.94641C1.57879 1.94641 0.779297 2.7459 0.779297 3.73213V18.9107C0.779297 19.8969 1.57879 20.6964 2.56501 20.6964H11.334L15.834 26" stroke="white"/>
8
+ <path d="M3.9043 5.51782L21.4768 5.51782M3.9043 9.08925H17.9054M3.9043 12.6607H14.334M3.9043 16.2321H10.7626" stroke="white"/>
9
+ </g>
10
+ <path d="M17.1988 17.8494C17.1551 17.7315 17.1551 17.6019 17.1988 17.484C17.625 16.4508 18.3483 15.5673 19.2771 14.9457C20.2059 14.324 21.2984 13.9922 22.416 13.9922C23.5337 13.9922 24.6261 14.324 25.555 14.9457C26.4838 15.5673 27.2071 16.4508 27.6332 17.484C27.677 17.6019 27.677 17.7315 27.6332 17.8494C27.2071 18.8826 26.4838 19.766 25.555 20.3877C24.6261 21.0093 23.5337 21.3412 22.416 21.3412C21.2984 21.3412 20.2059 21.0093 19.2771 20.3877C18.3483 19.766 17.625 18.8826 17.1988 17.8494Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M22.4167 19.2415C23.2865 19.2415 23.9916 18.5364 23.9916 17.6666C23.9916 16.7968 23.2865 16.0917 22.4167 16.0917C21.5469 16.0917 20.8418 16.7968 20.8418 17.6666C20.8418 18.5364 21.5469 19.2415 22.4167 19.2415Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path d="M27.334 12.5L17.334 23.5" stroke="white" stroke-linecap="square"/>
13
+ </g>
14
+ <defs>
15
+ <clipPath id="clip0_2264_794">
16
+ <rect width="28" height="28" fill="white"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2263_777)">
3
+ <mask id="mask0_2263_777" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="1" width="26" height="26">
4
+ <path d="M25.334 1.5H0.333984V26.5H25.334V1.5Z" fill="white"/>
5
+ </mask>
6
+ <g mask="url(#mask0_2263_777)">
7
+ <path d="M24.8864 9.5C24.8864 9.5 24.8864 4.79697 24.8864 3.73579C24.8864 2.6746 24.1693 1.95007 23.1007 1.95007C22.0321 1.95007 2.56501 1.95007 2.56501 1.95007C1.57879 1.95007 0.779297 2.74956 0.779297 3.73579V18.9144C0.779297 19.9006 1.57879 20.7001 2.56501 20.7001H11.334L15.834 26.0037" stroke="white"/>
8
+ <path d="M3.9043 5.51794L21.4768 5.51794M3.9043 9.08937H17.9054M3.9043 12.6608H14.334M3.9043 16.2322H10.7626" stroke="white"/>
9
+ </g>
10
+ <path d="M17.1988 17.8494C17.1551 17.7315 17.1551 17.6019 17.1988 17.484C17.625 16.4508 18.3483 15.5673 19.2771 14.9457C20.2059 14.324 21.2984 13.9922 22.416 13.9922C23.5337 13.9922 24.6261 14.324 25.555 14.9457C26.4838 15.5673 27.2071 16.4508 27.6332 17.484C27.677 17.6019 27.677 17.7315 27.6332 17.8494C27.2071 18.8826 26.4838 19.766 25.555 20.3877C24.6261 21.0093 23.5337 21.3412 22.416 21.3412C21.2984 21.3412 20.2059 21.0093 19.2771 20.3877C18.3483 19.766 17.625 18.8826 17.1988 17.8494Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M22.4167 19.2415C23.2865 19.2415 23.9916 18.5364 23.9916 17.6666C23.9916 16.7968 23.2865 16.0917 22.4167 16.0917C21.5469 16.0917 20.8418 16.7968 20.8418 17.6666C20.8418 18.5364 21.5469 19.2415 22.4167 19.2415Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
12
+ </g>
13
+ <defs>
14
+ <clipPath id="clip0_2263_777">
15
+ <rect width="28" height="28" fill="white"/>
16
+ </clipPath>
17
+ </defs>
18
+ </svg>
@@ -88,6 +88,10 @@ select {
88
88
  content: url('img/hide-annotation.svg');
89
89
  }
90
90
 
91
+ .toolbarButton#btnToggleNotesDescription::before {
92
+ content: url('img/hide-annotation-description.svg');
93
+ }
94
+
91
95
  .toolbarButton#btnToggleSidebarNotes::before {
92
96
  content: url('img/sidebar-notes-toggle.svg');
93
97
  }
@@ -112,6 +116,10 @@ select {
112
116
  content: url('img/show-annotation.svg');
113
117
  }
114
118
 
119
+ .toolbarButton#btnToggleNotesDescription.show::before {
120
+ content: url('img/show-annotation-description.svg');
121
+ }
122
+
115
123
  .toolbarButton#btnCreateAngleMeasurements::before {
116
124
  content: url('img/angle-measurements-create.svg');
117
125
  }
@@ -235,7 +235,6 @@
235
235
  flex-direction: column;
236
236
  align-items: flex-start;
237
237
  gap: 22px;
238
- margin-top: 12px;
239
238
  }
240
239
 
241
240
  .vitro-criterion-container-mobile .vitro-control {
@@ -1,4 +1,3 @@
1
-
2
1
  .vitro-field-iterator {
3
2
  grid-gap: 28px 16px;
4
3
  }
@@ -27,12 +26,12 @@
27
26
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
28
27
  }
29
28
 
30
- .vitro-add-field-dialog[placement='right-start'] {
31
- margin-top: -4px;
32
- margin-left: 14px;
33
- }
29
+ .vitro-add-field-dialog[placement='right-start'] {
30
+ margin-top: -4px;
31
+ margin-left: 14px;
32
+ }
34
33
 
35
- .vitro-add-field-dialog :global(.ps) > div:first-child {
36
- max-height: 204px;
37
- max-width: 242px;
38
- }
34
+ .vitro-add-field-dialog :global(.ps) > div:first-child {
35
+ max-height: 204px;
36
+ max-width: 242px;
37
+ }
@@ -46,11 +46,4 @@
46
46
  font-weight: unset;
47
47
  margin-top: 0;
48
48
  margin-bottom: 0;
49
- }
50
-
51
- :global(.vitro-border-bottom) {
52
- border-bottom: 1px solid #E4E6EC;
53
- margin-right: 12px;
54
- margin-bottom: 0;
55
- padding-bottom: 12px;
56
49
  }
@@ -178,20 +178,17 @@
178
178
  margin: 18px 0 0 4px;
179
179
  }
180
180
 
181
- .vitro-settings-dialog-mobile .vitro-filter :global(.ps) {
181
+ .vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) {
182
182
  max-height: unset;
183
+ height: unset;
183
184
  padding-right: 15px;
184
185
  }
185
186
 
186
- .vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div:first-child {
187
+ .vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) > div:first-child {
187
188
  padding-top: 0;
188
189
  }
189
190
 
190
- .vitro-settings-dialog-mobile .vitro-filter :global(.vitro-block:last-child) > div > div {
191
- margin-top: 12px;
192
- }
193
-
194
- .vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div > div {
191
+ .vitro-settings-dialog-mobile .vitro-filter-container :global(.ps) > div > div {
195
192
  padding: 0;
196
193
  }
197
194
 
@@ -205,4 +202,12 @@
205
202
 
206
203
  .vitro-add-field-dialog[placement='top-start'] {
207
204
  margin-bottom: 7px;
205
+ }
206
+
207
+ .vitro-settings-dialog-mobile .vitro-filter {
208
+ gap: 12px;
209
+ }
210
+
211
+ .vitro-settings-dialog-mobile .vitro-filter-container :global(.vitro-block) > div > div {
212
+ margin-top: 0;
208
213
  }
@@ -17,13 +17,6 @@
17
17
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-hidden-container.css');
18
18
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
19
19
 
20
- :global(#TableView) {
21
- height: auto;
22
- flex: 1 1 auto;
23
- overflow: hidden;
24
- position: relative;
25
- }
26
-
27
20
  .vitro-table-view {
28
21
  height: 100%;
29
22
  width: 100%;
@@ -1,16 +1,11 @@
1
1
  @import url('@vitrosoftware/common-ui-ts/css/third-party/jstree/style.min.css');
2
2
 
3
- :global(#TreeView) {
4
- height: calc(100% - 36px);
5
- flex: 1 1;
6
- }
7
-
8
- :global(#TreeView) :global(.ps) {
3
+ .vitro-scrollbar:global(.ps--active-y) {
9
4
  padding-right: 12px;
10
- padding-top: 8px;
11
5
  }
12
6
 
13
- :global(.ps) :global(.jstree-container-ul) {
7
+ .vitro-scrollbar:global(.ps--active-y) :global(.jstree-container-ul),
8
+ .vitro-scrollbar:global(.ps--active-x) :global(.jstree-container-ul) {
14
9
  padding-bottom: 12px;
15
10
  }
16
11
 
@@ -21,11 +16,6 @@
21
16
  .vitro-tree-view :global(.jstree-default) :global(.jstree-node) {
22
17
  margin-left: 20px !important;
23
18
  }
24
-
25
- .vitro-tree-view {
26
- scrollbar-color: #e0e0e0 #fff;
27
- scrollbar-width: thin;
28
- }
29
19
 
30
20
  .vitro-tree-view :global(.jstree-anchor) {
31
21
  line-height: 32px;
@@ -0,0 +1,3 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.01044 22.9918L16.0011 16.0012L22.9918 22.9918M22.9918 9.0105L15.9998 16.0012L9.01044 9.0105" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,56 @@
1
+ .vitro-video-viewer {
2
+ position: fixed;
3
+ top: 0;
4
+ left: 0;
5
+ width: 100%;
6
+ height: 100%;
7
+ z-index: 200;
8
+ background-color: #212529;
9
+ }
10
+
11
+ .vitro-header {
12
+ width: 100%;
13
+ position: absolute;
14
+ left: 0;
15
+ top: 0;
16
+ z-index: 1;
17
+ padding: 20px;
18
+ display: flex;
19
+ justify-content: flex-end;
20
+ grid-gap: 12px;
21
+ }
22
+
23
+ .vitro-body {
24
+ height: calc(100% - 72px);
25
+ margin-top: 72px;
26
+ display: flex;
27
+ }
28
+
29
+ .vitro-button-close {
30
+ width: 32px;
31
+ height: 32px;
32
+ background: transparent;
33
+ outline: none;
34
+ border: none;
35
+ background-repeat: no-repeat;
36
+ background-size: 100%;
37
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/video-viewer/img/video-viewer-close.svg');
38
+ }
39
+
40
+ .vitro-player {
41
+ max-width: 100%;
42
+ max-height: 100%;
43
+ background-color: #212529;
44
+ margin-left: auto;
45
+ margin-right: auto;
46
+ }
47
+
48
+ .vitro-player video {
49
+ background-color: #212529;
50
+ }
51
+
52
+ @media (max-width: 800px) {
53
+ .vitro-video-viewer {
54
+ z-index: 301;
55
+ }
56
+ }
package/dist/index.css CHANGED
@@ -416,17 +416,12 @@ html, body {
416
416
 
417
417
  @import url('@vitrosoftware/common-ui-ts/css/third-party/jstree/style.min.css');
418
418
 
419
- #TreeView {
420
- height: calc(100% - 36px);
421
- flex: 1 1;
422
- }
423
-
424
- #TreeView .ps {
419
+ ._tree-view_vitro-scrollbar_1hvFNoY.ps--active-y {
425
420
  padding-right: 12px;
426
- padding-top: 8px;
427
421
  }
428
422
 
429
- .ps .jstree-container-ul {
423
+ ._tree-view_vitro-scrollbar_1hvFNoY.ps--active-y .jstree-container-ul,
424
+ ._tree-view_vitro-scrollbar_1hvFNoY.ps--active-x .jstree-container-ul {
430
425
  padding-bottom: 12px;
431
426
  }
432
427
 
@@ -437,11 +432,6 @@ html, body {
437
432
  ._tree-view_vitro-tree-view_3oii-CW .jstree-default .jstree-node {
438
433
  margin-left: 20px !important;
439
434
  }
440
-
441
- ._tree-view_vitro-tree-view_3oii-CW {
442
- scrollbar-color: #e0e0e0 #fff;
443
- scrollbar-width: thin;
444
- }
445
435
 
446
436
  ._tree-view_vitro-tree-view_3oii-CW .jstree-anchor {
447
437
  line-height: 32px;
@@ -711,13 +701,6 @@ html, body {
711
701
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-hidden-container.css');
712
702
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
713
703
 
714
- #TableView {
715
- height: auto;
716
- flex: 1 1 auto;
717
- overflow: hidden;
718
- position: relative;
719
- }
720
-
721
704
  ._table-view_vitro-table-view_1tTs32D {
722
705
  height: 100%;
723
706
  width: 100%;
@@ -1482,13 +1465,6 @@ html, body {
1482
1465
  font-weight: unset;
1483
1466
  margin-top: 0;
1484
1467
  margin-bottom: 0;
1485
- }
1486
-
1487
- .vitro-border-bottom {
1488
- border-bottom: 1px solid #E4E6EC;
1489
- margin-right: 12px;
1490
- margin-bottom: 0;
1491
- padding-bottom: 12px;
1492
1468
  }
1493
1469
  ._dialog-header_vitro-dialog-header_2W3GraU {
1494
1470
  padding: 20px;
@@ -6633,7 +6609,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6633
6609
  flex-direction: column;
6634
6610
  align-items: flex-start;
6635
6611
  gap: 22px;
6636
- margin-top: 12px;
6637
6612
  }
6638
6613
 
6639
6614
  ._criterion_vitro-criterion-container-mobile_1yxaJHi ._criterion_vitro-control_2JLaybj {
@@ -6794,7 +6769,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6794
6769
  ._editable-field-iterator_vitro-field-iterator_myx5yu3 {
6795
6770
  grid-gap: 28px 16px;
6796
6771
  }
6797
-
6798
6772
  ._criterion-field-iterator_vitro-field-iterator_24abkh9 {
6799
6773
  grid-gap: 28px 16px;
6800
6774
  }
@@ -6823,16 +6797,15 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
6823
6797
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
6824
6798
  }
6825
6799
 
6826
- ._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE[placement='right-start'] {
6827
- margin-top: -4px;
6828
- margin-left: 14px;
6829
- }
6800
+ ._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE[placement='right-start'] {
6801
+ margin-top: -4px;
6802
+ margin-left: 14px;
6803
+ }
6830
6804
 
6831
- ._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE .ps > div:first-child {
6832
- max-height: 204px;
6833
- max-width: 242px;
6834
- }
6835
-
6805
+ ._criterion-field-iterator_vitro-add-field-dialog_3QlfaQE .ps > div:first-child {
6806
+ max-height: 204px;
6807
+ max-width: 242px;
6808
+ }
6836
6809
  ._search-input_vitro-search-input_3M9i4Gi {
6837
6810
  height: 32px;
6838
6811
  border-radius: 4px;
@@ -7148,20 +7121,17 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
7148
7121
  margin: 18px 0 0 4px;
7149
7122
  }
7150
7123
 
7151
- ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps {
7124
+ ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps {
7152
7125
  max-height: unset;
7126
+ height: unset;
7153
7127
  padding-right: 15px;
7154
7128
  }
7155
7129
 
7156
- ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps > div:first-child {
7130
+ ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps > div:first-child {
7157
7131
  padding-top: 0;
7158
7132
  }
7159
7133
 
7160
- ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .vitro-block:last-child > div > div {
7161
- margin-top: 12px;
7162
- }
7163
-
7164
- ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps > div > div {
7134
+ ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .ps > div > div {
7165
7135
  padding: 0;
7166
7136
  }
7167
7137
 
@@ -7175,6 +7145,14 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
7175
7145
 
7176
7146
  ._search_vitro-add-field-dialog_3gC92SF[placement='top-start'] {
7177
7147
  margin-bottom: 7px;
7148
+ }
7149
+
7150
+ ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS {
7151
+ gap: 12px;
7152
+ }
7153
+
7154
+ ._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI .vitro-block > div > div {
7155
+ margin-top: 0;
7178
7156
  }
7179
7157
  .splitter {
7180
7158
  height: 100% !important;
@@ -8704,4 +8682,60 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
8704
8682
 
8705
8683
  ._file-picker_vitro-delete-button_29YhyRG {
8706
8684
  background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/file-picker/img/cancel-red.svg');
8685
+ }
8686
+ ._video-viewer_vitro-video-viewer_1KHO5IM {
8687
+ position: fixed;
8688
+ top: 0;
8689
+ left: 0;
8690
+ width: 100%;
8691
+ height: 100%;
8692
+ z-index: 200;
8693
+ background-color: #212529;
8694
+ }
8695
+
8696
+ ._video-viewer_vitro-header_hwAjLDd {
8697
+ width: 100%;
8698
+ position: absolute;
8699
+ left: 0;
8700
+ top: 0;
8701
+ z-index: 1;
8702
+ padding: 20px;
8703
+ display: flex;
8704
+ justify-content: flex-end;
8705
+ grid-gap: 12px;
8706
+ }
8707
+
8708
+ ._video-viewer_vitro-body_124aVK2 {
8709
+ height: calc(100% - 72px);
8710
+ margin-top: 72px;
8711
+ display: flex;
8712
+ }
8713
+
8714
+ ._video-viewer_vitro-button-close_TB-QCiO {
8715
+ width: 32px;
8716
+ height: 32px;
8717
+ background: transparent;
8718
+ outline: none;
8719
+ border: none;
8720
+ background-repeat: no-repeat;
8721
+ background-size: 100%;
8722
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/video-viewer/img/video-viewer-close.svg');
8723
+ }
8724
+
8725
+ ._video-viewer_vitro-player_2JJVj_u {
8726
+ max-width: 100%;
8727
+ max-height: 100%;
8728
+ background-color: #212529;
8729
+ margin-left: auto;
8730
+ margin-right: auto;
8731
+ }
8732
+
8733
+ ._video-viewer_vitro-player_2JJVj_u video {
8734
+ background-color: #212529;
8735
+ }
8736
+
8737
+ @media (max-width: 800px) {
8738
+ ._video-viewer_vitro-video-viewer_1KHO5IM {
8739
+ z-index: 301;
8740
+ }
8707
8741
  }