@vitrosoftware/common-ui-ts 1.1.113 → 1.1.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/std/controls/action-handler/action-result-list.css +34 -0
- package/css/std/controls/action-handler/confirm-dialog.css +1 -0
- package/css/std/controls/action-handler/result-dialog.css +20 -0
- package/css/std/controls/checkbox/checkbox.css +1 -0
- package/css/std/controls/criterion/criterion.css +67 -33
- package/css/std/controls/dialog/dialog-footer.css +1 -1
- package/css/std/controls/image-button/image-button.css +6 -2
- package/css/std/controls/list/list.css +10 -0
- package/css/std/controls/search/checkbox-list.css +8 -15
- package/css/std/controls/search/search.css +113 -22
- package/css/std/controls/search-input/img/search-blue.svg +3 -0
- package/css/std/controls/search-input/search-input.css +16 -35
- package/css/std/controls/table-view/treegrid.css +113 -1
- package/css/std/controls/uploader/uploader.css +17 -0
- package/dist/index.css +294 -111
- package/dist/index.js +396 -379
- 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 +19 -1
- package/dist/src/controls/TableView/TableViewContext.d.ts +1 -1
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +1 -1
- package/dist/src/controls/TelerikUploader/TelerikUploader.d.ts +1 -0
- package/dist/src/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
|
@@ -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
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
.vitro-checkbox-list {
|
|
2
2
|
border-radius: 4px;
|
|
3
3
|
background: #fff;
|
|
4
|
-
max-width:
|
|
4
|
+
max-width: 252px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-search-value-list > div:first-child {
|
|
8
|
+
padding: 12px 12px 8px 12px;
|
|
5
9
|
}
|
|
6
10
|
|
|
7
11
|
.vitro-checkbox-list :global(.ps) > div:first-child {
|
|
@@ -10,19 +14,8 @@
|
|
|
10
14
|
|
|
11
15
|
.vitro-checkbox-list .vitro-checkbox {
|
|
12
16
|
margin-bottom: 4px;
|
|
13
|
-
height: 24px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.vitro-checkbox-list .vitro-checkbox input {
|
|
17
|
-
width: 16px;
|
|
18
|
-
height: 16px;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
.vitro-checkbox:last-child
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.vitro-checkbox-list span {
|
|
27
|
-
display: block;
|
|
28
|
-
}
|
|
19
|
+
.vitro-checkbox:last-child {
|
|
20
|
+
padding-bottom: 8px;
|
|
21
|
+
}
|
|
@@ -17,27 +17,42 @@
|
|
|
17
17
|
top: 36px;
|
|
18
18
|
right: 0;
|
|
19
19
|
z-index: 2;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vitro-filter-container {
|
|
20
23
|
padding: 24px 0 16px 12px;
|
|
21
24
|
display: flex;
|
|
22
25
|
flex-direction: column;
|
|
26
|
+
align-self: stretch;
|
|
27
|
+
width: 502px;
|
|
23
28
|
}
|
|
24
29
|
|
|
25
30
|
.vitro-filter {
|
|
26
|
-
|
|
31
|
+
overflow: hidden;
|
|
27
32
|
}
|
|
28
33
|
|
|
29
|
-
.vitro-
|
|
30
|
-
max-height:
|
|
34
|
+
.vitro-filter :global(.ps) {
|
|
35
|
+
max-height: 458px;
|
|
31
36
|
}
|
|
32
37
|
|
|
33
|
-
.vitro-
|
|
38
|
+
.vitro-filter :global(.ps.ps--active-y) {
|
|
34
39
|
padding-right: 14px;
|
|
35
40
|
}
|
|
36
41
|
|
|
42
|
+
.vitro-filter :global(.ps) > div:first-child {
|
|
43
|
+
padding-top: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.vitro-filter :global(.vitro-block:last-child) > div > div {
|
|
47
|
+
margin-bottom: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.vitro-filter :global(.vitro-block:nth-child(2)) {
|
|
51
|
+
margin-top: 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
37
54
|
.vitro-add-field {
|
|
38
|
-
|
|
39
|
-
margin-bottom: 16px;
|
|
40
|
-
margin-top: 18px;
|
|
55
|
+
margin: 18px 0 16px 66px;
|
|
41
56
|
}
|
|
42
57
|
|
|
43
58
|
.vitro-add-field-button,
|
|
@@ -46,38 +61,45 @@
|
|
|
46
61
|
font-family: 'InterRegular' !important;
|
|
47
62
|
background: #fff !important;
|
|
48
63
|
color: #326AD6 !important;
|
|
49
|
-
margin-left: 66px;
|
|
50
64
|
padding: 0 !important;
|
|
51
65
|
min-width: unset !important;
|
|
52
66
|
height: 16px !important;
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
line-height: 16px;
|
|
53
69
|
}
|
|
54
70
|
|
|
55
71
|
.vitro-add-field-dialog {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
top: 32px;
|
|
59
|
-
left: 0;
|
|
72
|
+
z-index: 10001;
|
|
73
|
+
overflow: hidden;
|
|
60
74
|
border-radius: 4px;
|
|
61
75
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
62
76
|
}
|
|
63
77
|
|
|
78
|
+
.vitro-add-field-dialog[placement='right-start'] {
|
|
79
|
+
margin-top: -4px;
|
|
80
|
+
margin-left: 14px;
|
|
81
|
+
}
|
|
82
|
+
|
|
64
83
|
.vitro-add-field-dialog :global(.ps) > div:first-child {
|
|
65
84
|
max-height: 204px;
|
|
85
|
+
max-width: 242px;
|
|
66
86
|
}
|
|
67
87
|
|
|
68
|
-
.vitro-
|
|
69
|
-
|
|
70
|
-
grid-gap: 12px;
|
|
71
|
-
justify-content: flex-end;
|
|
88
|
+
.vitro-button-group {
|
|
89
|
+
gap: 12px;
|
|
72
90
|
padding: 0 24px;
|
|
73
91
|
margin-top: auto;
|
|
74
92
|
}
|
|
75
93
|
|
|
94
|
+
.vitro-button,
|
|
95
|
+
.vitro-button-cancel {
|
|
96
|
+
padding: 8px 16px;
|
|
97
|
+
font-family: 'InterRegular' !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
76
100
|
.vitro-button-cancel {
|
|
77
101
|
background: #fff !important;
|
|
78
102
|
color: #222D44 !important;
|
|
79
|
-
font-family: 'InterRegular' !important;
|
|
80
|
-
border: 1px solid #E4E6EC !important;
|
|
81
103
|
}
|
|
82
104
|
|
|
83
105
|
.vitro-button-cancel:hover,
|
|
@@ -107,8 +129,77 @@
|
|
|
107
129
|
background-color: #DCEEFF;
|
|
108
130
|
}
|
|
109
131
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
132
|
+
.vitro-search-mobile {
|
|
133
|
+
position: relative;
|
|
134
|
+
align-self: baseline;
|
|
135
|
+
margin-left: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.vitro-settings-dialog-mobile {
|
|
139
|
+
height: 100%;
|
|
140
|
+
width: 100%;
|
|
141
|
+
max-width: unset !important;
|
|
142
|
+
border: none !important;
|
|
143
|
+
border-radius: 0 !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.vitro-settings-dialog-mobile .vitro-filter-container {
|
|
147
|
+
width: 100%;
|
|
148
|
+
position: relative;
|
|
149
|
+
overflow: hidden;
|
|
150
|
+
flex: 1 1;
|
|
151
|
+
padding: 0 0 0 15px;
|
|
114
152
|
}
|
|
153
|
+
|
|
154
|
+
.vitro-settings-dialog-header {
|
|
155
|
+
padding: 20px 15px 15px 15px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.vitro-settings-dialog-footer {
|
|
159
|
+
border: none;
|
|
160
|
+
background-color: #fff;
|
|
161
|
+
height: unset;
|
|
162
|
+
padding: 28px 15px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.vitro-settings-dialog-footer button {
|
|
166
|
+
height: 32px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.vitro-settings-dialog-header h1 {
|
|
170
|
+
font-size: 18px !important;
|
|
171
|
+
line-height: 150% !important;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.vitro-settings-dialog-mobile .vitro-add-field {
|
|
175
|
+
margin: 18px 0 0 4px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) {
|
|
179
|
+
max-height: unset;
|
|
180
|
+
padding-right: 15px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div:first-child {
|
|
184
|
+
padding-top: 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.vitro-block:last-child) > div > div {
|
|
188
|
+
margin-top: 12px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.vitro-settings-dialog-mobile .vitro-filter :global(.ps) > div > div {
|
|
192
|
+
padding: 0;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.vitro-settings-dialog-mobile .vitro-scrollbar > div > div > :global(.vitro-block):first-child > div > div {
|
|
196
|
+
margin: 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.vitro-add-field-dialog[placement='bottom-start'] {
|
|
200
|
+
margin-top: 7px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.vitro-add-field-dialog[placement='top-start'] {
|
|
204
|
+
margin-bottom: 7px;
|
|
205
|
+
}
|
|
@@ -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="M20.1303 20.8499C20.596 21.313 21.3149 20.5982 20.8491 20.1451L17.0525 16.3597C18.3843 14.8944 19.1205 12.9889 19.1179 11.0138C19.1179 6.59414 15.5035 3 11.0589 3C6.61438 3 3 6.59414 3 11.0138C3 15.4335 6.61438 19.0276 11.0589 19.0276C13.0636 19.0276 14.9163 18.2927 16.3337 17.0745L20.1303 20.8499ZM4.01142 11.0138C4.01142 7.14785 7.18032 4.00676 11.0579 4.00676C14.9457 4.00676 18.1044 7.14785 18.1044 11.0138C18.1044 14.8798 14.9457 18.0209 11.0579 18.0209C7.18032 18.0209 4.01142 14.8798 4.01142 11.0138Z" fill="#326AD6"/>
|
|
3
|
+
</svg>
|
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
border-radius: 4px;
|
|
4
4
|
border: 1px solid #C0CAD5;
|
|
5
5
|
padding: 4px 8px;
|
|
6
|
-
display: flex;
|
|
7
|
-
align-items: center;
|
|
8
6
|
}
|
|
9
7
|
|
|
10
8
|
.vitro-search-input:global(.vitro-active) {
|
|
@@ -33,16 +31,9 @@
|
|
|
33
31
|
overflow: hidden;
|
|
34
32
|
}
|
|
35
33
|
|
|
36
|
-
.vitro-search-input :global(.vitro-button-search)
|
|
37
|
-
.vitro-search-input :global(.vitro-button-search):hover {
|
|
34
|
+
.vitro-search-input :global(.vitro-button-search) {
|
|
38
35
|
width: 24px;
|
|
39
36
|
height: 24px;
|
|
40
|
-
border: none;
|
|
41
|
-
outline: none;
|
|
42
|
-
flex-shrink: 0;
|
|
43
|
-
background-color: transparent;
|
|
44
|
-
background-size: 100%;
|
|
45
|
-
background-position: center;
|
|
46
37
|
margin-right: 8px;
|
|
47
38
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
48
39
|
}
|
|
@@ -53,19 +44,10 @@
|
|
|
53
44
|
background-color: #fff;
|
|
54
45
|
}
|
|
55
46
|
|
|
56
|
-
.vitro-button-cancel
|
|
57
|
-
.vitro-button-cancel:hover {
|
|
47
|
+
.vitro-button-cancel {
|
|
58
48
|
width: 24px;
|
|
59
49
|
height: 24px;
|
|
60
|
-
flex-shrink: 0;
|
|
61
|
-
border: none;
|
|
62
|
-
background-size: 100%;
|
|
63
|
-
background-position: center;
|
|
64
50
|
margin-left: 8px;
|
|
65
|
-
background-color: transparent;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.vitro-button-cancel {
|
|
69
51
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-black.svg');
|
|
70
52
|
}
|
|
71
53
|
|
|
@@ -92,21 +74,20 @@
|
|
|
92
74
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/cancel-dark-grey.svg');
|
|
93
75
|
}
|
|
94
76
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
padding: 0;
|
|
100
|
-
}
|
|
77
|
+
.vitro-search-input-mobile {
|
|
78
|
+
width: 32px;
|
|
79
|
+
height: 32px;
|
|
80
|
+
}
|
|
101
81
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
82
|
+
.vitro-search-input-mobile :global(.vitro-button-search) {
|
|
83
|
+
width: 32px;
|
|
84
|
+
height: 32px;
|
|
85
|
+
border-radius: 4px;
|
|
86
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search.svg');
|
|
87
|
+
}
|
|
108
88
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
89
|
+
.vitro-search-input-mobile:global(.vitro-active) :global(.vitro-button-search) {
|
|
90
|
+
background-color: #DCEEFF;
|
|
91
|
+
background-size: 24px;
|
|
92
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/search-input/img/search-blue.svg');
|
|
112
93
|
}
|