@vitrosoftware/common-ui-ts 1.1.237 → 1.1.239
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/bim-viewer/bim-viewer-index.css +805 -1
- package/css/std/controls/bim-viewer/bim-viewer.css +710 -0
- package/css/std/controls/bim-viewer/comparison-popup.css +82 -0
- package/css/std/controls/bim-viewer/img/collapse-bottom-black.svg +1 -0
- package/css/std/controls/bim-viewer/img/download-grey.svg +3 -0
- package/css/std/controls/bim-viewer/img/download.svg +5 -0
- package/css/std/controls/bim-viewer/img/search.png +0 -0
- package/css/std/controls/bim-viewer/img/separator.svg +5 -0
- package/css/std/controls/bim-viewer/img/splitter-handle-bar-drag.svg +6 -0
- package/css/std/controls/bim-viewer/img/stretch.svg +11 -0
- package/css/std/controls/bim-viewer/style.css +13 -0
- package/dist/index.js +119 -22
- package/dist/index.js.map +1 -1
- package/dist/src/controls/BimViewer/Viewer.d.ts +1 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +2 -1
- package/dist/src/controls/TableView/services/TableViewService.d.ts +2 -0
- package/dist/src/controls/TableView/services/impl/TableViewServiceImpl.d.ts +2 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer-models.js +155 -4
- package/src/controls/BimViewer/js/bim-viewer.js +2462 -1490
- package/src/controls/DxfViewer/js/dxf-viewer.js +15 -15
- package/src/controls/PdfViewer/js/pdf-viewer.js +19 -32
|
@@ -13139,6 +13139,19 @@ body,
|
|
|
13139
13139
|
#xeokitCanvas {
|
|
13140
13140
|
width: 100%;
|
|
13141
13141
|
height: 100%;
|
|
13142
|
+
left: 0;
|
|
13143
|
+
top: 0;
|
|
13144
|
+
position: absolute;
|
|
13145
|
+
}
|
|
13146
|
+
|
|
13147
|
+
#xeokitCompareCanvas {
|
|
13148
|
+
display: none;
|
|
13149
|
+
width: 50%;
|
|
13150
|
+
height: 100%;
|
|
13151
|
+
border-left: 2px solid gray;
|
|
13152
|
+
right : 0;
|
|
13153
|
+
top: 0;
|
|
13154
|
+
position: absolute;
|
|
13142
13155
|
}
|
|
13143
13156
|
|
|
13144
13157
|
body {
|
|
@@ -14131,6 +14144,10 @@ a.ui-button:active,
|
|
|
14131
14144
|
border-bottom: 2px solid #FE001B;
|
|
14132
14145
|
margin-left: 4px;
|
|
14133
14146
|
}
|
|
14147
|
+
.comparison-popup-head-item.changed {
|
|
14148
|
+
border-bottom: 2px solid #FFE100;
|
|
14149
|
+
margin-left: 4px;
|
|
14150
|
+
}
|
|
14134
14151
|
|
|
14135
14152
|
.comparison-popup-body .uk-switcher {
|
|
14136
14153
|
height: calc(100% - 53px);
|
|
@@ -14168,6 +14185,10 @@ a.ui-button:active,
|
|
|
14168
14185
|
border-left: 2px solid #FE001B;
|
|
14169
14186
|
}
|
|
14170
14187
|
|
|
14188
|
+
.comparison-popup-body .item-changed {
|
|
14189
|
+
border-left: 2px solid #FFE100;
|
|
14190
|
+
}
|
|
14191
|
+
|
|
14171
14192
|
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a {
|
|
14172
14193
|
margin-right: 2px !important;
|
|
14173
14194
|
}
|
|
@@ -14175,7 +14196,80 @@ a.ui-button:active,
|
|
|
14175
14196
|
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a:last-child {
|
|
14176
14197
|
margin-right: 0;
|
|
14177
14198
|
}
|
|
14178
|
-
|
|
14199
|
+
|
|
14200
|
+
|
|
14201
|
+
|
|
14202
|
+
|
|
14203
|
+
.property-comparison-popup-wrap {
|
|
14204
|
+
font-family: Arial, sans-serif;
|
|
14205
|
+
padding: 15px;
|
|
14206
|
+
}
|
|
14207
|
+
|
|
14208
|
+
.property-groups-container {
|
|
14209
|
+
padding: 5px;
|
|
14210
|
+
overflow-y: auto;
|
|
14211
|
+
max-height: calc(100vh - 100px);
|
|
14212
|
+
}
|
|
14213
|
+
|
|
14214
|
+
.property-group {
|
|
14215
|
+
margin-bottom: 20px;
|
|
14216
|
+
border: 1px solid #e0e0e0;
|
|
14217
|
+
border-radius: 4px;
|
|
14218
|
+
overflow: hidden;
|
|
14219
|
+
}
|
|
14220
|
+
|
|
14221
|
+
.group-header {
|
|
14222
|
+
padding: 10px 15px;
|
|
14223
|
+
background: #f5f5f5;
|
|
14224
|
+
font-weight: bold;
|
|
14225
|
+
font-size: 15px;
|
|
14226
|
+
}
|
|
14227
|
+
|
|
14228
|
+
.properties-list {
|
|
14229
|
+
padding: 10px;
|
|
14230
|
+
}
|
|
14231
|
+
|
|
14232
|
+
.property-item {
|
|
14233
|
+
margin-bottom: 12px;
|
|
14234
|
+
padding-bottom: 12px;
|
|
14235
|
+
border-bottom: 1px solid #eee;
|
|
14236
|
+
}
|
|
14237
|
+
|
|
14238
|
+
.property-item:last-child {
|
|
14239
|
+
border-bottom: none;
|
|
14240
|
+
margin-bottom: 0;
|
|
14241
|
+
padding-bottom: 0;
|
|
14242
|
+
}
|
|
14243
|
+
|
|
14244
|
+
.property-name {
|
|
14245
|
+
font-weight: bold;
|
|
14246
|
+
margin-bottom: 5px;
|
|
14247
|
+
font-size: 14px;
|
|
14248
|
+
}
|
|
14249
|
+
|
|
14250
|
+
.property-value {
|
|
14251
|
+
display: flex;
|
|
14252
|
+
margin: 3px 0;
|
|
14253
|
+
font-size: 13px;
|
|
14254
|
+
}
|
|
14255
|
+
|
|
14256
|
+
.model-name {
|
|
14257
|
+
font-weight: bold;
|
|
14258
|
+
min-width: 200px;
|
|
14259
|
+
color: #555;
|
|
14260
|
+
}
|
|
14261
|
+
|
|
14262
|
+
.model-a .model-name {
|
|
14263
|
+
color: #d32f2f;
|
|
14264
|
+
}
|
|
14265
|
+
|
|
14266
|
+
.model-b .model-name {
|
|
14267
|
+
color: #388e3c;
|
|
14268
|
+
}
|
|
14269
|
+
|
|
14270
|
+
.value {
|
|
14271
|
+
margin-left: 10px;
|
|
14272
|
+
}
|
|
14179
14273
|
.vitro-bim-viewer-issue-detail {
|
|
14180
14274
|
position: fixed;
|
|
14181
14275
|
top: 50px;
|
|
@@ -14624,4 +14718,714 @@ div:focus-visible {
|
|
|
14624
14718
|
|
|
14625
14719
|
.TWMenuMain {
|
|
14626
14720
|
z-index: 99000011 !important;
|
|
14721
|
+
}
|
|
14722
|
+
|
|
14723
|
+
.ui-dialog-comparison-left {
|
|
14724
|
+
padding: 0;
|
|
14725
|
+
border: initial !important;
|
|
14726
|
+
border-radius: 4px;
|
|
14727
|
+
box-shadow: 0px 4px 14px 0px #0000002E;
|
|
14728
|
+
box-shadow: 0px 0px 4px 0px #00000024;
|
|
14729
|
+
z-index: 99000006;
|
|
14730
|
+
}
|
|
14731
|
+
|
|
14732
|
+
.ui-dialog-comparison-left .ui-dialog-title {
|
|
14733
|
+
font-size: 18px;
|
|
14734
|
+
color: #222D44;
|
|
14735
|
+
font-weight: 400 !important;
|
|
14736
|
+
border-radius: initial !important;
|
|
14737
|
+
margin: 0 !important;
|
|
14738
|
+
padding: 0 !important;
|
|
14739
|
+
border-radius: 0 !important;
|
|
14740
|
+
overflow: visible;
|
|
14741
|
+
}
|
|
14742
|
+
|
|
14743
|
+
.ui-dialog-comparison-left .ui-dialog-titlebar {
|
|
14744
|
+
background: #dfedfd !important;
|
|
14745
|
+
padding: 13px 14px 13px 14px;
|
|
14746
|
+
border-bottom-left-radius: 0;
|
|
14747
|
+
border-bottom-right-radius: 0;
|
|
14748
|
+
border: none;
|
|
14749
|
+
}
|
|
14750
|
+
|
|
14751
|
+
.ui-dialog-comparison-left .ui-dialog-titlebar-close {
|
|
14752
|
+
width: 24px;
|
|
14753
|
+
height: 24px;
|
|
14754
|
+
background: url('img/cancel-dark-grey.svg');
|
|
14755
|
+
border: none !important;
|
|
14756
|
+
margin-right: 10px !important;
|
|
14757
|
+
margin-top: -3px !important;
|
|
14758
|
+
background-size: 106.67%;
|
|
14759
|
+
}
|
|
14760
|
+
|
|
14761
|
+
.ui-dialog-comparison-left .property-comparison-popup-wrap {
|
|
14762
|
+
width: 100% !important;
|
|
14763
|
+
padding: 0 4px 22px 8px !important;
|
|
14764
|
+
margin-top: 4px;
|
|
14765
|
+
height: calc(100% - 46px) !important;
|
|
14766
|
+
display: flex;
|
|
14767
|
+
flex-direction: column;
|
|
14768
|
+
}
|
|
14769
|
+
|
|
14770
|
+
.ui-dialog-comparison-left .property-groups-container {
|
|
14771
|
+
padding: 0 !important;
|
|
14772
|
+
overflow-y: visible !important;
|
|
14773
|
+
max-height: none !important;
|
|
14774
|
+
margin-right: 4px;
|
|
14775
|
+
}
|
|
14776
|
+
|
|
14777
|
+
.ui-dialog-comparison-left .property-group {
|
|
14778
|
+
border-radius: 0 !important;
|
|
14779
|
+
border: none !important;
|
|
14780
|
+
overflow: visible;
|
|
14781
|
+
margin-bottom: 0;
|
|
14782
|
+
}
|
|
14783
|
+
|
|
14784
|
+
.ui-dialog-comparison-left .property-group-title,
|
|
14785
|
+
.ui-dialog-comparison-left .group-header {
|
|
14786
|
+
background: #F7F9FC !important;
|
|
14787
|
+
font-family: 'InterMedium';
|
|
14788
|
+
font-size: 14px !important;
|
|
14789
|
+
font-weight: 400 !important;
|
|
14790
|
+
color: #222D44;
|
|
14791
|
+
padding: 7px 31px 7px 31px;
|
|
14792
|
+
position: relative;
|
|
14793
|
+
border-bottom: 1px solid #edeff4;
|
|
14794
|
+
}
|
|
14795
|
+
|
|
14796
|
+
.ui-dialog-comparison-left .property-group-title.collapsed + .property-list,
|
|
14797
|
+
.ui-dialog-comparison-left .group-header.collapsed + .properties-list {
|
|
14798
|
+
display: none;
|
|
14799
|
+
}
|
|
14800
|
+
|
|
14801
|
+
.ui-dialog-comparison-left .property-group-title:before,
|
|
14802
|
+
.ui-dialog-comparison-left .group-header:before {
|
|
14803
|
+
content: '';
|
|
14804
|
+
position: absolute;
|
|
14805
|
+
width: 24px;
|
|
14806
|
+
height: 24px;
|
|
14807
|
+
left: 1px;
|
|
14808
|
+
top: 3px;
|
|
14809
|
+
background: url('img/collapse-bottom.svg') center center no-repeat;
|
|
14810
|
+
transform: scaleY(-1);
|
|
14811
|
+
background-size: 68.75%;
|
|
14812
|
+
}
|
|
14813
|
+
|
|
14814
|
+
.ui-dialog-comparison-left .property-group-title.collapsed:before,
|
|
14815
|
+
.ui-dialog-comparison-left .group-header.collapsed:before{
|
|
14816
|
+
background: url('img/collapse-bottom.svg') center center no-repeat;
|
|
14817
|
+
transform: scaleY(1);
|
|
14818
|
+
background-size: 68.75%;
|
|
14819
|
+
}
|
|
14820
|
+
|
|
14821
|
+
.ui-dialog-comparison-left .properties-list {
|
|
14822
|
+
padding: 0 !important;
|
|
14823
|
+
}
|
|
14824
|
+
|
|
14825
|
+
.ui-dialog-comparison-left .property-item {
|
|
14826
|
+
padding: 0 !important;
|
|
14827
|
+
margin: 0 !important;
|
|
14828
|
+
border-bottom: none !important;
|
|
14829
|
+
}
|
|
14830
|
+
|
|
14831
|
+
.ui-dialog-comparison-left .property-name,
|
|
14832
|
+
.ui-dialog-comparison-left .property-value {
|
|
14833
|
+
margin: 0 !important;
|
|
14834
|
+
font-size: 14px !important;
|
|
14835
|
+
font-weight: 400 !important;
|
|
14836
|
+
color: #222D44;
|
|
14837
|
+
border-bottom: 1px solid #edeff4;
|
|
14838
|
+
}
|
|
14839
|
+
|
|
14840
|
+
.ui-dialog-comparison-left .property-name {
|
|
14841
|
+
font-family: 'InterMedium';
|
|
14842
|
+
padding: 7px 7px 7px 31px;
|
|
14843
|
+
}
|
|
14844
|
+
|
|
14845
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-value,
|
|
14846
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name,
|
|
14847
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name,
|
|
14848
|
+
.ui-dialog-comparison-left .property-value .model-name,
|
|
14849
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
14850
|
+
font-family: 'InterRegular' !important;
|
|
14851
|
+
}
|
|
14852
|
+
|
|
14853
|
+
.ui-dialog-comparison-left .property-value .model-name {
|
|
14854
|
+
display: flex;
|
|
14855
|
+
align-items: flex-start;
|
|
14856
|
+
}
|
|
14857
|
+
|
|
14858
|
+
.ui-dialog-comparison-left .property-value .model-name span:first-child {
|
|
14859
|
+
white-space: nowrap;
|
|
14860
|
+
overflow: hidden;
|
|
14861
|
+
text-overflow: ellipsis;
|
|
14862
|
+
max-width: calc(100% - 60px);
|
|
14863
|
+
}
|
|
14864
|
+
|
|
14865
|
+
.ui-dialog-comparison-left .vitro-model-a-name span:last-child,
|
|
14866
|
+
.ui-dialog-comparison-left .vitro-model-b-name span:last-child,
|
|
14867
|
+
.ui-dialog-comparison-left .property-value .model-name span:last-child {
|
|
14868
|
+
padding-left: 5px;
|
|
14869
|
+
}
|
|
14870
|
+
|
|
14871
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-name,
|
|
14872
|
+
.ui-dialog-comparison-left .property-value .model-name {
|
|
14873
|
+
font-weight: 400 !important;
|
|
14874
|
+
color: #222D44;
|
|
14875
|
+
padding-left: 31px;
|
|
14876
|
+
white-space: nowrap;
|
|
14877
|
+
overflow: hidden;
|
|
14878
|
+
text-overflow: ellipsis;
|
|
14879
|
+
flex-grow: 1;
|
|
14880
|
+
flex-shrink: 1;
|
|
14881
|
+
flex-basis: 0;
|
|
14882
|
+
width: auto;
|
|
14883
|
+
padding: 7px 14px 7px 31px;
|
|
14884
|
+
}
|
|
14885
|
+
|
|
14886
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-value,
|
|
14887
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
14888
|
+
font-weight: 400 !important;
|
|
14889
|
+
color: #222D44;
|
|
14890
|
+
flex-grow: 0;
|
|
14891
|
+
flex-basis: auto;
|
|
14892
|
+
width: auto;
|
|
14893
|
+
padding: 7px 14px 7px 14px;
|
|
14894
|
+
margin: 0 !important;
|
|
14895
|
+
max-width: 50%;
|
|
14896
|
+
}
|
|
14897
|
+
|
|
14898
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
14899
|
+
text-align: right;
|
|
14900
|
+
}
|
|
14901
|
+
|
|
14902
|
+
.vitro-property-compare-popup-footer {
|
|
14903
|
+
display: flex;
|
|
14904
|
+
flex-wrap: nowrap;
|
|
14905
|
+
gap: 8px;
|
|
14906
|
+
padding-top: 9px;
|
|
14907
|
+
margin-right: 4px;
|
|
14908
|
+
}
|
|
14909
|
+
|
|
14910
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name,
|
|
14911
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name {
|
|
14912
|
+
flex: 1;
|
|
14913
|
+
padding: 12px 18px 12px 18px;
|
|
14914
|
+
font-size: 14px;
|
|
14915
|
+
overflow: hidden;
|
|
14916
|
+
text-overflow: ellipsis;
|
|
14917
|
+
}
|
|
14918
|
+
|
|
14919
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name {
|
|
14920
|
+
background: #DCEEFF;
|
|
14921
|
+
}
|
|
14922
|
+
|
|
14923
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name {
|
|
14924
|
+
background: #F7F9FC;
|
|
14925
|
+
}
|
|
14926
|
+
|
|
14927
|
+
.vitro-model-a-name,
|
|
14928
|
+
.vitro-model-b-name {
|
|
14929
|
+
display: flex;
|
|
14930
|
+
border-radius: 4px;
|
|
14931
|
+
}
|
|
14932
|
+
|
|
14933
|
+
.vitro-model-a-name span:first-child,
|
|
14934
|
+
.vitro-model-b-name span:first-child {
|
|
14935
|
+
white-space: nowrap;
|
|
14936
|
+
overflow-x: hidden;
|
|
14937
|
+
text-overflow: ellipsis;
|
|
14938
|
+
}
|
|
14939
|
+
|
|
14940
|
+
.ui-dialog-comparison-left .ui-dialog-comparison-left {
|
|
14941
|
+
overflow-y: auto;
|
|
14942
|
+
}
|
|
14943
|
+
|
|
14944
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap {
|
|
14945
|
+
overflow-y: auto;
|
|
14946
|
+
flex-grow: 1;
|
|
14947
|
+
}
|
|
14948
|
+
|
|
14949
|
+
|
|
14950
|
+
#compareTreeContent::-webkit-scrollbar,
|
|
14951
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar,
|
|
14952
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar {
|
|
14953
|
+
width: 4px;
|
|
14954
|
+
height: 4px;
|
|
14955
|
+
}
|
|
14956
|
+
|
|
14957
|
+
#compareTreeContent::-webkit-scrollbar-track,
|
|
14958
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-track,
|
|
14959
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-track {
|
|
14960
|
+
background: transparent;
|
|
14961
|
+
border-radius: 8px;
|
|
14962
|
+
}
|
|
14963
|
+
|
|
14964
|
+
#compareTreeContent::-webkit-scrollbar-thumb,
|
|
14965
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-thumb,
|
|
14966
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-thumb {
|
|
14967
|
+
background: #E4E6EC;
|
|
14968
|
+
border-radius: 4px;
|
|
14969
|
+
}
|
|
14970
|
+
|
|
14971
|
+
#compareTreeContent::-webkit-scrollbar-thumb:hover,
|
|
14972
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-thumb:hover,
|
|
14973
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-thumb:hover {
|
|
14974
|
+
background: #E4E6EC;
|
|
14975
|
+
}
|
|
14976
|
+
|
|
14977
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-list .property-item {
|
|
14978
|
+
display: flex;
|
|
14979
|
+
}
|
|
14980
|
+
|
|
14981
|
+
.vitro-compare-label-model-a,
|
|
14982
|
+
.vitro-compare-label-model-b,
|
|
14983
|
+
.vitro-compare-label-one-over-one {
|
|
14984
|
+
font-size: 12px;
|
|
14985
|
+
color: #ffffff;
|
|
14986
|
+
background: #4c556a;
|
|
14987
|
+
border-radius: 4px;
|
|
14988
|
+
padding: 7px 9px 7px 9px;
|
|
14989
|
+
position: absolute;
|
|
14990
|
+
font-family: 'InterRegular';
|
|
14991
|
+
}
|
|
14992
|
+
|
|
14993
|
+
.vitro-compare-label-one-over-one {
|
|
14994
|
+
display: flex;
|
|
14995
|
+
max-width: 440px;
|
|
14996
|
+
flex-wrap: nowrap;
|
|
14997
|
+
left: 16px;
|
|
14998
|
+
top: 17px;
|
|
14999
|
+
}
|
|
15000
|
+
|
|
15001
|
+
.vitro-compare-label-one-over-one .vitro-separator {
|
|
15002
|
+
width: 44px;
|
|
15003
|
+
flex: 0 0 44px;
|
|
15004
|
+
background: url('img/separator.svg') center center no-repeat;
|
|
15005
|
+
}
|
|
15006
|
+
|
|
15007
|
+
.vitro-compare-label-model-b span:first-child,
|
|
15008
|
+
.vitro-compare-label-model-a span:first-child,
|
|
15009
|
+
.vitro-compare-label-one-over-one > span > span:first-child {
|
|
15010
|
+
overflow: hidden;
|
|
15011
|
+
text-overflow: ellipsis;
|
|
15012
|
+
white-space: nowrap;
|
|
15013
|
+
}
|
|
15014
|
+
|
|
15015
|
+
.vitro-compare-label-one-over-one > span:first-child,
|
|
15016
|
+
.vitro-compare-label-one-over-one > span:last-child {
|
|
15017
|
+
overflow: hidden;
|
|
15018
|
+
flex-grow: 1;
|
|
15019
|
+
display: flex;
|
|
15020
|
+
}
|
|
15021
|
+
|
|
15022
|
+
.vitro-compare-label-model-b,
|
|
15023
|
+
.vitro-compare-label-model-a {
|
|
15024
|
+
max-width: 332px;
|
|
15025
|
+
display: flex;
|
|
15026
|
+
}
|
|
15027
|
+
|
|
15028
|
+
.vitro-compare-label-one-over-one > span > span:last-child,
|
|
15029
|
+
.vitro-compare-label-model-b span:last-child,
|
|
15030
|
+
.vitro-compare-label-model-a span:last-child {
|
|
15031
|
+
padding-left: 5px;
|
|
15032
|
+
}
|
|
15033
|
+
|
|
15034
|
+
.vitro-compare-label-model-a {
|
|
15035
|
+
top: 17px;
|
|
15036
|
+
left: 16px;
|
|
15037
|
+
}
|
|
15038
|
+
|
|
15039
|
+
.vitro-compare-label-model-b {
|
|
15040
|
+
top: 17px;
|
|
15041
|
+
right: 16px;
|
|
15042
|
+
}
|
|
15043
|
+
|
|
15044
|
+
|
|
15045
|
+
|
|
15046
|
+
|
|
15047
|
+
.ui-dialog-comparison {
|
|
15048
|
+
padding: 0;
|
|
15049
|
+
height: calc(100% - 50px);
|
|
15050
|
+
top: 51px !important;
|
|
15051
|
+
right: 0;
|
|
15052
|
+
bottom: 0;
|
|
15053
|
+
border-bottom: none !important;
|
|
15054
|
+
border-right: none !important;
|
|
15055
|
+
border-top: none !important;
|
|
15056
|
+
border-color: #e4e6eb !important;
|
|
15057
|
+
}
|
|
15058
|
+
|
|
15059
|
+
.ui-dialog-comparison .comparison-popup-wrap {
|
|
15060
|
+
padding: 17px 16px 0 16px;
|
|
15061
|
+
height: 100% !important;
|
|
15062
|
+
}
|
|
15063
|
+
|
|
15064
|
+
.ui-dialog-comparison .comparison-popup-body {
|
|
15065
|
+
height: calc(100% - 184px);
|
|
15066
|
+
}
|
|
15067
|
+
|
|
15068
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab {
|
|
15069
|
+
margin-left: 0;
|
|
15070
|
+
}
|
|
15071
|
+
|
|
15072
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > li {
|
|
15073
|
+
padding-left: 0 !important;
|
|
15074
|
+
flex: 1
|
|
15075
|
+
}
|
|
15076
|
+
|
|
15077
|
+
|
|
15078
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > * > a {
|
|
15079
|
+
text-transform: none;
|
|
15080
|
+
font-size: 14px;
|
|
15081
|
+
color: #4A556C;
|
|
15082
|
+
padding-bottom: 17px;
|
|
15083
|
+
}
|
|
15084
|
+
|
|
15085
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > * > a:hover {
|
|
15086
|
+
color: #3274E0;
|
|
15087
|
+
}
|
|
15088
|
+
|
|
15089
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > .uk-active > a {
|
|
15090
|
+
color: #3274E0 !important;
|
|
15091
|
+
border-color: #3274E0;
|
|
15092
|
+
font-family: 'InterMedium';
|
|
15093
|
+
}
|
|
15094
|
+
|
|
15095
|
+
.ui-dialog-comparison .ui-resizable-ne,
|
|
15096
|
+
.ui-dialog-comparison .ui-resizable-se,
|
|
15097
|
+
.ui-dialog-comparison .ui-resizable-sw,
|
|
15098
|
+
.ui-dialog-comparison .ui-resizable-nw,
|
|
15099
|
+
.ui-dialog-comparison .ui-resizable-n,
|
|
15100
|
+
.ui-dialog-comparison .ui-resizable-e,
|
|
15101
|
+
.ui-dialog-comparison .ui-resizable-s {
|
|
15102
|
+
display: none !important;
|
|
15103
|
+
}
|
|
15104
|
+
|
|
15105
|
+
.ui-dialog-comparison .ui-resizable-w:after {
|
|
15106
|
+
content: '';
|
|
15107
|
+
background-position: center;
|
|
15108
|
+
height: 30px;
|
|
15109
|
+
width: 6px;
|
|
15110
|
+
background-repeat: no-repeat;
|
|
15111
|
+
position: absolute;
|
|
15112
|
+
top: calc(50% - 15px);
|
|
15113
|
+
left: 1px;
|
|
15114
|
+
background-image: url('img/splitter-handle-bar-drag.svg');
|
|
15115
|
+
}
|
|
15116
|
+
|
|
15117
|
+
.ui-dialog-comparison .ui-dialog-titlebar {
|
|
15118
|
+
display: none;
|
|
15119
|
+
}
|
|
15120
|
+
|
|
15121
|
+
.comparison-popup-head {
|
|
15122
|
+
gap: 12px;
|
|
15123
|
+
padding: 0;
|
|
15124
|
+
margin-bottom: 17px;
|
|
15125
|
+
height: auto;
|
|
15126
|
+
}
|
|
15127
|
+
|
|
15128
|
+
.comparison-popup-head-item {
|
|
15129
|
+
width: calc(33.333% - 6px);
|
|
15130
|
+
text-align: left;
|
|
15131
|
+
border-bottom: none !important;
|
|
15132
|
+
border-right: none !important;
|
|
15133
|
+
border-top: none !important;
|
|
15134
|
+
border-radius: 4px;
|
|
15135
|
+
margin: 0 !important;
|
|
15136
|
+
background: #f8f9fa;
|
|
15137
|
+
height: 56px;
|
|
15138
|
+
padding: 9px;
|
|
15139
|
+
cursor: pointer;
|
|
15140
|
+
}
|
|
15141
|
+
|
|
15142
|
+
.comparison-popup-head-item:hover {
|
|
15143
|
+
background: #f3f8ff;
|
|
15144
|
+
}
|
|
15145
|
+
|
|
15146
|
+
.comparison-popup-head-item.vitro-selected {
|
|
15147
|
+
background: #dceeff;
|
|
15148
|
+
}
|
|
15149
|
+
|
|
15150
|
+
.comparison-popup-head-item.added {
|
|
15151
|
+
border-left: 4px solid #72af86;
|
|
15152
|
+
}
|
|
15153
|
+
|
|
15154
|
+
.comparison-popup-head-item.removed {
|
|
15155
|
+
border-left: 4px solid #c1423f;/*#da626A;*/
|
|
15156
|
+
}
|
|
15157
|
+
|
|
15158
|
+
.comparison-popup-head-item.changed {
|
|
15159
|
+
border-left: 4px solid #efe8a0; /*#e9ef75;*/
|
|
15160
|
+
}
|
|
15161
|
+
|
|
15162
|
+
.comparison-popup-head-item .count,
|
|
15163
|
+
.comparison-popup-head-item .label {
|
|
15164
|
+
text-align: left;
|
|
15165
|
+
}
|
|
15166
|
+
|
|
15167
|
+
.comparison-popup-head-item .label {
|
|
15168
|
+
margin-top: 3px;
|
|
15169
|
+
}
|
|
15170
|
+
|
|
15171
|
+
.comparison-popup-head-item .count {
|
|
15172
|
+
font-size: 18px;
|
|
15173
|
+
font-weight: 500;
|
|
15174
|
+
color: #222D44;
|
|
15175
|
+
font-family: 'InterMedium';
|
|
15176
|
+
}
|
|
15177
|
+
|
|
15178
|
+
.comparison-popup-head-item.active {
|
|
15179
|
+
background: #dceeff;
|
|
15180
|
+
}
|
|
15181
|
+
|
|
15182
|
+
.comparison-popup-head-item.active:hover {
|
|
15183
|
+
background: #f3f8ff;
|
|
15184
|
+
}
|
|
15185
|
+
|
|
15186
|
+
.vitro-compare-popup-title {
|
|
15187
|
+
background: #f7f9fc;
|
|
15188
|
+
position: relative;
|
|
15189
|
+
margin-bottom: 17px;
|
|
15190
|
+
padding: 0 8px 0 8px;
|
|
15191
|
+
}
|
|
15192
|
+
|
|
15193
|
+
.vitro-compare-popup-title .vitro-title {
|
|
15194
|
+
font-size: 14px;
|
|
15195
|
+
font-family: 'InterMedium';
|
|
15196
|
+
font-weight: 500;
|
|
15197
|
+
line-height: 42px;
|
|
15198
|
+
padding-left: 8px;
|
|
15199
|
+
}
|
|
15200
|
+
|
|
15201
|
+
.vitro-compare-popup-title .vitro-button {
|
|
15202
|
+
cursor: pointer;
|
|
15203
|
+
width: 24px;
|
|
15204
|
+
height: 24px;
|
|
15205
|
+
background: url('img/download.svg') center center no-repeat;
|
|
15206
|
+
position: absolute;
|
|
15207
|
+
top: 9px;
|
|
15208
|
+
right: 10px;
|
|
15209
|
+
}
|
|
15210
|
+
|
|
15211
|
+
.vitro-search-wrap {
|
|
15212
|
+
margin-bottom: 17px;
|
|
15213
|
+
}
|
|
15214
|
+
|
|
15215
|
+
.vitro-search-input {
|
|
15216
|
+
border: 1px solid #4c556a;
|
|
15217
|
+
border-radius: 4px;
|
|
15218
|
+
height: 34px;
|
|
15219
|
+
width: 100%;
|
|
15220
|
+
padding-left: 43px;
|
|
15221
|
+
background: url('img/search.png') 13px 9px no-repeat; /* TODO - change icon!!! */
|
|
15222
|
+
}
|
|
15223
|
+
|
|
15224
|
+
#xeokitCompareCanvas {
|
|
15225
|
+
border-color: #e4e6eb;
|
|
15226
|
+
}
|
|
15227
|
+
|
|
15228
|
+
.comparison-popup-body .uk-switcher {
|
|
15229
|
+
height: calc(100% - 65px);
|
|
15230
|
+
}
|
|
15231
|
+
|
|
15232
|
+
.comparison-popup-body .list-items li {
|
|
15233
|
+
border-radius: 2px;
|
|
15234
|
+
line-height: 21px !important;
|
|
15235
|
+
padding-top: 4px;
|
|
15236
|
+
padding-bottom: 4px;
|
|
15237
|
+
}
|
|
15238
|
+
|
|
15239
|
+
.comparison-popup-body .list-items li .name {
|
|
15240
|
+
font-weight: normal !important;
|
|
15241
|
+
}
|
|
15242
|
+
|
|
15243
|
+
.comparison-popup-body .item-added {
|
|
15244
|
+
border-left-color: #72af86;
|
|
15245
|
+
}
|
|
15246
|
+
|
|
15247
|
+
.comparison-popup-body .item-removed {
|
|
15248
|
+
border-left-color: #c1423f;
|
|
15249
|
+
}
|
|
15250
|
+
|
|
15251
|
+
.comparison-popup-body .item-changed {
|
|
15252
|
+
border-left-color: #efe8a0;
|
|
15253
|
+
}
|
|
15254
|
+
|
|
15255
|
+
.comparison-popup-body .uk-switcher > li {
|
|
15256
|
+
height: 100%;
|
|
15257
|
+
overflow-y: auto;
|
|
15258
|
+
}
|
|
15259
|
+
|
|
15260
|
+
.comparison-popup-body .list-items li.vitro-selected {
|
|
15261
|
+
background-color: #dceeff;
|
|
15262
|
+
}
|
|
15263
|
+
|
|
15264
|
+
.comparison-popup-body .list-items li:hover {
|
|
15265
|
+
background-color: #f3f8ff;
|
|
15266
|
+
}
|
|
15267
|
+
|
|
15268
|
+
.vitro-compare-tree-header {
|
|
15269
|
+
background: #f7f9fc;
|
|
15270
|
+
padding-left: 10px;
|
|
15271
|
+
line-height: 42px;
|
|
15272
|
+
}
|
|
15273
|
+
|
|
15274
|
+
#compareTreeContent {
|
|
15275
|
+
height: calc(100% - 42px);
|
|
15276
|
+
overflow: auto;
|
|
15277
|
+
}
|
|
15278
|
+
|
|
15279
|
+
#compareTreeContent .jstree-anchor .jstree-themeicon {
|
|
15280
|
+
display: none;
|
|
15281
|
+
}
|
|
15282
|
+
|
|
15283
|
+
#compareTreeContent .jstree-default .jstree-icon:empty {
|
|
15284
|
+
width: 32px !important;
|
|
15285
|
+
}
|
|
15286
|
+
|
|
15287
|
+
#compareTreeContent .jstree-closed > .jstree-icon.jstree-ocl {
|
|
15288
|
+
background-image: url('img/collapse-bottom-black.svg');
|
|
15289
|
+
background-repeat: no-repeat;
|
|
15290
|
+
background-position: center 8px !important;
|
|
15291
|
+
transform: rotate(-90deg);
|
|
15292
|
+
background-size: 72%;
|
|
15293
|
+
margin-top: 5px;
|
|
15294
|
+
}
|
|
15295
|
+
|
|
15296
|
+
#compareTreeContent .jstree-open > .jstree-icon.jstree-ocl {
|
|
15297
|
+
background-image: url('img/collapse-bottom-black.svg');
|
|
15298
|
+
background-repeat: no-repeat;
|
|
15299
|
+
background-position: 8px center !important;
|
|
15300
|
+
background-size: 75%;
|
|
15301
|
+
margin-top: 5px;
|
|
15302
|
+
}
|
|
15303
|
+
|
|
15304
|
+
#compareTreeContent .jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
|
|
15305
|
+
background: transparent;
|
|
15306
|
+
}
|
|
15307
|
+
|
|
15308
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-clicked {
|
|
15309
|
+
background-color: #DCEEFF !important;
|
|
15310
|
+
background: #DCEEFF !important;
|
|
15311
|
+
}
|
|
15312
|
+
|
|
15313
|
+
.comparison-popup-body .jstree-default .jstree-wholerow {
|
|
15314
|
+
height: 34px !important;
|
|
15315
|
+
border-bottom: 1px solid #f1f3f5;
|
|
15316
|
+
}
|
|
15317
|
+
|
|
15318
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-hovered,
|
|
15319
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-hovered:hover,
|
|
15320
|
+
.comparison-popup-body .jstree-default .jstree-wholerow:hover {
|
|
15321
|
+
background-color: #f3f8ff !important;
|
|
15322
|
+
background: #f3f8ff !important;
|
|
15323
|
+
}
|
|
15324
|
+
|
|
15325
|
+
.comparison-popup-body .jstree-default .jstree-anchor {
|
|
15326
|
+
line-height: 34px !important;
|
|
15327
|
+
height: 34px !important;
|
|
15328
|
+
padding-left: 8px !important;
|
|
15329
|
+
display: inline-flex;
|
|
15330
|
+
width: calc(100% - 24px);
|
|
15331
|
+
}
|
|
15332
|
+
|
|
15333
|
+
.comparison-popup-body .uk-tab::before {
|
|
15334
|
+
left: 0 !important;
|
|
15335
|
+
}
|
|
15336
|
+
|
|
15337
|
+
.comparison-popup-body .change-type-change .jstree-anchor:before,
|
|
15338
|
+
.comparison-popup-body .change-type-del .jstree-anchor:before,
|
|
15339
|
+
.comparison-popup-body .change-type-add .jstree-anchor:before {
|
|
15340
|
+
content: "";
|
|
15341
|
+
position: absolute;
|
|
15342
|
+
left: 2px;
|
|
15343
|
+
top: 4px;
|
|
15344
|
+
height: 25px;
|
|
15345
|
+
}
|
|
15346
|
+
|
|
15347
|
+
.comparison-popup-body .change-type-add .jstree-anchor:before {
|
|
15348
|
+
border-left: 2px solid #72af86;
|
|
15349
|
+
}
|
|
15350
|
+
|
|
15351
|
+
.comparison-popup-body .change-type-del .jstree-anchor:before {
|
|
15352
|
+
border-left: 2px solid #c1423f;
|
|
15353
|
+
}
|
|
15354
|
+
|
|
15355
|
+
.comparison-popup-body .change-type-change .jstree-anchor:before {
|
|
15356
|
+
border-left: 2px solid #efe8a0;
|
|
15357
|
+
}
|
|
15358
|
+
|
|
15359
|
+
.comparison-popup-body .jstree-leaf .jstree-icon:empty:before {
|
|
15360
|
+
width: 5px !important;
|
|
15361
|
+
}
|
|
15362
|
+
|
|
15363
|
+
.comparison-popup-body .jstree-leaf .jstree-icon {
|
|
15364
|
+
width: 11px !important;
|
|
15365
|
+
}
|
|
15366
|
+
|
|
15367
|
+
.vitro-count-wrap {
|
|
15368
|
+
padding-left: 4px;
|
|
15369
|
+
padding-right: 4px;
|
|
15370
|
+
margin-left: auto;
|
|
15371
|
+
min-width: 90px;
|
|
15372
|
+
text-align: center;
|
|
15373
|
+
}
|
|
15374
|
+
|
|
15375
|
+
.vitro-count-add,
|
|
15376
|
+
.vitro-count-del,
|
|
15377
|
+
.vitro-count-change {
|
|
15378
|
+
margin-left: 4px;
|
|
15379
|
+
margin-right: 4px;
|
|
15380
|
+
position: relative;
|
|
15381
|
+
padding-right: 2px;
|
|
15382
|
+
padding-left: 1px;
|
|
15383
|
+
}
|
|
15384
|
+
|
|
15385
|
+
.vitro-count-add:before,
|
|
15386
|
+
.vitro-count-del:before,
|
|
15387
|
+
.vitro-count-change:before {
|
|
15388
|
+
content: '';
|
|
15389
|
+
position: absolute;
|
|
15390
|
+
bottom: 0;
|
|
15391
|
+
left: 0;
|
|
15392
|
+
right: 0;
|
|
15393
|
+
}
|
|
15394
|
+
|
|
15395
|
+
.vitro-count-add:before {
|
|
15396
|
+
border-bottom: 2px solid #72af86;
|
|
15397
|
+
}
|
|
15398
|
+
|
|
15399
|
+
.vitro-count-del:before {
|
|
15400
|
+
border-bottom: 2px solid #c1423f;
|
|
15401
|
+
}
|
|
15402
|
+
|
|
15403
|
+
.vitro-count-change:before {
|
|
15404
|
+
border-bottom: 2px solid #efe8a0;
|
|
15405
|
+
}
|
|
15406
|
+
|
|
15407
|
+
.comparison-popup-body .vitro-text {
|
|
15408
|
+
max-width: calc(100% - 90px);
|
|
15409
|
+
min-width: 0;
|
|
15410
|
+
overflow-x: hidden;
|
|
15411
|
+
text-overflow: ellipsis;
|
|
15412
|
+
}
|
|
15413
|
+
|
|
15414
|
+
.jstree-default > .jstree-container-ul > .jstree-node {
|
|
15415
|
+
max-width: 100%;
|
|
15416
|
+
}
|
|
15417
|
+
|
|
15418
|
+
#compareTreeContent,
|
|
15419
|
+
.jstree-container-ul {
|
|
15420
|
+
width: 100%;
|
|
15421
|
+
}
|
|
15422
|
+
|
|
15423
|
+
.vitro-compare-tree-header {
|
|
15424
|
+
display: flex;
|
|
15425
|
+
}
|
|
15426
|
+
|
|
15427
|
+
.vitro-compare-tree-header span:last-child {
|
|
15428
|
+
text-align: center;
|
|
15429
|
+
width: 94px;
|
|
15430
|
+
margin-left: auto;
|
|
14627
15431
|
}
|