@vitrosoftware/common-ui-ts 1.1.121 → 1.1.123
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/checkbox/checkbox.css +4 -0
- package/css/std/controls/checkbox/img/checkbox-indeterminate.svg +4 -0
- package/css/std/controls/date-picker/date-picker.css +1 -25
- package/css/std/controls/dxf-viewer/annotation.css +85 -0
- package/css/std/controls/dxf-viewer/common.css +24 -0
- package/css/std/controls/dxf-viewer/dxf-viewer-index.css +14081 -0
- package/css/std/controls/dxf-viewer/dxf-viewer.css +194 -0
- package/css/std/controls/dxf-viewer/img/cancel-dark-grey.svg +5 -0
- package/css/std/controls/dxf-viewer/img/collapse-bottom.svg +5 -0
- package/css/std/controls/dxf-viewer/img/collapse-up-blue.svg +5 -0
- package/css/std/controls/dxf-viewer/img/delete-active.svg +11 -0
- package/css/std/controls/dxf-viewer/img/delete.svg +11 -0
- package/css/std/controls/dxf-viewer/img/draw-annotation.svg +3 -0
- package/css/std/controls/dxf-viewer/img/invisible-eye.svg +4 -0
- package/css/std/controls/dxf-viewer/img/show-annotation.svg +3 -0
- package/css/std/controls/dxf-viewer/img/sidebar-layers-toggle.svg +6 -0
- package/css/std/controls/dxf-viewer/img/sidebar-notes-toggle.svg +5 -0
- package/css/std/controls/dxf-viewer/img/sidebar-resizer.svg +6 -0
- package/css/std/controls/dxf-viewer/img/sidebar-toggle.svg +7 -0
- package/css/std/controls/dxf-viewer/img/visible-eye.svg +4 -0
- package/css/std/controls/dxf-viewer/img/zoom-in.svg +6 -0
- package/css/std/controls/dxf-viewer/img/zoom-out.svg +5 -0
- package/css/std/controls/dxf-viewer/layer-list.css +104 -0
- package/css/std/controls/dxf-viewer/panel.css +34 -0
- package/css/std/controls/dxf-viewer/prop-inspector.css +102 -0
- package/css/std/controls/dxf-viewer/select.css +111 -0
- package/css/std/controls/dxf-viewer/sidebar.css +190 -0
- package/css/std/controls/dxf-viewer/thumbnail-list.css +65 -0
- package/css/std/controls/dxf-viewer/toolbar.css +117 -0
- package/css/std/controls/dxf-viewer/treeview.css +3 -0
- package/css/std/controls/dxf-viewer/treeview.panel.css +108 -0
- package/css/std/controls/error-message/error-message.css +22 -0
- package/css/std/controls/image-picker/image-picker.css +0 -26
- package/css/std/controls/input/input.css +1 -24
- package/css/std/controls/issue-tile/issue-tile-header.css +1 -0
- package/css/std/controls/login/ntlm-authentication-form.css +9 -12
- package/css/std/controls/lookup-picker/lookup-picker-value-list.css +38 -2
- package/css/std/controls/lookup-picker/lookup-picker.css +1 -25
- package/css/std/controls/table-view/treegrid-context-menu.css +44 -18
- package/css/std/controls/table-view/treegrid-message.css +4 -4
- package/css/std/controls/time-picker/time-picker.css +1 -25
- package/dist/index.css +81 -143
- package/dist/index.js +15137 -489
- package/dist/index.js.map +1 -1
- package/dist/src/controls/Checkbox/Checkbox.d.ts +1 -0
- package/dist/src/controls/DxfViewer/DxfViewer.d.ts +6 -0
- package/dist/src/controls/DxfViewer/DxfViewerContext.d.ts +31 -0
- package/dist/src/controls/DxfViewer/Layer.d.ts +9 -0
- package/dist/src/controls/DxfViewer/LayerList.d.ts +11 -0
- package/dist/src/controls/DxfViewer/Thumbnail.d.ts +7 -0
- package/dist/src/controls/DxfViewer/ThumbnailList.d.ts +6 -0
- package/dist/src/controls/DxfViewer/Viewer.d.ts +6 -0
- package/dist/src/controls/ErrorMessage/ErrorMessage.d.ts +6 -0
- package/dist/src/controls/Login/FormRef.d.ts +3 -0
- package/dist/src/controls/Login/LoginConstants.d.ts +2 -1
- package/dist/src/controls/Login/LoginFormRef.d.ts +2 -2
- package/dist/src/controls/Login/NTLMAuthenticationForm.d.ts +5 -2
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +2 -0
- package/dist/src/controls/LookupPicker/ValueList.d.ts +2 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +11 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +1 -0
- package/dist/src/controls/TreeView/TreeView.d.ts +4 -0
- package/dist/src/controls/TreeView/TreeViewConfig.d.ts +3 -0
- package/dist/src/controls/TreeView/TreeViewConstants.d.ts +2 -1
- package/dist/src/index.d.ts +7 -1
- package/lib/dxf-viewer/BatchingKey.js +91 -0
- package/lib/dxf-viewer/DxfFetcher.js +39 -0
- package/lib/dxf-viewer/DxfScene.js +2695 -0
- package/lib/dxf-viewer/DxfViewer.js +1056 -0
- package/lib/dxf-viewer/DxfWorker.js +229 -0
- package/lib/dxf-viewer/DynamicBuffer.js +100 -0
- package/lib/dxf-viewer/HatchCalculator.js +345 -0
- package/lib/dxf-viewer/LinearDimension.js +323 -0
- package/lib/dxf-viewer/MTextFormatParser.js +211 -0
- package/lib/dxf-viewer/MaterialKey.js +37 -0
- package/lib/dxf-viewer/OrbitControls.js +1253 -0
- package/lib/dxf-viewer/Pattern.js +94 -0
- package/lib/dxf-viewer/RBTree.js +471 -0
- package/lib/dxf-viewer/TextRenderer.js +1038 -0
- package/lib/dxf-viewer/index.js +42 -0
- package/lib/dxf-viewer/math/Matrix2.js +77 -0
- package/lib/dxf-viewer/math/utils.js +59 -0
- package/lib/dxf-viewer/parser/AutoCadColorIndex.js +265 -0
- package/lib/dxf-viewer/parser/DimStyleCodes.js +33 -0
- package/lib/dxf-viewer/parser/DxfArrayScanner.js +143 -0
- package/lib/dxf-viewer/parser/DxfParser.js +980 -0
- package/lib/dxf-viewer/parser/ExtendedDataParse-My.js +91 -0
- package/lib/dxf-viewer/parser/ExtendedDataParser.js +123 -0
- package/lib/dxf-viewer/parser/ParseHelpers.js +142 -0
- package/lib/dxf-viewer/parser/entities/3dface.js +83 -0
- package/lib/dxf-viewer/parser/entities/arc.js +38 -0
- package/lib/dxf-viewer/parser/entities/attdef.js +89 -0
- package/lib/dxf-viewer/parser/entities/attrib.js +34 -0
- package/lib/dxf-viewer/parser/entities/attribute.js +109 -0
- package/lib/dxf-viewer/parser/entities/circle.js +43 -0
- package/lib/dxf-viewer/parser/entities/dimension.js +72 -0
- package/lib/dxf-viewer/parser/entities/ellipse.js +46 -0
- package/lib/dxf-viewer/parser/entities/hatch.js +343 -0
- package/lib/dxf-viewer/parser/entities/insert.js +62 -0
- package/lib/dxf-viewer/parser/entities/leader.js +84 -0
- package/lib/dxf-viewer/parser/entities/line.js +34 -0
- package/lib/dxf-viewer/parser/entities/lwpolyline.js +100 -0
- package/lib/dxf-viewer/parser/entities/mtext.js +54 -0
- package/lib/dxf-viewer/parser/entities/point.js +35 -0
- package/lib/dxf-viewer/parser/entities/polyline.js +92 -0
- package/lib/dxf-viewer/parser/entities/solid.js +40 -0
- package/lib/dxf-viewer/parser/entities/spline.js +70 -0
- package/lib/dxf-viewer/parser/entities/text.js +47 -0
- package/lib/dxf-viewer/parser/entities/vertex.js +62 -0
- package/lib/dxf-viewer/parser/entities/viewport.js +56 -0
- package/lib/dxf-viewer/parser/objects/dictionary.js +29 -0
- package/lib/dxf-viewer/parser/objects/layout.js +35 -0
- package/lib/dxf-viewer/parser/objects/xrecord.js +29 -0
- package/lib/opentype/opentype.module.js +14571 -0
- package/lib/three/CSS2DRenderer.js +235 -0
- package/lib/three/three.module.js +49912 -0
- package/lib/xeokit/xeokit-sdk-2.6.10.es.js +136629 -0
- package/lib/xeokit/xeokit-sdk-2.6.10.min.es.js +299 -0
- package/package.json +12 -10
- package/src/controls/BimViewer/js/bim-viewer-models.js +93 -0
- package/src/controls/BimViewer/js/bim-viewer.js +194 -5
- package/src/controls/DxfViewer/js/dxf-viewer.js +3541 -0
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
- package/css/std/controls/input/img/error-message.svg +0 -6
- package/css/std/controls/lookup-picker/img/error-message.svg +0 -6
- package/css/std/controls/time-picker/img/error-message.svg +0 -6
- package/dist/src/controls/ActionHandler/ActionInfo.d.ts +0 -12
- package/dist/src/controls/ActionHandler/ActionInfoItem.d.ts +0 -13
- package/dist/src/controls/ActionHandler/UpdatingPopover.d.ts +0 -2
- package/dist/src/controls/Dialog/DialogButton.d.ts +0 -8
- package/dist/src/controls/Dialog/DialogCloseButton.d.ts +0 -8
- package/dist/src/controls/Icon/Icon.d.ts +0 -11
- package/dist/src/controls/Search/Input.d.ts +0 -21
- package/dist/src/controls/Search/SearchConstants.d.ts +0 -4
- /package/css/std/controls/{date-picker → error-message}/img/error-message.svg +0 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
#root {
|
|
2
|
+
position: unset;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.sidebar-note-wrap.active .sidebar-note-btn-delete {
|
|
6
|
+
background: url(img/delete-active.svg) 2px 0 no-repeat;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.sidebar-note-btn-delete {
|
|
10
|
+
background: url('img/delete.svg') 2px 0 no-repeat;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.toolbar {
|
|
14
|
+
height: 48px;
|
|
15
|
+
background-color: #fff;
|
|
16
|
+
background-image: none;
|
|
17
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
18
|
+
padding: 4px 12px;
|
|
19
|
+
display: flex;
|
|
20
|
+
z-index: 299;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#toolbarViewerMiddle {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
gap: 12px;
|
|
27
|
+
position: absolute;
|
|
28
|
+
left: 50%;
|
|
29
|
+
top: 50%;
|
|
30
|
+
transform: translate(-50%, -50%);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.toolbarButton {
|
|
34
|
+
margin: 0 4px 0 0 !important;
|
|
35
|
+
width: 40px;
|
|
36
|
+
height: 40px;
|
|
37
|
+
position: relative;
|
|
38
|
+
float: left;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
#toolbarViewerMiddle .toolbarButton {
|
|
42
|
+
width: 24px;
|
|
43
|
+
height: 24px;
|
|
44
|
+
padding: 0;
|
|
45
|
+
margin: 0 !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.toolbarButton.toggled {
|
|
49
|
+
background-color: #DCEEFF;
|
|
50
|
+
border-radius: 8px;
|
|
51
|
+
border: none;
|
|
52
|
+
box-shadow: none;
|
|
53
|
+
background-image: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.toolbarButton::before {
|
|
57
|
+
height: 24px;
|
|
58
|
+
width: 24px;
|
|
59
|
+
left: 50%;
|
|
60
|
+
top: 50%;
|
|
61
|
+
transform: translate(-50%, -50%);
|
|
62
|
+
content: '' !important;
|
|
63
|
+
background: #222D44;
|
|
64
|
+
mask-size: cover;
|
|
65
|
+
mask-repeat: no-repeat;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.toolbarButton.toggled::before {
|
|
69
|
+
background: #326AD6;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.toolbarButton:hover::before {
|
|
73
|
+
background: #326AD6;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.toolbarButton#btnCreateNotes::before {
|
|
77
|
+
mask-image: url('img/draw-annotation.svg');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.toolbarButton#btnToggleNotes::before {
|
|
81
|
+
mask-image: url('img/show-annotation.svg');
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.toolbarButton#btnToggleSidebarNotes::before {
|
|
85
|
+
mask-image: url('img/sidebar-notes-toggle.svg');
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.toolbarButton#btnToggleSidebarSheets::before {
|
|
89
|
+
mask-image: url('img/sidebar-toggle.svg');
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.toolbarButton#btnToggleSidebarLayers::before {
|
|
93
|
+
mask-image: url('img/sidebar-layers-toggle.svg');
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.toolbarButton#btnToggleSidebarTreeView::before {
|
|
97
|
+
content: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.toolbarButton#zoomOut::before {
|
|
101
|
+
mask-image: url('img/zoom-out.svg');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.toolbarButton#zoomIn::before {
|
|
105
|
+
mask-image: url('img/zoom-in.svg');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
#fileVersionSelect {
|
|
109
|
+
height: 100%;
|
|
110
|
+
display: flex;
|
|
111
|
+
align-items: center;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.vitro-sidebar-notes-expanded #canvasContainer {
|
|
115
|
+
width: calc(100% - 410px);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.vitro-sidebar-sheets-expanded #canvasContainer {
|
|
119
|
+
width: calc(100% - 240px);
|
|
120
|
+
inset-inline-start: 240px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.vitro-sidebar-layers-expanded #canvasContainer {
|
|
124
|
+
width: calc(100% - 240px);
|
|
125
|
+
inset-inline-start: 240px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.vitro-sidebar-notes-expanded.vitro-sidebar-sheets-expanded #canvasContainer,
|
|
129
|
+
.vitro-sidebar-notes-expanded.vitro-sidebar-layers-expanded #canvasContainer {
|
|
130
|
+
width: calc(100% - 650px);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.sidebar {
|
|
134
|
+
width: 410px;
|
|
135
|
+
min-width: 350px;
|
|
136
|
+
background-color: #fff;
|
|
137
|
+
padding: 32px 0 16px 0;
|
|
138
|
+
top: 48px;
|
|
139
|
+
height: calc(100% - 48px);
|
|
140
|
+
z-index: 100;
|
|
141
|
+
border-left: 1px solid #C0CAD5;
|
|
142
|
+
box-shadow: 0 0 2.89px 0 rgba(0, 0, 0, 0.1), 0 0 7.22px 0 rgba(0, 0, 0, 0.08);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sidebar-close,
|
|
146
|
+
.sidebar-close:hover {
|
|
147
|
+
height: 24px;
|
|
148
|
+
width: 24px;
|
|
149
|
+
padding: 0px;
|
|
150
|
+
color: transparent;
|
|
151
|
+
background-size: 100%;
|
|
152
|
+
display: block;
|
|
153
|
+
transform: none;
|
|
154
|
+
user-select: none;
|
|
155
|
+
background-image: url(img/cancel-dark-grey.svg);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.sidebar-content {
|
|
159
|
+
height: 100%;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.vitro-issue-detail {
|
|
163
|
+
width: 410px;
|
|
164
|
+
right: 0;
|
|
165
|
+
position: absolute;
|
|
166
|
+
top: 48px;
|
|
167
|
+
background-color: #fff;
|
|
168
|
+
height: calc(100% - 48px);
|
|
169
|
+
border-left: 2px solid #eeeff0;
|
|
170
|
+
display: none;
|
|
171
|
+
z-index: 10;
|
|
172
|
+
border-left: 1px solid #C0CAD5;
|
|
173
|
+
box-shadow: 0 0 2.89px 0 rgba(0, 0, 0, 0.1), 0 0 7.22px 0 rgba(0, 0, 0, 0.08);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
:focus-visible {
|
|
177
|
+
outline: none;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.tooltip.show {
|
|
181
|
+
z-index: 99000006 !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.vitro-marker-label {
|
|
185
|
+
background-color: #2d9cdb;
|
|
186
|
+
color: #fff;
|
|
187
|
+
font-weight: bold;
|
|
188
|
+
line-height: 20px;
|
|
189
|
+
font-size: 14px;
|
|
190
|
+
border-radius: 10px;
|
|
191
|
+
height: 20px;
|
|
192
|
+
padding-left: 8px;
|
|
193
|
+
padding-right: 8px;
|
|
194
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="iconoir:cancel">
|
|
3
|
+
<path id="Vector" d="M6.75781 17.2438L12.0008 12.0008L17.2438 17.2438M17.2438 6.75781L11.9998 12.0008L6.75781 6.75781" stroke="#4A556C" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.5 3.5H11.5V13.5H2.5V3.5Z" stroke="white"/>
|
|
3
|
+
<path d="M1 1.5H13" stroke="white"/>
|
|
4
|
+
<path d="M5.54102 5L5.54102 12" stroke="white"/>
|
|
5
|
+
<path d="M8.5 5V11.9974" stroke="white"/>
|
|
6
|
+
<mask id="path-5-inside-1_3179_133053" fill="white">
|
|
7
|
+
<path d="M5 0H9V1H5L5 0Z"/>
|
|
8
|
+
</mask>
|
|
9
|
+
<path d="M5 0H9V1H5L5 0Z" fill="white"/>
|
|
10
|
+
<path d="M5 0V-1H4L4 0L5 0ZM9 0H10V-1H9V0ZM9 1V2H10V1H9ZM5 1L4 1L4 2H5V1ZM5 1H9V-1H5V1ZM8 0V1H10V0H8ZM9 0H5V2H9V0ZM6 1L6 0L4 0L4 1L6 1Z" fill="white" mask="url(#path-5-inside-1_3179_133053)"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.5 3.5H11.5V13.5H2.5V3.5Z" stroke="#4D4D4D"/>
|
|
3
|
+
<path d="M1 1.5H13" stroke="#4D4D4D"/>
|
|
4
|
+
<path d="M5.54102 5L5.54102 12" stroke="#4D4D4D"/>
|
|
5
|
+
<path d="M8.5 5V11.9974" stroke="#4D4D4D"/>
|
|
6
|
+
<mask id="path-5-inside-1_3179_133127" fill="white">
|
|
7
|
+
<path d="M5 0H9V1H5L5 0Z"/>
|
|
8
|
+
</mask>
|
|
9
|
+
<path d="M5 0H9V1H5L5 0Z" fill="#4D4D4D"/>
|
|
10
|
+
<path d="M5 0V-1H4L4 0L5 0ZM9 0H10V-1H9V0ZM9 1V2H10V1H9ZM5 1L4 1L4 2H5V1ZM5 1H9V-1H5V1ZM8 0V1H10V0H8ZM9 0H5V2H9V0ZM6 1L6 0L4 0L4 1L6 1Z" fill="#4D4D4D" mask="url(#path-5-inside-1_3179_133127)"/>
|
|
11
|
+
</svg>
|
|
@@ -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="M8 9H16M8 13H14M12 21L9 18H6C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15V7C3 6.20435 3.31607 5.44129 3.87868 4.87868C4.44129 4.31607 5.20435 4 6 4H18C18.7956 4 19.5587 4.31607 20.1213 4.87868C20.6839 5.44129 21 6.20435 21 7V12M19.001 19V15.5M19.001 19V22.5M19.001 19H22.5M19.001 19H15.5" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2713 6.60733C14.2426 6.23315 13.1431 6 12 6C7.69951 6 4.01559 9.3 2.39712 10.995C2.1415 11.2706 2 11.6287 2 12C2 12.3713 2.1415 12.7294 2.39712 13.005C3.161 13.805 4.385 14.9625 5.91677 15.9619L8.31653 13.5622C8.11274 13.0822 8 12.5543 8 12C8 9.79086 9.79086 8 12 8C12.5543 8 13.0822 8.11274 13.5622 8.31653L15.2713 6.60733ZM10.4379 15.6835C10.9178 15.8873 11.4457 16 12 16C14.2091 16 16 14.2091 16 12C16 11.4457 15.8873 10.9178 15.6835 10.4379L18.0832 8.03809C19.615 9.03745 20.839 10.195 21.6029 10.995C21.8585 11.2706 22 11.6287 22 12C22 12.3713 21.8585 12.7294 21.6029 13.005C19.9844 14.7 16.3005 18 12 18C10.8569 18 9.7574 17.7669 8.72865 17.3927L10.4379 15.6835Z" fill="#4A556C"/>
|
|
3
|
+
<path d="M3 21L21 3" stroke="#4A556C" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -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="M7.99835 9.00122H15.9984M7.99835 13.0012H13.9984M11.9984 21.0012L8.99835 18.0012H5.99835C5.2027 18.0012 4.43964 17.6852 3.87703 17.1225C3.31442 16.5599 2.99835 15.7969 2.99835 15.0012V7.00122C2.99835 6.20557 3.31442 5.44251 3.87703 4.8799C4.43964 4.31729 5.2027 4.00122 5.99835 4.00122H17.9984C18.794 4.00122 19.5571 4.31729 20.1197 4.8799C20.6823 5.44251 20.9984 6.20557 20.9984 7.00122V12.0012M18.9994 21.0012C18.4689 21.0012 17.9602 20.7905 17.5851 20.4154C17.2101 20.0404 16.9994 19.5317 16.9994 19.0012C16.9994 18.4708 17.2101 17.9621 17.5851 17.587C17.9602 17.2119 18.4689 17.0012 18.9994 17.0012M18.9994 21.0012C19.5298 21.0012 20.0385 20.7905 20.4136 20.4154C20.7886 20.0404 20.9994 19.5317 20.9994 19.0012C20.9994 18.4708 20.7886 17.9621 20.4136 17.587C20.0385 17.2119 19.5298 17.0012 18.9994 17.0012M18.9994 21.0012V22.5012M18.9994 17.0012V15.5012M22.0304 17.2512L20.7314 18.0012M17.2684 20.0012L15.9684 20.7512M15.9684 17.2512L17.2684 18.0012M20.7314 20.0012L22.0314 20.7512" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2 5.95715L12 9.5L22 5.95715L12 2.5L2 5.95715Z" stroke="#222D44" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M2 10L12 13.5L22 10" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M2 14L12 17.5L22 14" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M2 18L12 21.5L22 18" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.99945 9.00122H15.9995M7.99945 13.0012H13.9995M11.9995 21.0012L8.99945 18.0012H5.99945C5.2038 18.0012 4.44074 17.6852 3.87813 17.1225C3.31552 16.5599 2.99945 15.7969 2.99945 15.0012V7.00122C2.99945 6.20557 3.31552 5.44251 3.87813 4.8799C4.44074 4.31729 5.2038 4.00122 5.99945 4.00122H17.9995C18.7951 4.00122 19.5582 4.31729 20.1208 4.8799C20.6834 5.44251 20.9995 6.20557 20.9995 7.00122V12.0012" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<rect x="15.4995" y="15.5" width="6" height="6" rx="0.5" stroke="#222D44"/>
|
|
4
|
+
<path d="M19.5005 15.5H21.0005C21.2767 15.5 21.5005 15.7239 21.5005 16V21C21.5005 21.2761 21.2767 21.5 21.0005 21.5H19.5005V15.5Z" fill="#222D44" stroke="#222D44"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 6 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Spliter">
|
|
3
|
+
<path id="Rectangle 4359" d="M0 0H4.5C5.32843 0 6 0.671573 6 1.5V28.5C6 29.3284 5.32843 30 4.5 30H0V0Z" fill="#326AD6"/>
|
|
4
|
+
<path id="Polygon 3" d="M1.5 12.911C1.5 12.6251 1.80945 12.4464 2.05701 12.5894L5.12058 14.3581C5.36814 14.501 5.36814 14.8584 5.12058 15.0013L2.05701 16.7701C1.80945 16.913 1.5 16.7343 1.5 16.4485L1.5 12.911Z" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="3.5" y="4.5" width="17" height="15" rx="1.5" stroke="#222D44"/>
|
|
3
|
+
<path d="M12 20V4" stroke="#222D44"/>
|
|
4
|
+
<path d="M6 9H9.5" stroke="#222D44" stroke-linecap="round"/>
|
|
5
|
+
<path d="M6 12H9.5" stroke="#222D44" stroke-linecap="round"/>
|
|
6
|
+
<path d="M6 15H9.5" stroke="#222D44" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 11.6287 21.8585 11.2706 21.6029 10.995C19.9844 9.3 16.3005 6 12 6C7.69951 6 4.01559 9.3 2.39712 10.995C2.1415 11.2706 2 11.6287 2 12C2 12.3713 2.1415 12.7294 2.39712 13.005C4.01559 14.7 7.69951 18 12 18C16.3005 18 19.9844 14.7 21.6029 13.005C21.8585 12.7294 22 12.3713 22 12ZM16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z" fill="#4A556C"/>
|
|
3
|
+
<circle cx="12" cy="12" r="2" fill="#4A556C"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.0742 19.5742C15.7686 19.5742 19.5742 15.7686 19.5742 11.0742C19.5742 6.37982 15.7686 2.57422 11.0742 2.57422C6.37982 2.57422 2.57422 6.37982 2.57422 11.0742C2.57422 15.7686 6.37982 19.5742 11.0742 19.5742Z" stroke="#222D44" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M11.0742 8.07422V14.0742" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8.08203 11.082L14.0742 11.0742" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M17.1836 17.1836L21.4262 21.4262" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.0742 19.5742C15.7686 19.5742 19.5742 15.7686 19.5742 11.0742C19.5742 6.37982 15.7686 2.57422 11.0742 2.57422C6.37982 2.57422 2.57422 6.37982 2.57422 11.0742C2.57422 15.7686 6.37982 19.5742 11.0742 19.5742Z" stroke="#222D44" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M8.07422 11.0742H14.0742" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M17.1836 17.1836L21.4262 21.4262" stroke="#222D44" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
#layersContainer {
|
|
2
|
+
height: calc(100% - 48px);
|
|
3
|
+
width: 240px;
|
|
4
|
+
min-width: 240px;
|
|
5
|
+
position: absolute;
|
|
6
|
+
left: 0;
|
|
7
|
+
top: 48px;
|
|
8
|
+
background-color: #fff;
|
|
9
|
+
z-index: 100;
|
|
10
|
+
display: none;
|
|
11
|
+
border-right: 1px solid #C0CAD5;
|
|
12
|
+
box-shadow: 0 0 2.89px 0 rgba(0, 0, 0, 0.1), 0 0 7.22px 0 rgba(0, 0, 0, 0.08);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#layersContent {
|
|
16
|
+
height: 100%;
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#layersContent .ps {
|
|
22
|
+
max-height: calc(100% - 120px);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vitro-layer-list-title {
|
|
26
|
+
padding: 16px 12px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/*.vitro-all-layers-ckeckbox {
|
|
30
|
+
margin: 0 12px 12px 12px;
|
|
31
|
+
}*/
|
|
32
|
+
|
|
33
|
+
.vitro-file-name-container {
|
|
34
|
+
gap: 4px;
|
|
35
|
+
padding: 4px 12px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.vitro-file-name-container .vitro-image {
|
|
39
|
+
width: 24px;
|
|
40
|
+
height: 24px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.vitro-color {
|
|
44
|
+
width: 12px;
|
|
45
|
+
height: 12px;
|
|
46
|
+
border-radius: 2px;
|
|
47
|
+
flex-shrink: 0;
|
|
48
|
+
margin: 6px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.vitro-all-layers-checkbox {
|
|
52
|
+
padding: 4px 16px 4px 12px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.vitro-layer {
|
|
56
|
+
gap: 4px;
|
|
57
|
+
padding: 4px 16px 4px 12px;
|
|
58
|
+
opacity: 0.5;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.vitro-layer.vitro-active {
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/*.vitro-layer > div {
|
|
66
|
+
margin-bottom: 0;
|
|
67
|
+
}*/
|
|
68
|
+
|
|
69
|
+
/*.vitro-checkbox-content input::before,
|
|
70
|
+
.vitro-checkbox-content input:checked::before {
|
|
71
|
+
content: '';
|
|
72
|
+
display: block;
|
|
73
|
+
width: 100%;
|
|
74
|
+
height: 100%;
|
|
75
|
+
background: transparent;
|
|
76
|
+
background-size: 100%;
|
|
77
|
+
background-position: center;
|
|
78
|
+
background-repeat: no-repeat;
|
|
79
|
+
}*/
|
|
80
|
+
|
|
81
|
+
.vitro-checkbox-eye {
|
|
82
|
+
margin: 0;
|
|
83
|
+
overflow: hidden;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.vitro-checkbox-eye input::before {
|
|
87
|
+
background-image: url('img/invisible-eye.svg');
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.vitro-checkbox-eye input:checked::before {
|
|
91
|
+
background-image: url('img/visible-eye.svg');
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.vitro-checkbox-eye input {
|
|
95
|
+
margin: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.vitro-checkbox-eye > div:first-child {
|
|
99
|
+
flex: 1 1;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.vitro-checkbox-eye > div:last-child {
|
|
103
|
+
width: unset;
|
|
104
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.vitro-panel {
|
|
2
|
+
max-width: 40%;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.vitro-resizer {
|
|
6
|
+
position: absolute;
|
|
7
|
+
inset-block: 0;
|
|
8
|
+
width: 1px;
|
|
9
|
+
z-index: 200;
|
|
10
|
+
cursor: ew-resize;
|
|
11
|
+
inset-inline-end: 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.vitro-resizer.vitro-left {
|
|
15
|
+
inset-inline-start: 0;
|
|
16
|
+
inset-inline-end: unset;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.vitro-resizer::before {
|
|
20
|
+
content: '';
|
|
21
|
+
background-image: url(img/sidebar-resizer.svg);
|
|
22
|
+
height: 30px;
|
|
23
|
+
width: 6px;
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 50%;
|
|
26
|
+
transform: translateY(-50%);
|
|
27
|
+
left: 2px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.vitro-resizer.vitro-left::before {
|
|
31
|
+
right: 2px;
|
|
32
|
+
left: unset;
|
|
33
|
+
transform: translateY(-50%) rotate(180deg);
|
|
34
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
#propInspector {
|
|
2
|
+
width: 278px;
|
|
3
|
+
background: #f8f8f8;
|
|
4
|
+
height: calc(100% - 32px);
|
|
5
|
+
position: fixed;
|
|
6
|
+
top: 51px;
|
|
7
|
+
right: 0;
|
|
8
|
+
z-index: 89000004;
|
|
9
|
+
display: none;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.prop-inspector-inner-wrap {
|
|
14
|
+
border-left: 1px solid silver;
|
|
15
|
+
border-right: 1px solid silver;
|
|
16
|
+
padding: 32px 10px 20px 10px;
|
|
17
|
+
height: calc(100% - 10px);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.prop-inspector-close {
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: 4px;
|
|
23
|
+
left: 3px;
|
|
24
|
+
font-weight: 400;
|
|
25
|
+
padding: 2px 8px 7px 8px;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
transform: scaleX(1.2);
|
|
28
|
+
font-size: 18px;
|
|
29
|
+
font-family: Arial;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.prop-inspector-content {
|
|
33
|
+
height: 100%;
|
|
34
|
+
font-size: 14px;
|
|
35
|
+
overflow-y: auto;
|
|
36
|
+
overflow-x: hidden;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.element-attributes {
|
|
40
|
+
margin-top: 10px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.xeokit-table .td1 {
|
|
44
|
+
font-weight: bold;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.xeokit-table td {
|
|
48
|
+
padding: 8px;
|
|
49
|
+
border-top: 1px solid #E0E0E0;
|
|
50
|
+
word-wrap: break-word;
|
|
51
|
+
vertical-align: top;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.xeokit-table tr:first-child td {
|
|
55
|
+
border-top: none !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.xeokit-table tr td:first-child {
|
|
59
|
+
border-right: 1px solid #E0E0E0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.subtitle.xeokit-no-prop-set-warning {
|
|
63
|
+
padding: 8px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.xeokit-table {
|
|
67
|
+
width: 100%;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.prop-inspector-title {
|
|
71
|
+
font-size: 16px;
|
|
72
|
+
font-weight: bold;
|
|
73
|
+
padding-bottom: 12px;
|
|
74
|
+
position: absolute;
|
|
75
|
+
top: 8px;
|
|
76
|
+
left: 30px;
|
|
77
|
+
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.xeokit-accordion {
|
|
81
|
+
margin-top: 20px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.ui-accordion .ui-accordion-content.xeokit-accordion-panel {
|
|
85
|
+
padding: 2px 0 2px 0 !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.prop-inspector-content .ui-accordion-header.ui-state-active {
|
|
89
|
+
border: 1px solid #474747;
|
|
90
|
+
background: #474747;
|
|
91
|
+
font-weight: normal;
|
|
92
|
+
color: hsl(0,0%,85%);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.prop-inspector-close {
|
|
96
|
+
color:#474747;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.prop-inspector-close:hover {
|
|
100
|
+
text-decoration: none;
|
|
101
|
+
color:#474747;
|
|
102
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
.vitro-select {
|
|
2
|
+
position: relative;
|
|
3
|
+
border: 1px solid #C0CAD5;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
background: #fff;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
min-width: 224px;
|
|
9
|
+
height: 32px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.vitro-select > input {
|
|
13
|
+
border: none;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
color: #222D44;
|
|
17
|
+
font-size: 14px;
|
|
18
|
+
line-height: 16px;
|
|
19
|
+
padding: 8px 16px;
|
|
20
|
+
height: 100%;
|
|
21
|
+
width: 100%;
|
|
22
|
+
background: transparent;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vitro-select > input:disabled {
|
|
26
|
+
background: #fff !important;
|
|
27
|
+
user-select: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.vitro-select > span {
|
|
31
|
+
display: block;
|
|
32
|
+
background-image: url('img/collapse-bottom.svg');
|
|
33
|
+
width: 24px;
|
|
34
|
+
height: 24px;
|
|
35
|
+
position: absolute;
|
|
36
|
+
top: calc(50% - 12px);
|
|
37
|
+
right: 16px;
|
|
38
|
+
background-size: 100%;
|
|
39
|
+
background-position: center;
|
|
40
|
+
background-repeat: no-repeat;
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.vitro-select.vitro-active > span {
|
|
45
|
+
background-image: url('img/collapse-up-blue.svg');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vitro-select.vitro-active {
|
|
49
|
+
border-color: #3274E0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vitro-select.vitro-active label {
|
|
53
|
+
color: #3274E0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.vitro-select ul {
|
|
57
|
+
background: #fff;
|
|
58
|
+
width: 100%;
|
|
59
|
+
padding: 0;
|
|
60
|
+
margin: 0;
|
|
61
|
+
list-style: none;
|
|
62
|
+
border-radius: 4px;
|
|
63
|
+
font-size: 14px;
|
|
64
|
+
overflow-y: auto;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.vitro-select > div {
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
display: none;
|
|
70
|
+
position: absolute;
|
|
71
|
+
background: #fff;
|
|
72
|
+
width: 100%;
|
|
73
|
+
border-radius: 4px;
|
|
74
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
75
|
+
top: calc(100% + 4px);
|
|
76
|
+
left: 0;
|
|
77
|
+
z-index: 10000;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.vitro-select.vitro-active > div {
|
|
81
|
+
display: block;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.vitro-select ul > li {
|
|
85
|
+
line-height: 16px;
|
|
86
|
+
padding: 8px 12px;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.vitro-select ul > li:hover {
|
|
91
|
+
background: #F3F8FF;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.vitro-select ul::-webkit-scrollbar {
|
|
95
|
+
width: 4px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.vitro-select ul::-webkit-scrollbar-track {
|
|
99
|
+
background: #fff;
|
|
100
|
+
border-radius: 8px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.vitro-select ul::-webkit-scrollbar-thumb {
|
|
104
|
+
background: #E4E6EC;
|
|
105
|
+
border-radius: 2px;
|
|
106
|
+
height: 20px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.vitro-select ul::-webkit-scrollbar-thumb:hover {
|
|
110
|
+
background: #E4E6EC;
|
|
111
|
+
}
|