@vitrosoftware/common-ui-ts 1.1.134 → 1.1.135
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/result-dialog.css +2 -3
- package/css/std/controls/component-loader/component-loader.css +13 -0
- package/dist/index.css +16 -3
- package/dist/index.js +522 -518
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/DxfViewer/js/dxf-viewer.js +14 -14
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.vitro-result-dialog {
|
|
2
2
|
z-index: 1001;
|
|
3
|
-
position:
|
|
3
|
+
position: relative;
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
justify-content: space-between;
|
|
@@ -8,12 +8,11 @@
|
|
|
8
8
|
height: auto;
|
|
9
9
|
max-height: 74%;
|
|
10
10
|
width: 400px;
|
|
11
|
-
top: 56px;
|
|
12
|
-
right: 16px;
|
|
13
11
|
overflow: hidden;
|
|
14
12
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
|
|
15
13
|
border-radius: 4px;
|
|
16
14
|
background: #fff;
|
|
15
|
+
margin: 0 16px 1px auto;
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
.vitro-result-dialog.vitro-progress {
|
package/dist/index.css
CHANGED
|
@@ -1254,6 +1254,20 @@ html, body {
|
|
|
1254
1254
|
bottom: 12px;
|
|
1255
1255
|
}
|
|
1256
1256
|
}
|
|
1257
|
+
._component-loader_vitro-component-loader_3J3a2or {
|
|
1258
|
+
position: fixed;
|
|
1259
|
+
width: 100%;
|
|
1260
|
+
z-index: 300;
|
|
1261
|
+
top: 0;
|
|
1262
|
+
left: 0;
|
|
1263
|
+
padding-top: 56px;
|
|
1264
|
+
pointer-events: none;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
._component-loader_vitro-component-loader_3J3a2or * {
|
|
1268
|
+
pointer-events: auto;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1257
1271
|
._tooltip_vitro-tooltip_JvGPShz {
|
|
1258
1272
|
display: none !important;
|
|
1259
1273
|
opacity: 1 !important;
|
|
@@ -1893,7 +1907,7 @@ html, body {
|
|
|
1893
1907
|
}
|
|
1894
1908
|
._result-dialog_vitro-result-dialog_kqxXHts {
|
|
1895
1909
|
z-index: 1001;
|
|
1896
|
-
position:
|
|
1910
|
+
position: relative;
|
|
1897
1911
|
display: flex;
|
|
1898
1912
|
flex-direction: column;
|
|
1899
1913
|
justify-content: space-between;
|
|
@@ -1901,12 +1915,11 @@ html, body {
|
|
|
1901
1915
|
height: auto;
|
|
1902
1916
|
max-height: 74%;
|
|
1903
1917
|
width: 400px;
|
|
1904
|
-
top: 56px;
|
|
1905
|
-
right: 16px;
|
|
1906
1918
|
overflow: hidden;
|
|
1907
1919
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
|
|
1908
1920
|
border-radius: 4px;
|
|
1909
1921
|
background: #fff;
|
|
1922
|
+
margin: 0 16px 1px auto;
|
|
1910
1923
|
}
|
|
1911
1924
|
|
|
1912
1925
|
._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-progress_3WaZ52V {
|