@vitrosoftware/common-ui-ts 1.1.113 → 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/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 +1 -1
package/dist/index.css
CHANGED
|
@@ -1180,6 +1180,23 @@ html, body {
|
|
|
1180
1180
|
.vitro-file-icon {
|
|
1181
1181
|
width: 24px;
|
|
1182
1182
|
height: 24px;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
@media (max-width: 800px) {
|
|
1186
|
+
._uploader_vitro-uploader_237vX7T {
|
|
1187
|
+
width: unset;
|
|
1188
|
+
height: unset;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
._uploader_vitro-uploader_237vX7T.vitro-upload-active,
|
|
1192
|
+
._uploader_vitro-upload-container_2ASGHSS {
|
|
1193
|
+
max-width: 100%;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
._uploader_vitro-uploader_237vX7T.vitro-upload-active {
|
|
1197
|
+
right: 0;
|
|
1198
|
+
bottom: 12px;
|
|
1199
|
+
}
|
|
1183
1200
|
}
|
|
1184
1201
|
._tooltip_vitro-tooltip_JvGPShz {
|
|
1185
1202
|
display: none !important;
|
|
@@ -1239,17 +1256,21 @@ html, body {
|
|
|
1239
1256
|
display: none;
|
|
1240
1257
|
}
|
|
1241
1258
|
|
|
1259
|
+
._image-button_vitro-image-button_34pBVmE {
|
|
1260
|
+
width: 20px;
|
|
1261
|
+
height: 20px;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1242
1264
|
._image-button_vitro-image-button_34pBVmE,
|
|
1243
1265
|
._image-button_vitro-image-button_34pBVmE:hover,
|
|
1244
1266
|
._image-button_vitro-image-button_34pBVmE:active {
|
|
1245
|
-
width: 20px;
|
|
1246
|
-
height: 20px;
|
|
1247
1267
|
flex-shrink: 0;
|
|
1248
1268
|
background-position: center;
|
|
1249
1269
|
background-size: 100%;
|
|
1250
1270
|
background-repeat: no-repeat;
|
|
1251
1271
|
border: none;
|
|
1252
1272
|
outline: none;
|
|
1273
|
+
padding: 0;
|
|
1253
1274
|
background-color: transparent;
|
|
1254
1275
|
}
|
|
1255
1276
|
|
|
@@ -1521,7 +1542,7 @@ html, body {
|
|
|
1521
1542
|
|
|
1522
1543
|
._dialog-footer_vitro-button_3RufMLa {
|
|
1523
1544
|
min-width: 139px;
|
|
1524
|
-
height: 40px
|
|
1545
|
+
height: 40px;
|
|
1525
1546
|
font-size: 16px;
|
|
1526
1547
|
}
|
|
1527
1548
|
|
|
@@ -1661,6 +1682,7 @@ html, body {
|
|
|
1661
1682
|
._confirm-dialog_vitro-image_3vwBe8E {
|
|
1662
1683
|
height: 40px;
|
|
1663
1684
|
width: 40px;
|
|
1685
|
+
flex-shrink: 0;
|
|
1664
1686
|
margin-right: 8px;
|
|
1665
1687
|
background-size: 100%;
|
|
1666
1688
|
background-repeat: no-repeat;
|
|
@@ -1763,6 +1785,40 @@ html, body {
|
|
|
1763
1785
|
max-height: 2000px;
|
|
1764
1786
|
overflow: hidden;
|
|
1765
1787
|
transition: max-height 0.4s ease;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
@media (max-width: 800px) {
|
|
1791
|
+
._action-result-list_vitro-result-item_2AUSpie {
|
|
1792
|
+
padding: 4px 0;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
._action-result-list_vitro-result-item_2AUSpie:nth-child(2) {
|
|
1796
|
+
padding-top: 8px;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
._action-result-list_vitro-error-message_12OqWLU,
|
|
1800
|
+
._action-result-list_vitro-success-message_1yRyyKc {
|
|
1801
|
+
margin-top: 0;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
._action-result-list_vitro-scrollbar_1mcualw > div:first-child {
|
|
1805
|
+
padding-right: 12px;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
._action-result-list_vitro-scrollbar_1mcualw .ps__rail-y {
|
|
1809
|
+
border: none;
|
|
1810
|
+
width: 8px !important;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
._action-result-list_vitro-scrollbar_1mcualw .ps__thumb-y {
|
|
1814
|
+
width: 2px !important;
|
|
1815
|
+
right: 3px !important;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
._action-result-list_vitro-action-result-list_fJtJWdL {
|
|
1819
|
+
padding-left: 8px;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1766
1822
|
}
|
|
1767
1823
|
._result-dialog_vitro-result-dialog_kqxXHts {
|
|
1768
1824
|
z-index: 1001;
|
|
@@ -1888,6 +1944,26 @@ html, body {
|
|
|
1888
1944
|
background-position: center;
|
|
1889
1945
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/save-blue.svg');
|
|
1890
1946
|
}
|
|
1947
|
+
|
|
1948
|
+
@media (max-width: 800px) {
|
|
1949
|
+
._result-dialog_vitro-result-dialog_kqxXHts {
|
|
1950
|
+
width: calc(100% - 24px) !important;
|
|
1951
|
+
max-width: 400px;
|
|
1952
|
+
max-height: 48%;
|
|
1953
|
+
right: 12px;
|
|
1954
|
+
top: 12px;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
._result-dialog_vitro-header_2rBOm3x {
|
|
1958
|
+
padding: 8px 12px;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-success_3UZikJl ._result-dialog_vitro-header_2rBOm3x,
|
|
1962
|
+
._result-dialog_vitro-result-dialog_kqxXHts._result-dialog_vitro-error_3-IKuM9 ._result-dialog_vitro-header_2rBOm3x {
|
|
1963
|
+
padding: 8px 12px 8px 8px;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
}
|
|
1891
1967
|
._dropdown-button_vitro-dropdown-button_1myvkhB {
|
|
1892
1968
|
display: flex;
|
|
1893
1969
|
align-items: center;
|
|
@@ -2861,6 +2937,7 @@ html, body {
|
|
|
2861
2937
|
width: 24px;
|
|
2862
2938
|
height: 24px;
|
|
2863
2939
|
margin-right: 4px;
|
|
2940
|
+
flex-shrink: 0;
|
|
2864
2941
|
cursor: pointer;
|
|
2865
2942
|
-moz-appearance: none;
|
|
2866
2943
|
appearance: none;
|
|
@@ -6029,11 +6106,19 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6029
6106
|
background-position: center;
|
|
6030
6107
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/input/img/error-message.svg');
|
|
6031
6108
|
}
|
|
6109
|
+
._list_vitro-list_2cs4WZE {
|
|
6110
|
+
width: 100%;
|
|
6111
|
+
list-style-type: none;
|
|
6112
|
+
margin: 0;
|
|
6113
|
+
padding: 0;
|
|
6114
|
+
}
|
|
6115
|
+
|
|
6116
|
+
._list_vitro-list_2cs4WZE li {
|
|
6117
|
+
cursor: pointer;
|
|
6118
|
+
}
|
|
6032
6119
|
._criterion_vitro-criterion-container_2cYcSkL {
|
|
6033
6120
|
width: 100%;
|
|
6034
6121
|
position: relative;
|
|
6035
|
-
display: flex;
|
|
6036
|
-
align-items: center;
|
|
6037
6122
|
margin-bottom: 28px;
|
|
6038
6123
|
}
|
|
6039
6124
|
|
|
@@ -6067,8 +6152,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6067
6152
|
font-size: 12px;
|
|
6068
6153
|
border-radius: 4px;
|
|
6069
6154
|
background: #F7F9FC;
|
|
6070
|
-
display: flex;
|
|
6071
|
-
align-items: center;
|
|
6072
6155
|
justify-content: center;
|
|
6073
6156
|
position: relative;
|
|
6074
6157
|
}
|
|
@@ -6077,6 +6160,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6077
6160
|
display: inline-block;
|
|
6078
6161
|
line-height: 16px;
|
|
6079
6162
|
font-size: 12px;
|
|
6163
|
+
color: #4A556C;
|
|
6080
6164
|
}
|
|
6081
6165
|
|
|
6082
6166
|
._criterion_vitro-operator-select_1guNlk9::after {
|
|
@@ -6091,10 +6175,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6091
6175
|
}
|
|
6092
6176
|
|
|
6093
6177
|
._criterion_vitro-operator-list_3A2VZsd {
|
|
6094
|
-
position: absolute;
|
|
6095
|
-
z-index: 10;
|
|
6096
|
-
top: calc(100% + 2px);
|
|
6097
|
-
right: 0;
|
|
6098
6178
|
width: -moz-fit-content;
|
|
6099
6179
|
width: fit-content;
|
|
6100
6180
|
min-width: 100%;
|
|
@@ -6108,7 +6188,14 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6108
6188
|
}
|
|
6109
6189
|
|
|
6110
6190
|
._criterion_vitro-operator-list_3A2VZsd li {
|
|
6111
|
-
padding:
|
|
6191
|
+
padding: 4px 12px;
|
|
6192
|
+
line-height: 150%;
|
|
6193
|
+
cursor: pointer;
|
|
6194
|
+
border-bottom: 1px solid rgba(228, 230, 236, 0.5);
|
|
6195
|
+
}
|
|
6196
|
+
|
|
6197
|
+
._criterion_vitro-operator-list_3A2VZsd li:last-child {
|
|
6198
|
+
border-bottom: none;
|
|
6112
6199
|
}
|
|
6113
6200
|
|
|
6114
6201
|
._criterion_vitro-operator-list_3A2VZsd li:hover,
|
|
@@ -6122,16 +6209,10 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6122
6209
|
}
|
|
6123
6210
|
|
|
6124
6211
|
._criterion_vitro-button-cancel_2C2G0sL {
|
|
6125
|
-
|
|
6126
|
-
height: 20px;
|
|
6127
|
-
min-width: 20px;
|
|
6212
|
+
flex-shrink: 0;
|
|
6128
6213
|
margin-left: 2px;
|
|
6129
6214
|
margin-top: -10px;
|
|
6130
6215
|
align-self: flex-start;
|
|
6131
|
-
border: none;
|
|
6132
|
-
background-color: transparent;
|
|
6133
|
-
background-size: 100%;
|
|
6134
|
-
background-position: center;
|
|
6135
6216
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/criterion/img/cancel-grey.svg');
|
|
6136
6217
|
}
|
|
6137
6218
|
|
|
@@ -6181,19 +6262,32 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6181
6262
|
|
|
6182
6263
|
._criterion_vitro-condition-list-container_ERfumwB,
|
|
6183
6264
|
._criterion_vitro-operator-list-container_RgT0R_Z {
|
|
6184
|
-
position: absolute;
|
|
6185
6265
|
z-index: 1000000;
|
|
6186
6266
|
}
|
|
6187
6267
|
|
|
6268
|
+
._criterion_vitro-condition-list-container_ERfumwB {
|
|
6269
|
+
margin-top: 13px;
|
|
6270
|
+
margin-left: -8px;
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6273
|
+
._criterion_vitro-condition-list-container_ERfumwB[placement='top-start'] {
|
|
6274
|
+
margin-bottom: 13px;
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6277
|
+
._criterion_vitro-condition-list-container_ERfumwB[placement='top-start'] ._criterion_vitro-condition-list_10UIxJI::before {
|
|
6278
|
+
bottom: -20px;
|
|
6279
|
+
top: unset;
|
|
6280
|
+
transform: rotate(180deg);
|
|
6281
|
+
}
|
|
6282
|
+
|
|
6283
|
+
._criterion_vitro-operator-list-container_RgT0R_Z {
|
|
6284
|
+
margin-top: 4px;
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6188
6287
|
._criterion_vitro-condition-list_10UIxJI {
|
|
6189
|
-
width:
|
|
6190
|
-
width: fit-content;
|
|
6191
|
-
min-width: 270px;
|
|
6288
|
+
min-width: 241px;
|
|
6192
6289
|
border-radius: 4px;
|
|
6193
6290
|
background: #fff;
|
|
6194
|
-
list-style-type: none;
|
|
6195
|
-
margin: 0;
|
|
6196
|
-
padding: 0;
|
|
6197
6291
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
6198
6292
|
}
|
|
6199
6293
|
|
|
@@ -6208,42 +6302,66 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6208
6302
|
background-repeat: no-repeat;
|
|
6209
6303
|
position: absolute;
|
|
6210
6304
|
top: -21px;
|
|
6211
|
-
left:
|
|
6305
|
+
left: 20px;
|
|
6212
6306
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/criterion/img/dropdown-menu-arrow.svg');
|
|
6213
6307
|
}
|
|
6214
6308
|
|
|
6215
|
-
._criterion_vitro-
|
|
6216
|
-
padding:
|
|
6309
|
+
._criterion_vitro-condition_2RFixrp {
|
|
6310
|
+
padding: 0 12px;
|
|
6311
|
+
height: 32px;
|
|
6217
6312
|
cursor: pointer;
|
|
6218
|
-
|
|
6219
|
-
align-items: center;
|
|
6220
|
-
grid-gap: 12px;
|
|
6313
|
+
gap: 12px;
|
|
6221
6314
|
}
|
|
6222
6315
|
|
|
6223
|
-
._criterion_vitro-
|
|
6316
|
+
._criterion_vitro-condition_2RFixrp:first-child {
|
|
6224
6317
|
border-radius: 4px 4px 0 0;
|
|
6225
6318
|
}
|
|
6226
6319
|
|
|
6227
|
-
._criterion_vitro-
|
|
6320
|
+
._criterion_vitro-condition_2RFixrp:last-child {
|
|
6228
6321
|
border-radius: 0 0 4px 4px;
|
|
6229
6322
|
}
|
|
6230
6323
|
|
|
6231
|
-
._criterion_vitro-
|
|
6232
|
-
._criterion_vitro-
|
|
6324
|
+
._criterion_vitro-condition_2RFixrp:hover,
|
|
6325
|
+
._criterion_vitro-condition_2RFixrp:active {
|
|
6233
6326
|
background: #F3F8FF;
|
|
6234
6327
|
}
|
|
6235
6328
|
|
|
6236
|
-
._criterion_vitro-
|
|
6329
|
+
._criterion_vitro-condition_2RFixrp .vitro-image {
|
|
6237
6330
|
height: 20px;
|
|
6238
6331
|
width: 20px;
|
|
6332
|
+
}
|
|
6333
|
+
|
|
6334
|
+
._criterion_vitro-criterion-container-mobile_1yxaJHi {
|
|
6335
|
+
position: relative;
|
|
6336
|
+
flex-direction: column-reverse;
|
|
6337
|
+
align-items: flex-start;
|
|
6338
|
+
gap: 22px;
|
|
6339
|
+
margin-top: 12px;
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6342
|
+
._criterion_vitro-criterion-container-mobile_1yxaJHi {
|
|
6343
|
+
position: relative;
|
|
6344
|
+
flex-direction: column;
|
|
6345
|
+
align-items: flex-start;
|
|
6346
|
+
gap: 22px;
|
|
6347
|
+
margin-top: 12px;
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
._criterion_vitro-criterion-container-mobile_1yxaJHi ._criterion_vitro-control_2JLaybj {
|
|
6351
|
+
width: 100%;
|
|
6352
|
+
}
|
|
6353
|
+
|
|
6354
|
+
._criterion_vitro-criterion-container-mobile_1yxaJHi ._criterion_vitro-button-cancel_2C2G0sL {
|
|
6355
|
+
position: absolute;
|
|
6356
|
+
bottom: 40px;
|
|
6357
|
+
right: 0;
|
|
6358
|
+
margin: 0;
|
|
6239
6359
|
}
|
|
6240
6360
|
._search-input_vitro-search-input_3M9i4Gi {
|
|
6241
6361
|
height: 32px;
|
|
6242
6362
|
border-radius: 4px;
|
|
6243
6363
|
border: 1px solid #C0CAD5;
|
|
6244
6364
|
padding: 4px 8px;
|
|
6245
|
-
display: flex;
|
|
6246
|
-
align-items: center;
|
|
6247
6365
|
}
|
|
6248
6366
|
|
|
6249
6367
|
._search-input_vitro-search-input_3M9i4Gi.vitro-active {
|
|
@@ -6279,16 +6397,9 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6279
6397
|
overflow: hidden;
|
|
6280
6398
|
}
|
|
6281
6399
|
|
|
6282
|
-
._search-input_vitro-search-input_3M9i4Gi .vitro-button-search
|
|
6283
|
-
._search-input_vitro-search-input_3M9i4Gi .vitro-button-search:hover {
|
|
6400
|
+
._search-input_vitro-search-input_3M9i4Gi .vitro-button-search {
|
|
6284
6401
|
width: 24px;
|
|
6285
6402
|
height: 24px;
|
|
6286
|
-
border: none;
|
|
6287
|
-
outline: none;
|
|
6288
|
-
flex-shrink: 0;
|
|
6289
|
-
background-color: transparent;
|
|
6290
|
-
background-size: 100%;
|
|
6291
|
-
background-position: center;
|
|
6292
6403
|
margin-right: 8px;
|
|
6293
6404
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
6294
6405
|
}
|
|
@@ -6299,19 +6410,10 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6299
6410
|
background-color: #fff;
|
|
6300
6411
|
}
|
|
6301
6412
|
|
|
6302
|
-
._search-input_vitro-button-cancel_xqdMNLo
|
|
6303
|
-
._search-input_vitro-button-cancel_xqdMNLo:hover {
|
|
6413
|
+
._search-input_vitro-button-cancel_xqdMNLo {
|
|
6304
6414
|
width: 24px;
|
|
6305
6415
|
height: 24px;
|
|
6306
|
-
flex-shrink: 0;
|
|
6307
|
-
border: none;
|
|
6308
|
-
background-size: 100%;
|
|
6309
|
-
background-position: center;
|
|
6310
6416
|
margin-left: 8px;
|
|
6311
|
-
background-color: transparent;
|
|
6312
|
-
}
|
|
6313
|
-
|
|
6314
|
-
._search-input_vitro-button-cancel_xqdMNLo {
|
|
6315
6417
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-black.svg');
|
|
6316
6418
|
}
|
|
6317
6419
|
|
|
@@ -6338,23 +6440,22 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6338
6440
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-dark-grey.svg');
|
|
6339
6441
|
}
|
|
6340
6442
|
|
|
6341
|
-
|
|
6342
|
-
|
|
6343
|
-
|
|
6344
|
-
|
|
6345
|
-
padding: 0;
|
|
6346
|
-
}
|
|
6443
|
+
._search-input_vitro-search-input-mobile_1H1USnO {
|
|
6444
|
+
width: 32px;
|
|
6445
|
+
height: 32px;
|
|
6446
|
+
}
|
|
6347
6447
|
|
|
6348
|
-
|
|
6349
|
-
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6448
|
+
._search-input_vitro-search-input-mobile_1H1USnO .vitro-button-search {
|
|
6449
|
+
width: 32px;
|
|
6450
|
+
height: 32px;
|
|
6451
|
+
border-radius: 4px;
|
|
6452
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
6453
|
+
}
|
|
6354
6454
|
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6455
|
+
._search-input_vitro-search-input-mobile_1H1USnO.vitro-active .vitro-button-search {
|
|
6456
|
+
background-color: #DCEEFF;
|
|
6457
|
+
background-size: 24px;
|
|
6458
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search-blue.svg');
|
|
6358
6459
|
}
|
|
6359
6460
|
._expand-control-group_vitro-expand-control-group_1qSUMoN {
|
|
6360
6461
|
width: 100%;
|
|
@@ -6464,27 +6565,42 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6464
6565
|
top: 36px;
|
|
6465
6566
|
right: 0;
|
|
6466
6567
|
z-index: 2;
|
|
6568
|
+
}
|
|
6569
|
+
|
|
6570
|
+
._search_vitro-filter-container_3p6D0hI {
|
|
6467
6571
|
padding: 24px 0 16px 12px;
|
|
6468
6572
|
display: flex;
|
|
6469
6573
|
flex-direction: column;
|
|
6574
|
+
align-self: stretch;
|
|
6575
|
+
width: 502px;
|
|
6470
6576
|
}
|
|
6471
6577
|
|
|
6472
6578
|
._search_vitro-filter_2n-Y-mS {
|
|
6473
|
-
|
|
6579
|
+
overflow: hidden;
|
|
6474
6580
|
}
|
|
6475
6581
|
|
|
6476
|
-
._search_vitro-
|
|
6477
|
-
max-height:
|
|
6582
|
+
._search_vitro-filter_2n-Y-mS .ps {
|
|
6583
|
+
max-height: 458px;
|
|
6478
6584
|
}
|
|
6479
6585
|
|
|
6480
|
-
._search_vitro-
|
|
6586
|
+
._search_vitro-filter_2n-Y-mS .ps.ps--active-y {
|
|
6481
6587
|
padding-right: 14px;
|
|
6482
6588
|
}
|
|
6483
6589
|
|
|
6590
|
+
._search_vitro-filter_2n-Y-mS .ps > div:first-child {
|
|
6591
|
+
padding-top: 10px;
|
|
6592
|
+
}
|
|
6593
|
+
|
|
6594
|
+
._search_vitro-filter_2n-Y-mS .vitro-block:last-child > div > div {
|
|
6595
|
+
margin-bottom: 0;
|
|
6596
|
+
}
|
|
6597
|
+
|
|
6598
|
+
._search_vitro-filter_2n-Y-mS .vitro-block:nth-child(2) {
|
|
6599
|
+
margin-top: 0;
|
|
6600
|
+
}
|
|
6601
|
+
|
|
6484
6602
|
._search_vitro-add-field_2hHt1Z2 {
|
|
6485
|
-
|
|
6486
|
-
margin-bottom: 16px;
|
|
6487
|
-
margin-top: 18px;
|
|
6603
|
+
margin: 18px 0 16px 66px;
|
|
6488
6604
|
}
|
|
6489
6605
|
|
|
6490
6606
|
._search_vitro-add-field-button_30hdXYn,
|
|
@@ -6493,38 +6609,45 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6493
6609
|
font-family: 'InterRegular' !important;
|
|
6494
6610
|
background: #fff !important;
|
|
6495
6611
|
color: #326AD6 !important;
|
|
6496
|
-
margin-left: 66px;
|
|
6497
6612
|
padding: 0 !important;
|
|
6498
6613
|
min-width: unset !important;
|
|
6499
6614
|
height: 16px !important;
|
|
6615
|
+
font-size: 12px;
|
|
6616
|
+
line-height: 16px;
|
|
6500
6617
|
}
|
|
6501
6618
|
|
|
6502
6619
|
._search_vitro-add-field-dialog_3gC92SF {
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
top: 32px;
|
|
6506
|
-
left: 0;
|
|
6620
|
+
z-index: 10001;
|
|
6621
|
+
overflow: hidden;
|
|
6507
6622
|
border-radius: 4px;
|
|
6508
6623
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
6509
6624
|
}
|
|
6510
6625
|
|
|
6626
|
+
._search_vitro-add-field-dialog_3gC92SF[placement='right-start'] {
|
|
6627
|
+
margin-top: -4px;
|
|
6628
|
+
margin-left: 14px;
|
|
6629
|
+
}
|
|
6630
|
+
|
|
6511
6631
|
._search_vitro-add-field-dialog_3gC92SF .ps > div:first-child {
|
|
6512
6632
|
max-height: 204px;
|
|
6633
|
+
max-width: 242px;
|
|
6513
6634
|
}
|
|
6514
6635
|
|
|
6515
|
-
._search_vitro-
|
|
6516
|
-
|
|
6517
|
-
grid-gap: 12px;
|
|
6518
|
-
justify-content: flex-end;
|
|
6636
|
+
._search_vitro-button-group_1VuZJdq {
|
|
6637
|
+
gap: 12px;
|
|
6519
6638
|
padding: 0 24px;
|
|
6520
6639
|
margin-top: auto;
|
|
6521
6640
|
}
|
|
6522
6641
|
|
|
6642
|
+
._search_vitro-button_1kaitIg,
|
|
6643
|
+
._search_vitro-button-cancel_1M8UkMM {
|
|
6644
|
+
padding: 8px 16px;
|
|
6645
|
+
font-family: 'InterRegular' !important;
|
|
6646
|
+
}
|
|
6647
|
+
|
|
6523
6648
|
._search_vitro-button-cancel_1M8UkMM {
|
|
6524
6649
|
background: #fff !important;
|
|
6525
6650
|
color: #222D44 !important;
|
|
6526
|
-
font-family: 'InterRegular' !important;
|
|
6527
|
-
border: 1px solid #E4E6EC !important;
|
|
6528
6651
|
}
|
|
6529
6652
|
|
|
6530
6653
|
._search_vitro-button-cancel_1M8UkMM:hover,
|
|
@@ -6554,12 +6677,80 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6554
6677
|
background-color: #DCEEFF;
|
|
6555
6678
|
}
|
|
6556
6679
|
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6680
|
+
._search_vitro-search-mobile_XsKRflV {
|
|
6681
|
+
position: relative;
|
|
6682
|
+
align-self: baseline;
|
|
6683
|
+
margin-left: auto;
|
|
6561
6684
|
}
|
|
6562
|
-
|
|
6685
|
+
|
|
6686
|
+
._search_vitro-settings-dialog-mobile_1no71m6 {
|
|
6687
|
+
height: 100%;
|
|
6688
|
+
width: 100%;
|
|
6689
|
+
max-width: unset !important;
|
|
6690
|
+
border: none !important;
|
|
6691
|
+
border-radius: 0 !important;
|
|
6692
|
+
}
|
|
6693
|
+
|
|
6694
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter-container_3p6D0hI {
|
|
6695
|
+
width: 100%;
|
|
6696
|
+
position: relative;
|
|
6697
|
+
overflow: hidden;
|
|
6698
|
+
flex: 1 1;
|
|
6699
|
+
padding: 0 0 0 15px;
|
|
6700
|
+
}
|
|
6701
|
+
|
|
6702
|
+
._search_vitro-settings-dialog-header_vID4BE6 {
|
|
6703
|
+
padding: 20px 15px 15px 15px;
|
|
6704
|
+
}
|
|
6705
|
+
|
|
6706
|
+
._search_vitro-settings-dialog-footer_11fP4FC {
|
|
6707
|
+
border: none;
|
|
6708
|
+
background-color: #fff;
|
|
6709
|
+
height: unset;
|
|
6710
|
+
padding: 28px 15px;
|
|
6711
|
+
}
|
|
6712
|
+
|
|
6713
|
+
._search_vitro-settings-dialog-footer_11fP4FC button {
|
|
6714
|
+
height: 32px;
|
|
6715
|
+
}
|
|
6716
|
+
|
|
6717
|
+
._search_vitro-settings-dialog-header_vID4BE6 h1 {
|
|
6718
|
+
font-size: 18px !important;
|
|
6719
|
+
line-height: 150% !important;
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6722
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-add-field_2hHt1Z2 {
|
|
6723
|
+
margin: 18px 0 0 4px;
|
|
6724
|
+
}
|
|
6725
|
+
|
|
6726
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps {
|
|
6727
|
+
max-height: unset;
|
|
6728
|
+
padding-right: 15px;
|
|
6729
|
+
}
|
|
6730
|
+
|
|
6731
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps > div:first-child {
|
|
6732
|
+
padding-top: 0;
|
|
6733
|
+
}
|
|
6734
|
+
|
|
6735
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .vitro-block:last-child > div > div {
|
|
6736
|
+
margin-top: 12px;
|
|
6737
|
+
}
|
|
6738
|
+
|
|
6739
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-filter_2n-Y-mS .ps > div > div {
|
|
6740
|
+
padding: 0;
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
._search_vitro-settings-dialog-mobile_1no71m6 ._search_vitro-scrollbar_3Xg3VXI > div > div > .vitro-block:first-child > div > div {
|
|
6744
|
+
margin: 0;
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
._search_vitro-add-field-dialog_3gC92SF[placement='bottom-start'] {
|
|
6748
|
+
margin-top: 7px;
|
|
6749
|
+
}
|
|
6750
|
+
|
|
6751
|
+
._search_vitro-add-field-dialog_3gC92SF[placement='top-start'] {
|
|
6752
|
+
margin-bottom: 7px;
|
|
6753
|
+
}
|
|
6563
6754
|
._search-value-list_vitro-search-input-container_167CEqB {
|
|
6564
6755
|
padding: 12px;
|
|
6565
6756
|
}
|
|
@@ -6577,7 +6768,11 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6577
6768
|
._checkbox-list_vitro-checkbox-list_1iZSkkv {
|
|
6578
6769
|
border-radius: 4px;
|
|
6579
6770
|
background: #fff;
|
|
6580
|
-
max-width:
|
|
6771
|
+
max-width: 252px;
|
|
6772
|
+
}
|
|
6773
|
+
|
|
6774
|
+
._checkbox-list_vitro-search-value-list_2i58fRK > div:first-child {
|
|
6775
|
+
padding: 12px 12px 8px 12px;
|
|
6581
6776
|
}
|
|
6582
6777
|
|
|
6583
6778
|
._checkbox-list_vitro-checkbox-list_1iZSkkv .ps > div:first-child {
|
|
@@ -6586,23 +6781,11 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6586
6781
|
|
|
6587
6782
|
._checkbox-list_vitro-checkbox-list_1iZSkkv ._checkbox-list_vitro-checkbox_1EqsnoQ {
|
|
6588
6783
|
margin-bottom: 4px;
|
|
6589
|
-
height: 24px;
|
|
6590
|
-
}
|
|
6591
|
-
|
|
6592
|
-
._checkbox-list_vitro-checkbox-list_1iZSkkv ._checkbox-list_vitro-checkbox_1EqsnoQ input {
|
|
6593
|
-
width: 16px;
|
|
6594
|
-
height: 16px;
|
|
6595
6784
|
}
|
|
6596
6785
|
|
|
6597
|
-
._checkbox-list_vitro-checkbox_1EqsnoQ:last-child
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
}
|
|
6601
|
-
|
|
6602
|
-
._checkbox-list_vitro-checkbox-list_1iZSkkv span {
|
|
6603
|
-
display: block;
|
|
6604
|
-
}
|
|
6605
|
-
|
|
6786
|
+
._checkbox-list_vitro-checkbox_1EqsnoQ:last-child {
|
|
6787
|
+
padding-bottom: 8px;
|
|
6788
|
+
}
|
|
6606
6789
|
.splitter {
|
|
6607
6790
|
height: 100% !important;
|
|
6608
6791
|
position: static;
|