@vitrosoftware/common-ui-ts 1.1.112 → 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/pdf-viewer/compare.css +24 -24
- package/css/std/controls/pdf-viewer/custom.css +2 -2
- package/css/std/controls/pdf-viewer/form.css +78 -1
- package/css/std/controls/pdf-viewer/img/cancel-white.svg +10 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer.svg +5 -0
- package/css/std/controls/pdf-viewer/img/collapse-bottom.svg +5 -0
- package/css/std/controls/pdf-viewer/img/collapse-up-blue.svg +5 -0
- package/css/std/controls/pdf-viewer/img/compare-dlg-separator.svg +1 -0
- package/css/std/controls/pdf-viewer/img/compare-overlay.svg +1 -0
- package/css/std/controls/pdf-viewer/img/compare-side-by-side.svg +5 -0
- package/css/std/controls/pdf-viewer/img/finish-align-active.svg +8 -0
- package/css/std/controls/pdf-viewer/img/finish-align.svg +8 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view.svg +5 -0
- package/css/std/controls/pdf-viewer/img/hide-colors-active.svg +1 -0
- package/css/std/controls/pdf-viewer/img/hide-colors.svg +3 -0
- package/css/std/controls/pdf-viewer/img/overlay-active.svg +4 -0
- package/css/std/controls/pdf-viewer/img/overlay.svg +4 -0
- package/css/std/controls/pdf-viewer/img/pan-active.svg +3 -0
- package/css/std/controls/pdf-viewer/img/pan.svg +3 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility-active.svg +8 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility.svg +8 -0
- package/css/std/controls/pdf-viewer/img/side-by-side-active.svg +4 -0
- package/css/std/controls/pdf-viewer/img/side-by-side.svg +4 -0
- package/css/std/controls/pdf-viewer/img/zoom-active.svg +5 -0
- package/css/std/controls/pdf-viewer/img/zoom.svg +5 -0
- package/css/std/controls/pdf-viewer/measure.css +138 -7
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +309 -64
- package/css/std/controls/pdf-viewer/pdf-viewer.css +66 -30
- 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 +1171 -238
|
@@ -83,4 +83,38 @@
|
|
|
83
83
|
max-height: 2000px;
|
|
84
84
|
overflow: hidden;
|
|
85
85
|
transition: max-height 0.4s ease;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media (max-width: 800px) {
|
|
89
|
+
.vitro-result-item {
|
|
90
|
+
padding: 4px 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.vitro-result-item:nth-child(2) {
|
|
94
|
+
padding-top: 8px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.vitro-error-message,
|
|
98
|
+
.vitro-success-message {
|
|
99
|
+
margin-top: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.vitro-scrollbar > div:first-child {
|
|
103
|
+
padding-right: 12px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.vitro-scrollbar :global(.ps__rail-y) {
|
|
107
|
+
border: none;
|
|
108
|
+
width: 8px !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.vitro-scrollbar :global(.ps__thumb-y) {
|
|
112
|
+
width: 2px !important;
|
|
113
|
+
right: 3px !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.vitro-action-result-list {
|
|
117
|
+
padding-left: 8px;
|
|
118
|
+
}
|
|
119
|
+
|
|
86
120
|
}
|
|
@@ -121,4 +121,24 @@
|
|
|
121
121
|
background-repeat: no-repeat;
|
|
122
122
|
background-position: center;
|
|
123
123
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/action-handler/img/save-blue.svg');
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
@media (max-width: 800px) {
|
|
127
|
+
.vitro-result-dialog {
|
|
128
|
+
width: calc(100% - 24px) !important;
|
|
129
|
+
max-width: 400px;
|
|
130
|
+
max-height: 48%;
|
|
131
|
+
right: 12px;
|
|
132
|
+
top: 12px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.vitro-header {
|
|
136
|
+
padding: 8px 12px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.vitro-result-dialog.vitro-success .vitro-header,
|
|
140
|
+
.vitro-result-dialog.vitro-error .vitro-header {
|
|
141
|
+
padding: 8px 12px 8px 8px;
|
|
142
|
+
}
|
|
143
|
+
|
|
124
144
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
.vitro-criterion-container {
|
|
2
2
|
width: 100%;
|
|
3
3
|
position: relative;
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
4
|
margin-bottom: 28px;
|
|
7
5
|
}
|
|
8
6
|
|
|
@@ -36,8 +34,6 @@
|
|
|
36
34
|
font-size: 12px;
|
|
37
35
|
border-radius: 4px;
|
|
38
36
|
background: #F7F9FC;
|
|
39
|
-
display: flex;
|
|
40
|
-
align-items: center;
|
|
41
37
|
justify-content: center;
|
|
42
38
|
position: relative;
|
|
43
39
|
}
|
|
@@ -46,6 +42,7 @@
|
|
|
46
42
|
display: inline-block;
|
|
47
43
|
line-height: 16px;
|
|
48
44
|
font-size: 12px;
|
|
45
|
+
color: #4A556C;
|
|
49
46
|
}
|
|
50
47
|
|
|
51
48
|
.vitro-operator-select::after {
|
|
@@ -60,10 +57,6 @@
|
|
|
60
57
|
}
|
|
61
58
|
|
|
62
59
|
.vitro-operator-list {
|
|
63
|
-
position: absolute;
|
|
64
|
-
z-index: 10;
|
|
65
|
-
top: calc(100% + 2px);
|
|
66
|
-
right: 0;
|
|
67
60
|
width: fit-content;
|
|
68
61
|
min-width: 100%;
|
|
69
62
|
overflow: hidden;
|
|
@@ -76,7 +69,14 @@
|
|
|
76
69
|
}
|
|
77
70
|
|
|
78
71
|
.vitro-operator-list li {
|
|
79
|
-
padding:
|
|
72
|
+
padding: 4px 12px;
|
|
73
|
+
line-height: 150%;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
border-bottom: 1px solid rgba(228, 230, 236, 0.5);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.vitro-operator-list li:last-child {
|
|
79
|
+
border-bottom: none;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.vitro-operator-list li:hover,
|
|
@@ -90,16 +90,10 @@
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.vitro-button-cancel {
|
|
93
|
-
|
|
94
|
-
height: 20px;
|
|
95
|
-
min-width: 20px;
|
|
93
|
+
flex-shrink: 0;
|
|
96
94
|
margin-left: 2px;
|
|
97
95
|
margin-top: -10px;
|
|
98
96
|
align-self: flex-start;
|
|
99
|
-
border: none;
|
|
100
|
-
background-color: transparent;
|
|
101
|
-
background-size: 100%;
|
|
102
|
-
background-position: center;
|
|
103
97
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/criterion/img/cancel-grey.svg');
|
|
104
98
|
}
|
|
105
99
|
|
|
@@ -149,18 +143,32 @@
|
|
|
149
143
|
|
|
150
144
|
.vitro-condition-list-container,
|
|
151
145
|
.vitro-operator-list-container {
|
|
152
|
-
position: absolute;
|
|
153
146
|
z-index: 1000000;
|
|
154
147
|
}
|
|
155
148
|
|
|
149
|
+
.vitro-condition-list-container {
|
|
150
|
+
margin-top: 13px;
|
|
151
|
+
margin-left: -8px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.vitro-condition-list-container[placement='top-start'] {
|
|
155
|
+
margin-bottom: 13px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.vitro-condition-list-container[placement='top-start'] .vitro-condition-list::before {
|
|
159
|
+
bottom: -20px;
|
|
160
|
+
top: unset;
|
|
161
|
+
transform: rotate(180deg);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.vitro-operator-list-container {
|
|
165
|
+
margin-top: 4px;
|
|
166
|
+
}
|
|
167
|
+
|
|
156
168
|
.vitro-condition-list {
|
|
157
|
-
width:
|
|
158
|
-
min-width: 270px;
|
|
169
|
+
min-width: 241px;
|
|
159
170
|
border-radius: 4px;
|
|
160
171
|
background: #fff;
|
|
161
|
-
list-style-type: none;
|
|
162
|
-
margin: 0;
|
|
163
|
-
padding: 0;
|
|
164
172
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
165
173
|
}
|
|
166
174
|
|
|
@@ -175,32 +183,58 @@
|
|
|
175
183
|
background-repeat: no-repeat;
|
|
176
184
|
position: absolute;
|
|
177
185
|
top: -21px;
|
|
178
|
-
left:
|
|
186
|
+
left: 20px;
|
|
179
187
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/criterion/img/dropdown-menu-arrow.svg');
|
|
180
188
|
}
|
|
181
189
|
|
|
182
|
-
.vitro-condition
|
|
183
|
-
padding:
|
|
190
|
+
.vitro-condition {
|
|
191
|
+
padding: 0 12px;
|
|
192
|
+
height: 32px;
|
|
184
193
|
cursor: pointer;
|
|
185
|
-
|
|
186
|
-
align-items: center;
|
|
187
|
-
grid-gap: 12px;
|
|
194
|
+
gap: 12px;
|
|
188
195
|
}
|
|
189
196
|
|
|
190
|
-
.vitro-condition
|
|
197
|
+
.vitro-condition:first-child {
|
|
191
198
|
border-radius: 4px 4px 0 0;
|
|
192
199
|
}
|
|
193
200
|
|
|
194
|
-
.vitro-condition
|
|
201
|
+
.vitro-condition:last-child {
|
|
195
202
|
border-radius: 0 0 4px 4px;
|
|
196
203
|
}
|
|
197
204
|
|
|
198
|
-
.vitro-condition
|
|
199
|
-
.vitro-condition
|
|
205
|
+
.vitro-condition:hover,
|
|
206
|
+
.vitro-condition:active {
|
|
200
207
|
background: #F3F8FF;
|
|
201
208
|
}
|
|
202
209
|
|
|
203
|
-
.vitro-condition
|
|
210
|
+
.vitro-condition :global(.vitro-image) {
|
|
204
211
|
height: 20px;
|
|
205
212
|
width: 20px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.vitro-criterion-container-mobile {
|
|
216
|
+
position: relative;
|
|
217
|
+
flex-direction: column-reverse;
|
|
218
|
+
align-items: flex-start;
|
|
219
|
+
gap: 22px;
|
|
220
|
+
margin-top: 12px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.vitro-criterion-container-mobile {
|
|
224
|
+
position: relative;
|
|
225
|
+
flex-direction: column;
|
|
226
|
+
align-items: flex-start;
|
|
227
|
+
gap: 22px;
|
|
228
|
+
margin-top: 12px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.vitro-criterion-container-mobile .vitro-control {
|
|
232
|
+
width: 100%;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.vitro-criterion-container-mobile .vitro-button-cancel {
|
|
236
|
+
position: absolute;
|
|
237
|
+
bottom: 40px;
|
|
238
|
+
right: 0;
|
|
239
|
+
margin: 0;
|
|
206
240
|
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
.vitro-image-button {
|
|
2
|
+
width: 20px;
|
|
3
|
+
height: 20px;
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
.vitro-image-button,
|
|
2
7
|
.vitro-image-button:hover,
|
|
3
8
|
.vitro-image-button:active {
|
|
4
|
-
width: 20px;
|
|
5
|
-
height: 20px;
|
|
6
9
|
flex-shrink: 0;
|
|
7
10
|
background-position: center;
|
|
8
11
|
background-size: 100%;
|
|
9
12
|
background-repeat: no-repeat;
|
|
10
13
|
border: none;
|
|
11
14
|
outline: none;
|
|
15
|
+
padding: 0;
|
|
12
16
|
background-color: transparent;
|
|
13
17
|
}
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
.compare-dlg_doc-sep {
|
|
27
27
|
width: 68px;
|
|
28
|
-
background: url('
|
|
28
|
+
background: url('../img/dlg-compare-ico.png') no-repeat center center;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.compare-dlg_doc-a-wrap .wrap-inner,
|
|
@@ -210,17 +210,17 @@
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
#hideColors {
|
|
213
|
-
background: url('
|
|
213
|
+
background: url('../img/hide-colors.png');
|
|
214
214
|
}
|
|
215
215
|
#hideColors.active {
|
|
216
|
-
background: url('
|
|
216
|
+
background: url('../img/hide-colors_active.png');
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
#alignFinish {
|
|
220
|
-
background: url('
|
|
220
|
+
background: url('../img/finish-align.png');
|
|
221
221
|
}
|
|
222
222
|
#alignFinish.active {
|
|
223
|
-
background: url('
|
|
223
|
+
background: url('../img/finish-align_active.png');
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
.compare-panel_body {
|
|
@@ -286,12 +286,12 @@
|
|
|
286
286
|
top: 50%;
|
|
287
287
|
right: 0;
|
|
288
288
|
transform: translate(0, -50%);
|
|
289
|
-
|
|
290
|
-
background
|
|
289
|
+
|
|
290
|
+
background: url('../img/layer-unvisible.png') no-repeat center center;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
.compare-layer-visibility.active {
|
|
294
|
-
background
|
|
294
|
+
background: url('../img/layer-visible.png') no-repeat center center;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
.compare-viewer-wrap.side-by-side #compareCanvasResult,
|
|
@@ -329,50 +329,50 @@
|
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
#btnComparePan {
|
|
332
|
-
background: url('
|
|
332
|
+
background: url('../img/pan.png') no-repeat center center;
|
|
333
333
|
}
|
|
334
334
|
#btnComparePan:hover,
|
|
335
335
|
#btnComparePan.active {
|
|
336
|
-
background: url('
|
|
336
|
+
background: url('../img/pan_active.png') no-repeat center center;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
#btnCompareZoom {
|
|
340
|
-
background: url('
|
|
340
|
+
background: url('../img/zoom.png') no-repeat center center;
|
|
341
341
|
}
|
|
342
342
|
#btnCompareZoom:hover,
|
|
343
343
|
#btnCompareZoom.active {
|
|
344
|
-
background: url('
|
|
344
|
+
background: url('../img/zoom_active.png') no-repeat center center;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
#btnFitToView {
|
|
348
|
-
background: url('
|
|
348
|
+
background: url('../img/fit-to-view.png') no-repeat center center;
|
|
349
349
|
}
|
|
350
350
|
#btnFitToView:hover,
|
|
351
351
|
#btnFitToView.active {
|
|
352
|
-
background: url('
|
|
352
|
+
background: url('../img/fit-to-view_active.png') no-repeat center center;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
355
|
#btnCompareType.type-overlay {
|
|
356
|
-
background: url('
|
|
356
|
+
background: url('../img/compare-overlay.png') no-repeat center center;
|
|
357
357
|
}
|
|
358
358
|
#btnCompareType.type-side-by-side {
|
|
359
|
-
background: url('
|
|
359
|
+
background: url('../img/compare-side-by-side.png') no-repeat center center;
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
#btnComparePanel {
|
|
363
|
-
background: url('
|
|
363
|
+
background: url('../img/panel-visibility.png') no-repeat center center;
|
|
364
364
|
}
|
|
365
365
|
#btnComparePanel:hover,
|
|
366
366
|
#btnComparePanel.active {
|
|
367
|
-
background: url('
|
|
367
|
+
background: url('../img/panel-visibility_active.png') no-repeat center center;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
#btnCompareViewerExit {
|
|
371
|
-
background: url('
|
|
371
|
+
background: url('../img/close-compare-viewer.png') no-repeat center center;
|
|
372
372
|
}
|
|
373
373
|
#btnCompareViewerExit:hover,
|
|
374
374
|
#btnCompareViewerExit.active {
|
|
375
|
-
background: url('
|
|
375
|
+
background: url('../img/close-compare-viewer_active.png') no-repeat center center;
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
/* Compare label */
|
|
@@ -425,19 +425,19 @@
|
|
|
425
425
|
}
|
|
426
426
|
|
|
427
427
|
#btnCompareTypeSideBySide {
|
|
428
|
-
background: url('
|
|
428
|
+
background: url('../img/side-by-side.png') no-repeat center center;
|
|
429
429
|
}
|
|
430
430
|
|
|
431
431
|
#btnCompareTypeOverlay {
|
|
432
|
-
background: url('
|
|
432
|
+
background: url('../img/overlay.png') no-repeat center center;
|
|
433
433
|
}
|
|
434
434
|
|
|
435
435
|
#btnCompareTypeSideBySide.active {
|
|
436
|
-
background: url('
|
|
436
|
+
background: url('../img/side-by-side_active.png') no-repeat center center;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
#btnCompareTypeOverlay.active {
|
|
440
|
-
background: url('
|
|
440
|
+
background: url('../img/overlay_active.png') no-repeat center center;
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
/* Side by Side */
|
|
@@ -179,12 +179,12 @@ a.ui-button:active,
|
|
|
179
179
|
height: 16px;
|
|
180
180
|
right: 0;
|
|
181
181
|
top: 0;
|
|
182
|
-
background: url('
|
|
182
|
+
background: url('../img/delete.png') 2px 0 no-repeat;
|
|
183
183
|
cursor: pointer;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
.body__sidebar-note-wrap.active .body__sidebar-note-btn-delete {
|
|
187
|
-
background: url('
|
|
187
|
+
background: url('../img/delete-active.png') 2px 0 no-repeat;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
.body__sidebar-note-body {
|
|
@@ -130,4 +130,81 @@
|
|
|
130
130
|
|
|
131
131
|
.form-body .w-100 {
|
|
132
132
|
width: 100%;
|
|
133
|
-
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.uk-select {
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.uk-margin {
|
|
140
|
+
margin-top: 20px;
|
|
141
|
+
margin-bottom: 20px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.uk-margin-first {
|
|
145
|
+
margin-top: 0;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.uk-margin-last {
|
|
149
|
+
margin-bottom: 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.form-body input.uk-checkbox,
|
|
153
|
+
.form-body input.uk-radio,
|
|
154
|
+
.uk-checkbox,
|
|
155
|
+
.uk-radio {
|
|
156
|
+
display: inline-block;
|
|
157
|
+
height: 16px;
|
|
158
|
+
width: 16px;
|
|
159
|
+
min-width: initial;
|
|
160
|
+
padding: 0;
|
|
161
|
+
overflow: hidden;
|
|
162
|
+
margin-top: -4px;
|
|
163
|
+
vertical-align: middle;
|
|
164
|
+
-webkit-appearance: none;
|
|
165
|
+
-moz-appearance: none;
|
|
166
|
+
background-color: transparent;
|
|
167
|
+
background-repeat: no-repeat;
|
|
168
|
+
background-position: 50% 50%;
|
|
169
|
+
border: 1px solid #ccc;
|
|
170
|
+
transition: .2s ease-in-out;
|
|
171
|
+
transition-property: background-color, border;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.uk-radio {
|
|
175
|
+
border-radius: 50%;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.uk-checkbox:not(:disabled),
|
|
179
|
+
.uk-radio:not(:disabled) {
|
|
180
|
+
cursor: pointer;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.form-body input.uk-radio:checked,
|
|
184
|
+
.uk-radio:checked {
|
|
185
|
+
background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.form-body input.uk-checkbox:checked,
|
|
189
|
+
.form-body input.uk-checkbox:indeterminate,
|
|
190
|
+
.form-body input.uk-radio:checked,
|
|
191
|
+
.uk-checkbox:checked,
|
|
192
|
+
.uk-checkbox:indeterminate,
|
|
193
|
+
.uk-radio:checked {
|
|
194
|
+
background-color: #1e87f0;
|
|
195
|
+
border-color: transparent;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.uk-form-radio-group label {
|
|
199
|
+
margin-bottom: 10px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.uk-button[disabled] {
|
|
203
|
+
opacity: 0.5;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.uk-button-full-width {
|
|
207
|
+
width: 100%;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_3501_200870)">
|
|
3
|
+
<path d="M1.89062 28.1056L14.9981 14.9981L28.1056 28.1056M28.1056 1.89062L14.9956 14.9981L1.89062 1.89062" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_3501_200870">
|
|
7
|
+
<rect width="30" height="30" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</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='M3 6.9375V4.5C3 3.67158 3.67155 3 4.5 3H19.5C20.3284 3 21 3.67158 21 4.5V19.5C21 20.3285 20.3284 21 19.5 21H4.5C3.67155 21 3 20.3285 3 19.5V17.3438' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
3
|
+
<path d='M3 12H15' stroke='#326AD6' stroke-linecap='round'/>
|
|
4
|
+
<path d='M12 15L15 12L12 9' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
5
|
+
</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='M3 6.9375V4.5C3 3.67158 3.67155 3 4.5 3H19.5C20.3284 3 21 3.67158 21 4.5V19.5C21 20.3285 20.3284 21 19.5 21H4.5C3.67155 21 3 20.3285 3 19.5V17.3438' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
3
|
+
<path d='M3 12H15' stroke='#222D44' stroke-linecap='round'/>
|
|
4
|
+
<path d='M12 15L15 12L12 9' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width='38' height='22' viewBox='0 0 38 22' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(#clip0_1743_100928)'><path d='M1.12227 5.08646C0.792376 5.26348 0.79238 5.73656 1.12228 5.91357L9.91038 10.6291C10.223 10.7969 10.6016 10.5704 10.6016 10.2155L10.6016 7.50613C10.6016 7.24693 10.8117 7.0368 11.0709 7.0368L26.1755 7.0368C26.4347 7.0368 26.6448 6.82667 26.6448 6.56747L26.6448 4.43239C26.6448 4.17318 26.4347 3.96306 26.1755 3.96306L11.0709 3.96306C10.8117 3.96306 10.6016 3.75293 10.6016 3.49373L10.6016 0.784335C10.6016 0.429502 10.223 0.203005 9.91037 0.37078L1.12227 5.08646Z' fill='#4A556C'/><path d='M36.8777 16.9135C37.2076 16.7364 37.2076 16.2634 36.8777 16.0864L28.0897 11.3709C27.7771 11.2031 27.3985 11.4296 27.3985 11.7845L27.3985 14.4938C27.3985 14.753 27.1884 14.9632 26.9292 14.9632L11.8248 14.9632C11.5656 14.9632 11.3554 15.1733 11.3554 15.4325L11.3554 17.5675C11.3554 17.8267 11.5656 18.0368 11.8248 18.0368L26.9292 18.0368C27.1884 18.0368 27.3985 18.247 27.3985 18.5062L27.3985 21.2155C27.3985 21.5704 27.7771 21.7969 28.0897 21.6291L36.8777 16.9135Z' fill='#4A556C'/></g><defs><clipPath id='clip0_1743_100928'><rect width='22' height='38' fill='white' transform='translate(0 22) rotate(-90)'/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='2.00391' y='14' width='13.9982' height='14.0038' rx='2' fill='#326AD6'/><path d='M10.0078 7.99805C10.0078 6.89348 10.9032 5.99805 12.0078 5.99805H22.006C23.1106 5.99805 24.006 6.89348 24.006 7.99805V18.0018C24.006 19.1064 23.1106 20.0018 22.006 20.0018H17.0069L17.0089 15.0028C17.0094 13.8982 16.1143 13.0024 15.0098 13.002L10.0078 12.9999V7.99805Z' fill='#326AD6'/><path d='M27.6536 2.6C27.8076 2.33333 28.1925 2.33333 28.3464 2.6L31.1177 7.4C31.2717 7.66667 31.0792 8 30.7713 8H25.2287C24.9208 8 24.7283 7.66667 24.8823 7.4L27.6536 2.6Z' fill='#326AD6'/></svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'>
|
|
2
|
+
<path d='M12.5 24.9V9.1C12.5 7.6 11.86 7 10.27 7H5.23C3.64 7 3 7.6 3 9.1V24.9C3 26.4 3.64 27 5.23 27H10.27C11.86 27 12.5 26.4 12.5 24.9Z' fill='#326AD6'/>
|
|
3
|
+
<path d='M23 24.9V9.1C23 7.6 22.36 7 20.77 7H15.73C14.14 7 13.5 7.6 13.5 9.1V24.9C13.5 26.4 14.14 27 15.73 27H20.77C22.36 27 23 26.4 23 24.9Z' fill='#326AD6'/>
|
|
4
|
+
<path d='M26.6536 2.6C26.8076 2.33333 27.1925 2.33333 27.3464 2.6L30.1177 7.4C30.2717 7.66667 30.0792 8 29.7713 8H24.2287C23.9208 8 23.7283 7.66667 23.8823 7.4L26.6536 2.6Z' fill='#326AD6'/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'>
|
|
2
|
+
<path d='M4.99535 15.002L3.9969 14.0027L2 12.0043L4 10.0027L5 9.00195' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
3
|
+
<path d='M19.0047 9L20.0031 9.99924L22 11.9977L20 13.9992L19 15' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
4
|
+
<path d='M2 12H22' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
5
|
+
<path d='M15 5L13.9992 4L11.9977 2L9.99922 3.9969L9 4.99535' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
6
|
+
<path d='M15 19.0047L14.0008 20.0031L12.0023 22L10.0008 20L9 19' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
7
|
+
<path d='M12 2L12 22' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'>
|
|
2
|
+
<path d='M4.99535 15.002L3.9969 14.0027L2 12.0043L4 10.0027L5 9.00195' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
3
|
+
<path d='M19.0047 9L20.0031 9.99924L22 11.9977L20 13.9992L19 15' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
4
|
+
<path d='M2 12H22' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
5
|
+
<path d='M15 5L13.9992 4L11.9977 2L9.99922 3.9969L9 4.99535' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
6
|
+
<path d='M15 19.0047L14.0008 20.0031L12.0023 22L10.0008 20L9 19' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
7
|
+
<path d='M12 2L12 22' stroke='#222D44' stroke-linecap='round' stroke-linejoin='round'/>
|
|
8
|
+
</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 fill-rule='evenodd' clip-rule='evenodd' d='M22 3C22 2.44772 21.5523 2 21 2H16.5C16.2239 2 16 1.77614 16 1.5V1.5C16 1.22386 16.2239 1 16.5 1H22V1C22.5523 1 23 1.44772 23 2V2V7.5C23 7.77614 22.7761 8 22.5 8V8C22.2239 8 22 7.77614 22 7.5V3ZM1.5 8C1.77614 8 2 7.77614 2 7.5V3C2 2.44772 2.44772 2 3 2H7.5C7.77614 2 8 1.77614 8 1.5V1.5C8 1.22386 7.77614 1 7.5 1H2V1C1.44772 1 1 1.44772 1 2V2V7.5C1 7.77614 1.22386 8 1.5 8V8ZM1 16.5C1 16.2239 1.22386 16 1.5 16V16C1.77614 16 2 16.2239 2 16.5V21C2 21.5523 2.44772 22 3 22H7.5C7.77614 22 8 22.2239 8 22.5V22.5C8 22.7761 7.77614 23 7.5 23H2V23C1.44772 23 1 22.5523 1 22V22V16.5ZM22 16.5C22 16.2239 22.2239 16 22.5 16V16C22.7761 16 23 16.2239 23 16.5V22V22C23 22.5523 22.5523 23 22 23V23H16.5C16.2239 23 16 22.7761 16 22.5V22.5C16 22.2239 16.2239 22 16.5 22H21C21.5523 22 22 21.5523 22 21V16.5Z' fill='#326AD6'/>
|
|
3
|
+
<path d='M7 9.56619C7 9.21493 7.1843 8.88942 7.4855 8.7087L11.4855 6.3087C11.8022 6.11869 12.1978 6.11869 12.5145 6.3087L16.3748 8.6249C16.6456 8.78733 16.6302 9.18468 16.3478 9.32575L12.5532 11.2209C12.2142 11.3902 12 11.7366 12 12.1155V17.2935C12 17.6044 11.6608 17.7965 11.3942 17.6365L7.4855 15.2913C7.1843 15.1106 7 14.7851 7 14.4338V12V9.56619Z' fill='#326AD6'/>
|
|
4
|
+
<path d='M7.74275 9.13744L11.7428 6.73744C11.9011 6.64244 12.0989 6.64244 12.2572 6.73744L16.2572 9.13744C16.4079 9.22781 16.5 9.39056 16.5 9.56619V12V14.4338C16.5 14.6094 16.4079 14.7722 16.2572 14.8626L12.2572 17.2626C12.0989 17.3576 11.9011 17.3576 11.7428 17.2626L7.74275 14.8626C7.59215 14.7722 7.5 14.6094 7.5 14.4338V12V9.56619C7.5 9.39056 7.59215 9.22781 7.74275 9.13744Z' stroke='#326AD6'/>
|
|
5
|
+
</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 fill-rule='evenodd' clip-rule='evenodd' d='M2 1H7.5C7.77614 1 8 1.22386 8 1.5V1.5C8 1.77614 7.77614 2 7.5 2H3C2.44772 2 2 2.44772 2 3V7.5C2 7.77614 1.77614 8 1.5 8V8C1.22386 8 1 7.77614 1 7.5V2V2C1 1.44772 1.44772 1 2 1V1ZM1.5 16C1.22386 16 1 16.2239 1 16.5V22V22C1 22.5523 1.44772 23 2 23V23H7.5C7.77614 23 8 22.7761 8 22.5V22.5C8 22.2239 7.77614 22 7.5 22H3C2.44772 22 2 21.5523 2 21V16.5C2 16.2239 1.77614 16 1.5 16V16ZM22.5 16C22.2239 16 22 16.2239 22 16.5V21C22 21.5523 21.5523 22 21 22H16.5C16.2239 22 16 22.2239 16 22.5V22.5C16 22.7761 16.2239 23 16.5 23H22V23C22.5523 23 23 22.5523 23 22V22V16.5C23 16.2239 22.7761 16 22.5 16V16ZM22.5 8C22.7761 8 23 7.77614 23 7.5V2V2C23 1.44772 22.5523 1 22 1V1H16.5C16.2239 1 16 1.22386 16 1.5V1.5C16 1.77614 16.2239 2 16.5 2H21C21.5523 2 22 2.44772 22 3V7.5C22 7.77614 22.2239 8 22.5 8V8Z' fill='#222D44'/>
|
|
3
|
+
<path d='M7 9.56619C7 9.21493 7.1843 8.88942 7.4855 8.7087L11.4855 6.3087C11.8022 6.11869 12.1978 6.11869 12.5145 6.3087L16.3748 8.6249C16.6456 8.78733 16.6302 9.18468 16.3478 9.32575L12.5532 11.2209C12.2142 11.3902 12 11.7366 12 12.1155V17.2935C12 17.6044 11.6608 17.7965 11.3942 17.6365L7.4855 15.2913C7.1843 15.1106 7 14.7851 7 14.4338V12V9.56619Z' fill='#222D44'/>
|
|
4
|
+
<path d='M7.74275 9.13744L11.7428 6.73744C11.9011 6.64244 12.0989 6.64244 12.2572 6.73744L16.2572 9.13744C16.4079 9.22781 16.5 9.39056 16.5 9.56619V12V14.4338C16.5 14.6094 16.4079 14.7722 16.2572 14.8626L12.2572 17.2626C12.0989 17.3576 11.9011 17.3576 11.7428 17.2626L7.74275 14.8626C7.59215 14.7722 7.5 14.6094 7.5 14.4338V12V9.56619C7.5 9.39056 7.59215 9.22781 7.74275 9.13744Z' stroke='#222D44'/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M12 21.5C16.1421 21.5 18 19.1421 18 15C18 9 12 2.5 12 2.5C12 2.5 6 9 6 15C6 19.1421 7.85785 21.5 12 21.5Z' stroke='#326AD6' stroke-linecap='round' stroke-linejoin='round'/></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 fill-rule='evenodd' clip-rule='evenodd' d='M12 21.5C16.1421 21.5 18 19.1421 18 15C18 9 12 2.5 12 2.5C12 2.5 6 9 6 15C6 19.1421 7.85785 21.5 12 21.5Z' 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
|
+
<rect x='1.00391' y='9' width='13.9982' height='14.0038' rx='2' fill='#326AD6'/>
|
|
3
|
+
<path d='M9.00781 2.99805C9.00781 1.89348 9.90324 0.998047 11.0078 0.998047H21.006C22.1106 0.998047 23.006 1.89348 23.006 2.99805V13.0018C23.006 14.1064 22.1106 15.0018 21.006 15.0018H16.0069L16.0089 10.0028C16.0094 8.89824 15.1143 8.00244 14.0098 8.00199L9.00781 7.99994V2.99805Z' fill='#326AD6'/>
|
|
4
|
+
</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
|
+
<rect x='1.00391' y='9' width='13.9982' height='14.0038' rx='2' fill='#222D44'/>
|
|
3
|
+
<path d='M9.00781 2.99805C9.00781 1.89348 9.90324 0.998047 11.0078 0.998047H21.006C22.1106 0.998047 23.006 1.89348 23.006 2.99805V13.0018C23.006 14.1064 22.1106 15.0018 21.006 15.0018H16.0069L16.0089 10.0028C16.0094 8.89824 15.1143 8.00244 14.0098 8.00199L9.00781 7.99994V2.99805Z' fill='#222D44'/>
|
|
4
|
+
</svg>
|