halleyx-ui-framework 4.1.8 → 4.1.9
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/README.md +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/src/assets/icon-style.css +1 -1
- package/dist/src/assets/icons/icon-style(old).css +1 -1
- package/dist/src/assets/icons/icon-style.css +1 -1
- package/dist/src/assets/styles/accordion.scss +99 -99
- package/dist/src/assets/styles/base.scss +6 -1
- package/dist/src/assets/styles/breadcrumb.scss +15 -15
- package/dist/src/assets/styles/buttons.scss +4 -4
- package/dist/src/assets/styles/calendar.scss +343 -346
- package/dist/src/assets/styles/cards.scss +17 -16
- package/dist/src/assets/styles/colorPicker.scss +15 -15
- package/dist/src/assets/styles/colorpalette.scss +138 -139
- package/dist/src/assets/styles/common/var.scss +258 -31
- package/dist/src/assets/styles/componentlayout.scss +126 -128
- package/dist/src/assets/styles/contextMenu.scss +46 -47
- package/dist/src/assets/styles/customdropdown.scss +113 -115
- package/dist/src/assets/styles/dashboard.scss +764 -770
- package/dist/src/assets/styles/dataview.scss +203 -206
- package/dist/src/assets/styles/divider.scss +8 -8
- package/dist/src/assets/styles/dottedPagination.scss +1 -1
- package/dist/src/assets/styles/draggables.scss +36 -39
- package/dist/src/assets/styles/drawer.scss +68 -53
- package/dist/src/assets/styles/errorpage.scss +61 -64
- package/dist/src/assets/styles/fileupload.scss +199 -205
- package/dist/src/assets/styles/fonts.scss +29 -9
- package/dist/src/assets/styles/icon.scss +1 -1
- package/dist/src/assets/styles/imagegallery.scss +169 -167
- package/dist/src/assets/styles/importProgress.scss +1 -1
- package/dist/src/assets/styles/index.scss +21 -0
- package/dist/src/assets/styles/inputfields.scss +44 -46
- package/dist/src/assets/styles/inputitems.scss +315 -318
- package/dist/src/assets/styles/label.scss +48 -54
- package/dist/src/assets/styles/loaders.scss +1 -1
- package/dist/src/assets/styles/mixins/_var.scss +31 -37
- package/dist/src/assets/styles/mixins/functions.scss +7 -7
- package/dist/src/assets/styles/modalwindow.scss +100 -103
- package/dist/src/assets/styles/newtable.scss +10 -23
- package/dist/src/assets/styles/objectViewer.scss +80 -80
- package/dist/src/assets/styles/pagination.scss +12 -6
- package/dist/src/assets/styles/rating.scss +2 -2
- package/dist/src/assets/styles/scrollbar.scss +14 -14
- package/dist/src/assets/styles/search.scss +162 -169
- package/dist/src/assets/styles/select.scss +455 -480
- package/dist/src/assets/styles/sidebar.scss +14 -2
- package/dist/src/assets/styles/signup.scss +118 -128
- package/dist/src/assets/styles/slideControl.scss +1 -0
- package/dist/src/assets/styles/source_content.scss +13 -13
- package/dist/src/assets/styles/speeddial.scss +152 -163
- package/dist/src/assets/styles/style.css.map +12 -12
- package/dist/src/assets/styles/switch.scss +177 -189
- package/dist/src/assets/styles/tablev2.scss +140 -143
- package/dist/src/assets/styles/tabs.scss +48 -49
- package/dist/src/assets/styles/tag.scss +3 -3
- package/dist/src/assets/styles/texteditor.scss +165 -172
- package/dist/src/assets/styles/timeline.scss +384 -400
- package/dist/src/assets/styles/tooltip.scss +52 -72
- package/dist/src/assets/styles/tree.scss +13 -15
- package/dist/src/assets/styles/treeSelect.scss +8 -8
- package/dist/src/assets/styles/variables.scss +9 -9
- package/dist/src/assets/styles/visualbuilder.scss +362 -366
- package/dist/umd/index.umd.js +1 -1
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/es/index.css +0 -1
- package/dist/umd/index.umd.css +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
.hlx-select-container
|
|
2
|
-
|
|
1
|
+
.hlx-select-container,
|
|
2
|
+
.cascade-select {
|
|
3
3
|
display: flex;
|
|
4
4
|
font-family: var(--hlx-font-type-content);
|
|
5
5
|
flex-direction: row;
|
|
@@ -7,57 +7,56 @@
|
|
|
7
7
|
justify-content: flex-start;
|
|
8
8
|
border: 1px solid var(--hlx-border-color);
|
|
9
9
|
border-radius: 5px;
|
|
10
|
-
height:36px;
|
|
10
|
+
height: 36px;
|
|
11
11
|
// height:40px;
|
|
12
12
|
// padding:10px 12px;
|
|
13
|
-
width:100%;
|
|
13
|
+
width: 100%;
|
|
14
14
|
// margin-bottom: 20px;
|
|
15
15
|
// margin-bottom: 20px;
|
|
16
16
|
align-items: center;
|
|
17
17
|
cursor: pointer;
|
|
18
18
|
position: relative;
|
|
19
|
-
&:hover{
|
|
20
|
-
.title-name{
|
|
19
|
+
&:hover {
|
|
20
|
+
.title-name {
|
|
21
21
|
color: var(--hlx-color-primary);
|
|
22
22
|
}
|
|
23
23
|
border: 1px solid var(--hlx-color-primary);
|
|
24
24
|
}
|
|
25
|
-
.customerror
|
|
26
|
-
{
|
|
25
|
+
.customerror {
|
|
27
26
|
position: absolute;
|
|
28
27
|
font-size: 12px;
|
|
29
28
|
color: var(--hlx-color-error);
|
|
30
|
-
top:35px;
|
|
31
|
-
left:1px;
|
|
29
|
+
top: 35px;
|
|
30
|
+
left: 1px;
|
|
32
31
|
}
|
|
33
|
-
.hlx-cascade-select-container{
|
|
34
|
-
width:100%;
|
|
35
|
-
height:100%;
|
|
36
|
-
}
|
|
37
|
-
.hlx-select-input{
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
32
|
+
.hlx-cascade-select-container {
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
}
|
|
36
|
+
.hlx-select-input {
|
|
37
|
+
border: none;
|
|
38
|
+
width: 95%;
|
|
39
|
+
min-width: 25px;
|
|
40
|
+
text-align: left;
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
text-overflow: ellipsis;
|
|
44
|
+
// padding-left: 10px;
|
|
45
|
+
padding: 8px 12px;
|
|
46
|
+
padding-right: 0px;
|
|
47
|
+
outline: none;
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
color: #565553;
|
|
51
|
+
// border-radius: 4px;
|
|
52
|
+
border-top-left-radius: 4px;
|
|
53
|
+
border-bottom-left-radius: 4px;
|
|
54
|
+
height: 34px;
|
|
55
|
+
span {
|
|
56
|
+
margin-right: 8px;
|
|
57
|
+
}
|
|
59
58
|
}
|
|
60
|
-
.hlx-select-icon{
|
|
59
|
+
.hlx-select-icon {
|
|
61
60
|
// width:18px;
|
|
62
61
|
display: flex;
|
|
63
62
|
// width:5%;
|
|
@@ -67,18 +66,18 @@
|
|
|
67
66
|
align-items: center;
|
|
68
67
|
text-align: center;
|
|
69
68
|
height: 34px;
|
|
70
|
-
border-top-right-radius:4px;
|
|
71
|
-
border-bottom-right-radius:4px;
|
|
69
|
+
border-top-right-radius: 4px;
|
|
70
|
+
border-bottom-right-radius: 4px;
|
|
72
71
|
// padding-right: 7px;
|
|
73
|
-
.icon-angle-down-regular{
|
|
72
|
+
.icon-angle-down-regular {
|
|
74
73
|
font-size: 14px;
|
|
75
|
-
color:var(--hlx-text-color-primary);
|
|
74
|
+
color: var(--hlx-text-color-primary);
|
|
76
75
|
cursor: pointer;
|
|
77
76
|
}
|
|
78
|
-
.icon-times-circle-regular{
|
|
77
|
+
.icon-times-circle-regular {
|
|
79
78
|
cursor: pointer;
|
|
80
79
|
font-size: 14px;
|
|
81
|
-
color:var(--hlx-text-color-primary);
|
|
80
|
+
color: var(--hlx-text-color-primary);
|
|
82
81
|
// transform: rotate(45deg);
|
|
83
82
|
display: none;
|
|
84
83
|
}
|
|
@@ -88,26 +87,26 @@
|
|
|
88
87
|
// }
|
|
89
88
|
// .icon-times-circle-regular{
|
|
90
89
|
// display: block;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
90
|
+
|
|
91
|
+
// }
|
|
94
92
|
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
93
|
+
}
|
|
94
|
+
.title-name {
|
|
95
|
+
position: absolute;
|
|
96
|
+
top: -12px;
|
|
97
|
+
background: white;
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
left: 6px;
|
|
100
|
+
margin: 0 5px 0 5px;
|
|
101
|
+
padding: 0 5px 0 5px;
|
|
102
|
+
color: #a6a6a6;
|
|
103
|
+
.asterik {
|
|
104
|
+
color: var(--hlx-color-error);
|
|
105
|
+
margin-left: 3px;
|
|
108
106
|
}
|
|
107
|
+
}
|
|
109
108
|
|
|
110
|
-
.hlx-multi-select-count{
|
|
109
|
+
.hlx-multi-select-count {
|
|
111
110
|
width: 45px;
|
|
112
111
|
padding: 6px;
|
|
113
112
|
padding-bottom: 0px;
|
|
@@ -116,37 +115,37 @@
|
|
|
116
115
|
justify-content: center;
|
|
117
116
|
align-items: center;
|
|
118
117
|
position: absolute;
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
.hlx-multi-select-count-check{
|
|
122
|
-
width:100%;
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
}
|
|
130
|
-
.hlx-multi-select-icon{
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
118
|
+
right: 39px;
|
|
119
|
+
}
|
|
120
|
+
.hlx-multi-select-count-check {
|
|
121
|
+
width: 100%;
|
|
122
|
+
background: var(--hlx-color-primary);
|
|
123
|
+
border-radius: 20px;
|
|
124
|
+
text-align: center;
|
|
125
|
+
color: var(--hlx-color-white);
|
|
126
|
+
padding: 6px;
|
|
127
|
+
font-size: 12px;
|
|
128
|
+
}
|
|
129
|
+
.hlx-multi-select-icon {
|
|
130
|
+
width: 18px;
|
|
131
|
+
display: flex;
|
|
132
|
+
flex-direction: column;
|
|
133
|
+
justify-content: center;
|
|
134
|
+
position: absolute;
|
|
135
|
+
right: 16px;
|
|
136
|
+
top: 11px;
|
|
137
|
+
border-top-right-radius: 4px;
|
|
138
|
+
border-bottom-right-radius: 4px;
|
|
140
139
|
}
|
|
141
140
|
|
|
142
|
-
.hlx-select-option-container{
|
|
141
|
+
.hlx-select-option-container {
|
|
143
142
|
z-index: 1560;
|
|
144
143
|
font-family: var(--hlx-font-type-content);
|
|
145
|
-
position:absolute;
|
|
146
|
-
width:100%;
|
|
144
|
+
position: absolute;
|
|
145
|
+
width: 100%;
|
|
147
146
|
background-color: var(--hlx-color-white);
|
|
148
147
|
border: 1px solid var(--hlx-border-color);
|
|
149
|
-
color:var(--hlx-text-color-primary);
|
|
148
|
+
color: var(--hlx-text-color-primary);
|
|
150
149
|
border-radius: 5px;
|
|
151
150
|
// margin-top:2px;
|
|
152
151
|
// display: none;
|
|
@@ -165,13 +164,13 @@
|
|
|
165
164
|
// }
|
|
166
165
|
// flex-direction: column;
|
|
167
166
|
}
|
|
168
|
-
.hlx-multi-select-option-container{
|
|
167
|
+
.hlx-multi-select-option-container {
|
|
169
168
|
z-index: 1644;
|
|
170
|
-
position:absolute;
|
|
171
|
-
width:100%;
|
|
169
|
+
position: absolute;
|
|
170
|
+
width: 100%;
|
|
172
171
|
background-color: var(--hlx-color-white);
|
|
173
172
|
border: 1px solid var(--hlx-border-color);
|
|
174
|
-
color:var(--hlx-text-color-primary);
|
|
173
|
+
color: var(--hlx-text-color-primary);
|
|
175
174
|
border-radius: 5px;
|
|
176
175
|
// margin-top:2px;
|
|
177
176
|
// display: none;
|
|
@@ -187,262 +186,256 @@
|
|
|
187
186
|
max-height: 250px;
|
|
188
187
|
}
|
|
189
188
|
|
|
190
|
-
#icon-value{
|
|
191
|
-
padding-left:10px;
|
|
189
|
+
#icon-value {
|
|
190
|
+
padding-left: 10px;
|
|
192
191
|
}
|
|
193
|
-
.hlx-multi-select-option-container{
|
|
194
|
-
display: block;
|
|
195
|
-
|
|
192
|
+
.hlx-multi-select-option-container {
|
|
193
|
+
display: block;
|
|
194
|
+
}
|
|
195
|
+
.hlx-select-option-value-container,
|
|
196
|
+
.hlx-multi-select-option-value-container {
|
|
196
197
|
font-family: var(--hlx-font-type-content);
|
|
197
|
-
width:100%;
|
|
198
|
-
height:auto;
|
|
198
|
+
width: 100%;
|
|
199
|
+
height: auto;
|
|
199
200
|
min-height: 30px;
|
|
200
201
|
text-align: left;
|
|
201
202
|
display: flex;
|
|
202
203
|
align-items: center;
|
|
203
204
|
cursor: pointer;
|
|
204
|
-
.icon-container{
|
|
205
|
+
.icon-container {
|
|
205
206
|
margin: 0;
|
|
206
207
|
padding: 0;
|
|
207
208
|
width: 100%;
|
|
208
209
|
font-size: 14px;
|
|
209
210
|
height: 30px;
|
|
210
211
|
font-family: Opensans !important;
|
|
211
|
-
padding-top:10px;
|
|
212
|
+
padding-top: 10px;
|
|
212
213
|
padding-left: 10px;
|
|
213
214
|
box-sizing: border-box;
|
|
214
215
|
cursor: pointer;
|
|
215
|
-
span{
|
|
216
|
+
span {
|
|
216
217
|
margin-right: 8px;
|
|
217
218
|
}
|
|
218
219
|
}
|
|
219
220
|
}
|
|
220
|
-
.hlx-multi-select-option-value-container{
|
|
221
|
+
.hlx-multi-select-option-value-container {
|
|
221
222
|
font-family: var(--hlx-font-type-content);
|
|
222
|
-
width:100%;
|
|
223
|
-
height:30px;
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: 30px;
|
|
224
225
|
text-align: left;
|
|
225
226
|
display: flex;
|
|
226
227
|
align-items: center;
|
|
227
228
|
cursor: pointer;
|
|
228
|
-
.icon-container{
|
|
229
|
+
.icon-container {
|
|
229
230
|
margin: 0;
|
|
230
231
|
padding: 0;
|
|
231
232
|
width: 100%;
|
|
232
233
|
font-size: 14px;
|
|
233
234
|
height: 30px;
|
|
234
235
|
font-family: Opensans !important;
|
|
235
|
-
padding-top:10px;
|
|
236
|
+
padding-top: 10px;
|
|
236
237
|
padding-left: 10px;
|
|
237
238
|
box-sizing: border-box;
|
|
238
239
|
cursor: pointer;
|
|
239
|
-
span{
|
|
240
|
+
span {
|
|
240
241
|
margin-right: 8px;
|
|
241
242
|
}
|
|
242
243
|
}
|
|
243
244
|
}
|
|
244
245
|
|
|
245
|
-
.hlx-select-option-value-container:hover
|
|
246
|
-
|
|
246
|
+
.hlx-select-option-value-container:hover,
|
|
247
|
+
.hlx-multi-select-option-value-container:hover {
|
|
248
|
+
color: var(--hlx-text-color-primary);
|
|
247
249
|
background-color: var(--hlx-color-primary-light);
|
|
248
250
|
}
|
|
249
251
|
|
|
250
|
-
.hlx-select-option-value{
|
|
252
|
+
.hlx-select-option-value {
|
|
251
253
|
font-family: var(--hlx-font-type-content);
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
254
|
+
margin: 0;
|
|
255
|
+
// padding-top:4px;
|
|
256
|
+
padding-left: 10px;
|
|
257
|
+
width: 100%;
|
|
258
|
+
font-size: 14px;
|
|
259
|
+
cursor: pointer;
|
|
258
260
|
}
|
|
259
|
-
.hlx-multi-select-option-value{
|
|
261
|
+
.hlx-multi-select-option-value {
|
|
260
262
|
font-family: var(--hlx-font-type-content);
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
263
|
+
margin: 0;
|
|
264
|
+
padding-top: 4px;
|
|
265
|
+
padding-left: 10px;
|
|
266
|
+
width: 100%;
|
|
267
|
+
font-size: 14px;
|
|
268
|
+
height: 30px;
|
|
269
|
+
cursor: pointer;
|
|
268
270
|
}
|
|
269
|
-
.select-value{
|
|
271
|
+
.select-value {
|
|
270
272
|
background-color: var(--hlx-color-primary);
|
|
271
273
|
color: var(--hlx-color-white);
|
|
272
|
-
&:hover{
|
|
274
|
+
&:hover {
|
|
273
275
|
background-color: var(--hlx-color-primary);
|
|
274
276
|
color: var(--hlx-color-white);
|
|
275
277
|
}
|
|
276
278
|
}
|
|
277
|
-
.hlx-multi-select-option-container{
|
|
278
|
-
|
|
279
|
+
.hlx-multi-select-option-container {
|
|
280
|
+
padding: 10px 15px 10px 15px;
|
|
279
281
|
}
|
|
280
282
|
|
|
281
283
|
.flag-icon {
|
|
282
|
-
margin-left:10px;
|
|
284
|
+
margin-left: 10px;
|
|
283
285
|
}
|
|
284
286
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
border:1px solid black;
|
|
291
|
-
|
|
287
|
+
.check {
|
|
288
|
+
height: 30px;
|
|
289
|
+
width: 100%;
|
|
290
|
+
margin: 10px;
|
|
291
|
+
border: 1px solid black;
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
|
|
295
294
|
//****************multiselect*****************//
|
|
296
295
|
|
|
297
|
-
.hlx-multi-select-container
|
|
298
|
-
{
|
|
296
|
+
.hlx-multi-select-container {
|
|
299
297
|
font-family: var(--hlx-font-type-content);
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
298
|
+
display: flex;
|
|
299
|
+
width: 100%;
|
|
300
|
+
position: relative;
|
|
301
|
+
// margin-bottom: 20px;
|
|
302
|
+
// background-color:aqua;
|
|
303
|
+
height: 38px;
|
|
304
|
+
color: var(--hlx-text-color-primary);
|
|
305
|
+
border-radius: 5px;
|
|
306
|
+
// padding: 0 12px 0 12px;
|
|
307
|
+
border: 1px solid var(--hlx-border-color);
|
|
308
|
+
.icon-angle-down-regular {
|
|
309
|
+
cursor: pointer;
|
|
310
|
+
font-size: 14px;
|
|
311
|
+
|
|
306
312
|
color: var(--hlx-text-color-primary);
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
border:1px solid var(--hlx-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
313
|
+
}
|
|
314
|
+
&:hover {
|
|
315
|
+
border: 1px solid var(--hlx-color-primary);
|
|
316
|
+
}
|
|
317
|
+
&:active {
|
|
318
|
+
border: 1px solid var(--hlx-color-primary);
|
|
319
|
+
}
|
|
320
|
+
.customerror {
|
|
321
|
+
position: absolute;
|
|
322
|
+
font-size: 12px;
|
|
323
|
+
color: var(--hlx-color-error);
|
|
324
|
+
top: 35px;
|
|
325
|
+
left: 1px;
|
|
326
|
+
}
|
|
327
|
+
.title-name {
|
|
328
|
+
position: absolute;
|
|
329
|
+
top: -12px;
|
|
330
|
+
background: white;
|
|
331
|
+
font-size: 12px;
|
|
332
|
+
left: 6px;
|
|
333
|
+
margin: 0 5px 0 5px;
|
|
334
|
+
padding: 0 5px 0 5px;
|
|
335
|
+
}
|
|
336
|
+
.hlx-multi-select-input-placeholder {
|
|
337
|
+
font-family: var(--hlx-font-type-content);
|
|
338
|
+
border: none;
|
|
339
|
+
margin: 0;
|
|
340
|
+
width: 100%;
|
|
341
|
+
outline: none;
|
|
342
|
+
cursor: pointer;
|
|
343
|
+
text-align: center;
|
|
344
|
+
display: flex;
|
|
345
|
+
padding: 10px 12px;
|
|
346
|
+
align-items: center;
|
|
347
|
+
color: #a6a6a6;
|
|
348
|
+
text-align: left;
|
|
349
|
+
white-space: nowrap;
|
|
350
|
+
overflow: hidden;
|
|
351
|
+
text-overflow: ellipsis;
|
|
352
|
+
font-size: 14px;
|
|
353
|
+
border-radius: 4px;
|
|
354
|
+
// border-top-left-radius:4px;
|
|
355
|
+
// border-bottom-left-radius:4px;
|
|
356
|
+
height: 36px;
|
|
357
|
+
// background-color: aqua;
|
|
358
|
+
}
|
|
359
|
+
.hlx-multi-select-input {
|
|
360
|
+
font-family: var(--hlx-font-type-content);
|
|
361
|
+
border: none;
|
|
362
|
+
margin: 0;
|
|
363
|
+
width: 93%;
|
|
364
|
+
outline: none;
|
|
365
|
+
cursor: pointer;
|
|
366
|
+
text-align: center;
|
|
367
|
+
display: flex;
|
|
368
|
+
align-items: center;
|
|
369
|
+
border-top-left-radius: 4px;
|
|
370
|
+
border-bottom-left-radius: 4px;
|
|
371
|
+
padding-left: 10px;
|
|
372
|
+
.hlx-multi-select-flag-container {
|
|
341
373
|
border: none;
|
|
342
|
-
margin:0;
|
|
343
|
-
width:
|
|
374
|
+
margin: 0;
|
|
375
|
+
min-width: 80px;
|
|
376
|
+
max-width: 80px;
|
|
377
|
+
width: 100px;
|
|
378
|
+
padding: 0px;
|
|
344
379
|
outline: none;
|
|
345
380
|
cursor: pointer;
|
|
346
381
|
text-align: center;
|
|
347
382
|
display: flex;
|
|
348
|
-
padding: 10px 12px;
|
|
349
383
|
align-items: center;
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
border-radius: 4px;
|
|
357
|
-
// border-top-left-radius:4px;
|
|
358
|
-
// border-bottom-left-radius:4px;
|
|
359
|
-
height:36px;
|
|
360
|
-
// background-color: aqua;
|
|
361
|
-
}
|
|
362
|
-
.hlx-multi-select-input{
|
|
363
|
-
font-family: var(--hlx-font-type-content);
|
|
364
|
-
border: none;
|
|
365
|
-
margin:0;
|
|
366
|
-
width:93%;
|
|
367
|
-
outline: none;
|
|
368
|
-
cursor: pointer;
|
|
369
|
-
text-align: center;
|
|
384
|
+
// width:94%;
|
|
385
|
+
|
|
386
|
+
.hlx-multi-select-border {
|
|
387
|
+
width: 100%;
|
|
388
|
+
background: var(--hlx-color-primary);
|
|
389
|
+
color: var(--hlx-color-white);
|
|
370
390
|
display: flex;
|
|
371
391
|
align-items: center;
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
padding
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
margin:
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
text-align: center;
|
|
386
|
-
display: flex;
|
|
387
|
-
align-items: center;
|
|
388
|
-
// width:94%;
|
|
389
|
-
|
|
390
|
-
.hlx-multi-select-border{
|
|
391
|
-
width:100%;
|
|
392
|
-
background: var(--hlx-color-primary);
|
|
393
|
-
color:var(--hlx-color-white);
|
|
394
|
-
display:flex;
|
|
395
|
-
align-items: center;
|
|
396
|
-
justify-content: space-between;
|
|
397
|
-
margin-right:5px;
|
|
398
|
-
padding:3px 7px 3px 7px;
|
|
399
|
-
border-radius:5px;
|
|
400
|
-
font-size: 12px;
|
|
401
|
-
.hlx-multi-select-value{
|
|
402
|
-
margin-right:5px;
|
|
403
|
-
white-space: nowrap;
|
|
404
|
-
overflow: hidden;
|
|
405
|
-
text-overflow: ellipsis;
|
|
406
|
-
.icon-times-regular{
|
|
407
|
-
font-size: 8px;
|
|
408
|
-
color: var(--hlx-color-primary);
|
|
409
|
-
}
|
|
410
|
-
}
|
|
392
|
+
justify-content: space-between;
|
|
393
|
+
margin-right: 5px;
|
|
394
|
+
padding: 3px 7px 3px 7px;
|
|
395
|
+
border-radius: 5px;
|
|
396
|
+
font-size: 12px;
|
|
397
|
+
.hlx-multi-select-value {
|
|
398
|
+
margin-right: 5px;
|
|
399
|
+
white-space: nowrap;
|
|
400
|
+
overflow: hidden;
|
|
401
|
+
text-overflow: ellipsis;
|
|
402
|
+
.icon-times-regular {
|
|
403
|
+
font-size: 8px;
|
|
404
|
+
color: var(--hlx-color-primary);
|
|
411
405
|
}
|
|
412
406
|
}
|
|
413
407
|
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
414
410
|
}
|
|
415
411
|
|
|
416
|
-
.input{
|
|
412
|
+
.input {
|
|
417
413
|
border: none;
|
|
418
414
|
height: 38px;
|
|
419
415
|
width: 100%;
|
|
420
|
-
|
|
416
|
+
background-color: white;
|
|
421
417
|
}
|
|
422
|
-
.add{
|
|
418
|
+
.add {
|
|
423
419
|
transform: rotate(-180deg);
|
|
424
|
-
color:var(--hlx-color-primary-dark);
|
|
420
|
+
color: var(--hlx-color-primary-dark);
|
|
425
421
|
}
|
|
426
422
|
|
|
427
|
-
|
|
428
423
|
@keyframes rotation {
|
|
429
424
|
from {
|
|
430
425
|
transform: rotate(0deg);
|
|
431
|
-
}
|
|
432
|
-
to {
|
|
426
|
+
}
|
|
427
|
+
to {
|
|
433
428
|
transform: rotate(-180deg);
|
|
434
|
-
}
|
|
429
|
+
}
|
|
435
430
|
}
|
|
436
431
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
.change-color{
|
|
432
|
+
.change-color {
|
|
440
433
|
display: flex;
|
|
441
434
|
flex-direction: row;
|
|
442
435
|
justify-content: flex-start;
|
|
443
436
|
border: 1px solid var(--hlx-color-primary-dark);
|
|
444
437
|
border-radius: 5px;
|
|
445
|
-
height:36px;
|
|
438
|
+
height: 36px;
|
|
446
439
|
// width:100%;
|
|
447
440
|
// margin-bottom: 20px;
|
|
448
441
|
align-items: center;
|
|
@@ -450,117 +443,109 @@ to {
|
|
|
450
443
|
position: relative;
|
|
451
444
|
}
|
|
452
445
|
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
border-color:var(--hlx-color-primary-dark);
|
|
446
|
+
.add-style {
|
|
447
|
+
border-color: var(--hlx-color-primary-dark);
|
|
456
448
|
}
|
|
457
|
-
.color-icon{
|
|
458
|
-
color:var(--hlx-color-primary-dark)
|
|
449
|
+
.color-icon {
|
|
450
|
+
color: var(--hlx-color-primary-dark);
|
|
459
451
|
}
|
|
460
452
|
|
|
461
|
-
.hlx-select-input-placeholder{
|
|
453
|
+
.hlx-select-input-placeholder {
|
|
462
454
|
border: none;
|
|
463
|
-
width:95%;
|
|
455
|
+
width: 95%;
|
|
464
456
|
text-align: left;
|
|
465
457
|
// padding-left: 10px;
|
|
466
458
|
outline: none;
|
|
467
459
|
cursor: pointer;
|
|
468
460
|
font-size: 14px;
|
|
469
|
-
color
|
|
461
|
+
color: #a6a6a6;
|
|
470
462
|
white-space: nowrap;
|
|
471
463
|
overflow: hidden;
|
|
472
464
|
text-overflow: ellipsis;
|
|
473
|
-
border-top-left-radius:4px;
|
|
474
|
-
border-bottom-left-radius:4px;
|
|
475
|
-
height:34px;
|
|
465
|
+
border-top-left-radius: 4px;
|
|
466
|
+
border-bottom-left-radius: 4px;
|
|
467
|
+
height: 34px;
|
|
476
468
|
padding: 8px 12px;
|
|
477
469
|
}
|
|
478
470
|
|
|
479
|
-
|
|
480
471
|
// .icon-cross-bg{
|
|
481
472
|
// // display:none;
|
|
482
473
|
// }
|
|
483
474
|
|
|
484
|
-
.applyfilterselect{
|
|
485
|
-
height:35px;
|
|
486
|
-
width:100%;
|
|
475
|
+
.applyfilterselect {
|
|
476
|
+
height: 35px;
|
|
477
|
+
width: 100%;
|
|
487
478
|
padding-right: 5px;
|
|
488
479
|
align-items: center;
|
|
489
480
|
border: none;
|
|
490
481
|
display: flex;
|
|
491
482
|
justify-content: flex-end;
|
|
492
|
-
button{
|
|
493
|
-
border:none;
|
|
483
|
+
button {
|
|
484
|
+
border: none;
|
|
494
485
|
border-radius: 5px;
|
|
495
486
|
background: var(--hlx-color-primary);
|
|
496
487
|
cursor: pointer;
|
|
497
|
-
width:25%;
|
|
498
|
-
height:30px;
|
|
488
|
+
width: 25%;
|
|
489
|
+
height: 30px;
|
|
499
490
|
color: var(--hlx-color-white);
|
|
500
491
|
font-size: 14px;
|
|
501
492
|
font-weight: bold;
|
|
502
493
|
margin-left: 15px;
|
|
503
494
|
}
|
|
504
|
-
.disablebutton{
|
|
505
|
-
border:none;
|
|
495
|
+
.disablebutton {
|
|
496
|
+
border: none;
|
|
506
497
|
background: none;
|
|
507
498
|
cursor: pointer;
|
|
508
|
-
width:25%;
|
|
499
|
+
width: 25%;
|
|
509
500
|
border-radius: 5px;
|
|
510
|
-
height:30px;
|
|
501
|
+
height: 30px;
|
|
511
502
|
color: #d8d8d8;
|
|
512
503
|
font-size: 14px;
|
|
513
504
|
font-weight: bold;
|
|
514
505
|
}
|
|
515
|
-
.clear-button{
|
|
516
|
-
border:none;
|
|
506
|
+
.clear-button {
|
|
507
|
+
border: none;
|
|
517
508
|
background: #d8d8d8;
|
|
518
509
|
border-radius: 5px;
|
|
519
510
|
cursor: pointer;
|
|
520
|
-
width:25%;
|
|
521
|
-
height:30px;
|
|
511
|
+
width: 25%;
|
|
512
|
+
height: 30px;
|
|
522
513
|
color: var(--hlx-color-white);
|
|
523
514
|
font-size: 14px;
|
|
524
515
|
font-weight: bold;
|
|
525
516
|
}
|
|
526
517
|
}
|
|
527
518
|
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
height:50px !important;
|
|
519
|
+
.sea {
|
|
520
|
+
height: 50px !important;
|
|
531
521
|
}
|
|
532
522
|
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
overflow-y: scroll;
|
|
523
|
+
.multi-check {
|
|
524
|
+
height: 150px !important;
|
|
525
|
+
width: 100%;
|
|
526
|
+
overflow-y: scroll;
|
|
538
527
|
}
|
|
539
|
-
.check{
|
|
540
|
-
height:100%;
|
|
541
|
-
width:100%;
|
|
528
|
+
.check {
|
|
529
|
+
height: 100%;
|
|
530
|
+
width: 100%;
|
|
542
531
|
// height:150px !important;
|
|
543
532
|
// overflow-y: scroll;
|
|
544
533
|
}
|
|
545
534
|
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
button{
|
|
549
|
-
border:none;
|
|
535
|
+
button {
|
|
536
|
+
border: none;
|
|
550
537
|
background: none;
|
|
551
538
|
}
|
|
552
539
|
|
|
553
|
-
#texteditorinput{
|
|
540
|
+
#texteditorinput {
|
|
554
541
|
display: flex;
|
|
555
542
|
}
|
|
556
543
|
|
|
557
|
-
.dropdownname-color{
|
|
544
|
+
.dropdownname-color {
|
|
558
545
|
color: var(--hlx-color-primary);
|
|
559
546
|
}
|
|
560
547
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
.hlx-select-intellisense-option-container{
|
|
548
|
+
.hlx-select-intellisense-option-container {
|
|
564
549
|
z-index: 1560;
|
|
565
550
|
font-family: var(--hlx-font-type-content);
|
|
566
551
|
position: absolute;
|
|
@@ -575,27 +560,26 @@ button{
|
|
|
575
560
|
flex-wrap: wrap;
|
|
576
561
|
height: auto;
|
|
577
562
|
max-height: 246px;
|
|
578
|
-
.single-select-search-container{
|
|
563
|
+
.single-select-search-container {
|
|
579
564
|
display: flex;
|
|
580
|
-
padding:12px;
|
|
565
|
+
padding: 12px;
|
|
581
566
|
align-items: center;
|
|
582
|
-
height:60px;
|
|
583
|
-
.sea1{
|
|
584
|
-
width:98%;
|
|
585
|
-
margin-right:5px;
|
|
567
|
+
height: 60px;
|
|
568
|
+
.sea1 {
|
|
569
|
+
width: 98%;
|
|
570
|
+
margin-right: 5px;
|
|
586
571
|
}
|
|
587
|
-
.icon-add-bg{
|
|
572
|
+
.icon-add-bg {
|
|
588
573
|
color: var(--hlx-color-primary);
|
|
589
574
|
font-size: 16px;
|
|
590
575
|
}
|
|
591
576
|
}
|
|
592
|
-
.hlx-select-option
|
|
593
|
-
{
|
|
577
|
+
.hlx-select-option {
|
|
594
578
|
overflow-y: auto;
|
|
595
579
|
height: 146px;
|
|
596
|
-
width:100%;
|
|
580
|
+
width: 100%;
|
|
597
581
|
}
|
|
598
|
-
.custom-variable-button{
|
|
582
|
+
.custom-variable-button {
|
|
599
583
|
// width: 100.1%;
|
|
600
584
|
// position: absolute;
|
|
601
585
|
// bottom: -39px;
|
|
@@ -610,212 +594,204 @@ button{
|
|
|
610
594
|
text-align: center;
|
|
611
595
|
color: var(--hlx-color-primary);
|
|
612
596
|
font-size: 16px;
|
|
613
|
-
&:hover{
|
|
597
|
+
&:hover {
|
|
614
598
|
color: var(--hlx-color-primary-dark);
|
|
615
599
|
}
|
|
616
|
-
p{
|
|
600
|
+
p {
|
|
617
601
|
font-size: 16px;
|
|
618
602
|
}
|
|
619
603
|
}
|
|
620
604
|
}
|
|
621
605
|
|
|
622
|
-
.single-select-search-container{
|
|
623
|
-
width:100%;
|
|
606
|
+
.single-select-search-container {
|
|
607
|
+
width: 100%;
|
|
624
608
|
}
|
|
625
609
|
|
|
626
|
-
.custom-statement-conten{
|
|
610
|
+
.custom-statement-conten {
|
|
627
611
|
display: flex;
|
|
628
612
|
flex-direction: column;
|
|
629
613
|
align-content: center;
|
|
630
614
|
overflow-y: auto;
|
|
631
615
|
// justify-content: space-evenly;
|
|
632
|
-
height:100%;
|
|
633
|
-
width:100%;
|
|
634
|
-
div{
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
margin-bottom: 20px
|
|
616
|
+
height: 100%;
|
|
617
|
+
width: 100%;
|
|
618
|
+
div {
|
|
619
|
+
.input-container {
|
|
620
|
+
margin-top: 20px;
|
|
621
|
+
margin-bottom: 20px;
|
|
639
622
|
}
|
|
640
|
-
.hlx-select-container{
|
|
641
|
-
|
|
642
|
-
|
|
623
|
+
.hlx-select-container {
|
|
624
|
+
margin-top: 20px;
|
|
625
|
+
margin-bottom: 20px;
|
|
643
626
|
}
|
|
644
627
|
}
|
|
645
628
|
}
|
|
646
629
|
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
width:100%;
|
|
652
|
-
height:37px;
|
|
653
|
-
position:relative;
|
|
630
|
+
.custom-dropdown {
|
|
631
|
+
width: 100%;
|
|
632
|
+
height: 37px;
|
|
633
|
+
position: relative;
|
|
654
634
|
display: flex;
|
|
655
635
|
font-size: 16px;
|
|
656
|
-
align-items: center;
|
|
636
|
+
align-items: center;
|
|
657
637
|
border: 1px solid var(--hlx-border-color);
|
|
658
|
-
border-radius:5px;
|
|
638
|
+
border-radius: 5px;
|
|
659
639
|
background-color: white;
|
|
660
640
|
// margin-top:20px;
|
|
661
641
|
color: var(--hlx-text-color-primary);
|
|
662
642
|
font-family: var(--hlx-font-type-content);
|
|
663
643
|
cursor: pointer;
|
|
664
|
-
&:hover{
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
644
|
+
&:hover {
|
|
645
|
+
border: 1px solid var(--hlx-color-primary);
|
|
646
|
+
.custom-label {
|
|
647
|
+
color: var(--hlx-color-primary);
|
|
648
|
+
}
|
|
669
649
|
}
|
|
670
|
-
.customerror
|
|
671
|
-
{
|
|
650
|
+
.customerror {
|
|
672
651
|
position: absolute;
|
|
673
652
|
font-size: 12px;
|
|
674
653
|
color: var(--hlx-color-error);
|
|
675
|
-
top:35px;
|
|
676
|
-
left:1px;
|
|
677
|
-
}
|
|
678
|
-
.custom-placeholder{
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
}
|
|
707
|
-
i{
|
|
654
|
+
top: 35px;
|
|
655
|
+
left: 1px;
|
|
656
|
+
}
|
|
657
|
+
.custom-placeholder {
|
|
658
|
+
width: 95%;
|
|
659
|
+
height: 35px;
|
|
660
|
+
align-items: center;
|
|
661
|
+
display: flex;
|
|
662
|
+
// justify-content: center;
|
|
663
|
+
text-align: left;
|
|
664
|
+
white-space: nowrap;
|
|
665
|
+
overflow: hidden;
|
|
666
|
+
text-overflow: ellipsis;
|
|
667
|
+
border: none;
|
|
668
|
+
font-size: 14px;
|
|
669
|
+
cursor: pointer;
|
|
670
|
+
}
|
|
671
|
+
&-input {
|
|
672
|
+
width: 95%;
|
|
673
|
+
height: 35px;
|
|
674
|
+
text-align: left;
|
|
675
|
+
white-space: nowrap;
|
|
676
|
+
overflow: hidden;
|
|
677
|
+
text-overflow: ellipsis;
|
|
678
|
+
border: none;
|
|
679
|
+
font-size: 14px;
|
|
680
|
+
cursor: pointer;
|
|
681
|
+
padding: 10px 12px;
|
|
682
|
+
padding-right: 0px;
|
|
683
|
+
border-top-left-radius: 4px;
|
|
684
|
+
border-bottom-left-radius: 4px;
|
|
685
|
+
}
|
|
686
|
+
i {
|
|
708
687
|
height: 35px;
|
|
709
688
|
// width:5%;
|
|
710
689
|
padding-right: 7px;
|
|
711
690
|
display: flex;
|
|
712
691
|
align-items: center;
|
|
713
|
-
border-top-right-radius:4px;
|
|
714
|
-
border-bottom-right-radius:4px;
|
|
692
|
+
border-top-right-radius: 4px;
|
|
693
|
+
border-bottom-right-radius: 4px;
|
|
715
694
|
}
|
|
716
|
-
.custom-label-input{
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
}
|
|
731
|
-
.icon-angle-down-regular,.icon-angle-up-regular{
|
|
732
|
-
// width:5%;
|
|
733
|
-
// position:absolute;
|
|
734
|
-
// right:20px;
|
|
735
|
-
// top:10px;
|
|
736
|
-
font-size:14px;
|
|
737
|
-
cursor:pointer
|
|
738
|
-
}
|
|
739
|
-
.customdropdown-option-container{
|
|
740
|
-
position:absolute;
|
|
741
|
-
width:100%;
|
|
742
|
-
// top:45px;
|
|
743
|
-
// left:0px;
|
|
744
|
-
border: 1px solid var(--hlx-border-color);
|
|
745
|
-
height: auto;
|
|
746
|
-
max-height: 200px;
|
|
747
|
-
color: var(--hlx-text-color-primary);
|
|
748
|
-
background-color: white;
|
|
749
|
-
font-family: var(--hlx-font-type-content);
|
|
750
|
-
z-index:100000000;
|
|
751
|
-
overflow-y: auto;
|
|
695
|
+
.custom-label-input {
|
|
696
|
+
width: 95%;
|
|
697
|
+
height: 35px;
|
|
698
|
+
text-align: left;
|
|
699
|
+
display: flex;
|
|
700
|
+
font: var(--hlx-font-type-content);
|
|
701
|
+
// justify-content: center;
|
|
702
|
+
align-items: center;
|
|
703
|
+
white-space: nowrap;
|
|
704
|
+
overflow: hidden;
|
|
705
|
+
text-overflow: ellipsis;
|
|
706
|
+
border: none;
|
|
707
|
+
font-size: 14px;
|
|
708
|
+
cursor: pointer;
|
|
752
709
|
}
|
|
753
|
-
.
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
710
|
+
.icon-angle-down-regular,
|
|
711
|
+
.icon-angle-up-regular {
|
|
712
|
+
// width:5%;
|
|
713
|
+
// position:absolute;
|
|
714
|
+
// right:20px;
|
|
715
|
+
// top:10px;
|
|
716
|
+
font-size: 14px;
|
|
717
|
+
cursor: pointer;
|
|
718
|
+
}
|
|
719
|
+
.customdropdown-option-container {
|
|
720
|
+
position: absolute;
|
|
721
|
+
width: 100%;
|
|
722
|
+
// top:45px;
|
|
723
|
+
// left:0px;
|
|
724
|
+
border: 1px solid var(--hlx-border-color);
|
|
725
|
+
height: auto;
|
|
726
|
+
max-height: 200px;
|
|
727
|
+
color: var(--hlx-text-color-primary);
|
|
728
|
+
background-color: white;
|
|
729
|
+
font-family: var(--hlx-font-type-content);
|
|
730
|
+
z-index: 100000000;
|
|
731
|
+
overflow-y: auto;
|
|
732
|
+
}
|
|
733
|
+
.no-data-option {
|
|
734
|
+
display: flex;
|
|
735
|
+
justify-content: center;
|
|
736
|
+
align-items: center;
|
|
737
|
+
height: 30px;
|
|
738
|
+
font-size: 14px;
|
|
759
739
|
}
|
|
760
|
-
.option{
|
|
740
|
+
.option {
|
|
741
|
+
font-family: var(--hlx-font-type-content);
|
|
742
|
+
width: 100%;
|
|
743
|
+
height: 30px;
|
|
744
|
+
text-align: left;
|
|
745
|
+
display: flex;
|
|
746
|
+
align-items: center;
|
|
747
|
+
cursor: pointer;
|
|
748
|
+
&:hover {
|
|
749
|
+
color: var(--hlx-text-color-primary);
|
|
750
|
+
background-color: var(--hlx-color-primary-light);
|
|
751
|
+
}
|
|
752
|
+
.option-value {
|
|
761
753
|
font-family: var(--hlx-font-type-content);
|
|
754
|
+
margin: 0;
|
|
755
|
+
padding-top: 4px;
|
|
756
|
+
padding-left: 10px;
|
|
762
757
|
width: 100%;
|
|
758
|
+
font-size: 14px;
|
|
763
759
|
height: 30px;
|
|
764
|
-
text-align: left;
|
|
765
|
-
display: flex;
|
|
766
|
-
align-items: center;
|
|
767
760
|
cursor: pointer;
|
|
768
|
-
|
|
769
|
-
color: var(--hlx-text-color-primary);
|
|
770
|
-
background-color: var(--hlx-color-primary-light);
|
|
771
|
-
}
|
|
772
|
-
.option-value{
|
|
773
|
-
font-family: var(--hlx-font-type-content);
|
|
774
|
-
margin: 0;
|
|
775
|
-
padding-top: 4px;
|
|
776
|
-
padding-left: 10px;
|
|
777
|
-
width: 100%;
|
|
778
|
-
font-size: 14px;
|
|
779
|
-
height: 30px;
|
|
780
|
-
cursor: pointer;
|
|
781
|
-
}
|
|
761
|
+
}
|
|
782
762
|
}
|
|
783
763
|
}
|
|
784
764
|
|
|
785
|
-
|
|
786
|
-
.selecteddropdown{
|
|
765
|
+
.selecteddropdown {
|
|
787
766
|
// color:
|
|
788
767
|
border-color: var(--hlx-color-primary-dark);
|
|
789
768
|
}
|
|
790
769
|
|
|
791
|
-
|
|
792
|
-
.custom-label{
|
|
770
|
+
.custom-label {
|
|
793
771
|
position: absolute;
|
|
794
|
-
top
|
|
795
|
-
left:10px;
|
|
772
|
+
top: -10px;
|
|
773
|
+
left: 10px;
|
|
796
774
|
font-size: 12px;
|
|
797
775
|
background-color: white;
|
|
798
776
|
color: #a6a6a6;
|
|
799
|
-
margin-right:3px;
|
|
800
|
-
.asterik{
|
|
777
|
+
margin-right: 3px;
|
|
778
|
+
.asterik {
|
|
801
779
|
color: var(--hlx-color-error);
|
|
802
|
-
margin-left:3px
|
|
803
|
-
|
|
780
|
+
margin-left: 3px;
|
|
781
|
+
}
|
|
804
782
|
}
|
|
805
783
|
|
|
806
|
-
.custom-label-border{
|
|
807
|
-
height:30px;
|
|
784
|
+
.custom-label-border {
|
|
785
|
+
height: 30px;
|
|
808
786
|
width: 40px;
|
|
809
787
|
// background-color: aquamarine;
|
|
810
|
-
color:black;
|
|
788
|
+
color: black;
|
|
811
789
|
}
|
|
812
790
|
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
width:100%;
|
|
818
|
-
border:1px solid var(--hlx-border-color);
|
|
791
|
+
.custom-multi-select {
|
|
792
|
+
height: 36px;
|
|
793
|
+
width: 100%;
|
|
794
|
+
border: 1px solid var(--hlx-border-color);
|
|
819
795
|
border-radius: 4px;
|
|
820
796
|
padding-left: 8px;
|
|
821
797
|
display: flex;
|
|
@@ -823,19 +799,18 @@ button{
|
|
|
823
799
|
background-color: white;
|
|
824
800
|
position: relative;
|
|
825
801
|
cursor: pointer;
|
|
826
|
-
&:hover{
|
|
802
|
+
&:hover {
|
|
827
803
|
border-color: var(--hlx-color-primary);
|
|
828
804
|
}
|
|
829
|
-
.custom-multi-select-tag-value{
|
|
830
|
-
margin-left:8px;
|
|
805
|
+
.custom-multi-select-tag-value {
|
|
806
|
+
margin-left: 8px;
|
|
831
807
|
cursor: pointer;
|
|
832
808
|
|
|
833
|
-
.multiselect-inline-tag-option{
|
|
834
|
-
|
|
809
|
+
.multiselect-inline-tag-option {
|
|
810
|
+
width: 100px;
|
|
835
811
|
}
|
|
836
812
|
}
|
|
837
|
-
.multi-select-inline-count-value
|
|
838
|
-
{
|
|
813
|
+
.multi-select-inline-count-value {
|
|
839
814
|
width: 34px;
|
|
840
815
|
display: flex;
|
|
841
816
|
align-items: center;
|
|
@@ -845,42 +820,43 @@ button{
|
|
|
845
820
|
justify-content: center;
|
|
846
821
|
position: absolute;
|
|
847
822
|
}
|
|
848
|
-
input{
|
|
849
|
-
width:97%;
|
|
850
|
-
height:100%;
|
|
851
|
-
border:none;
|
|
823
|
+
input {
|
|
824
|
+
width: 97%;
|
|
825
|
+
height: 100%;
|
|
826
|
+
border: none;
|
|
852
827
|
// background-color: blue;
|
|
853
828
|
padding-left: 8px;
|
|
854
|
-
border-top-left-radius:4px;
|
|
829
|
+
border-top-left-radius: 4px;
|
|
855
830
|
cursor: pointer;
|
|
856
|
-
border-bottom-left-radius:4px;
|
|
831
|
+
border-bottom-left-radius: 4px;
|
|
857
832
|
}
|
|
858
|
-
.icon-angle-down-regular
|
|
859
|
-
|
|
860
|
-
|
|
833
|
+
.icon-angle-down-regular,
|
|
834
|
+
.icon-angle-up-regular {
|
|
835
|
+
position: absolute;
|
|
836
|
+
right: 15px;
|
|
861
837
|
font-size: 14px;
|
|
862
838
|
// width:30px;
|
|
863
|
-
height:34px;
|
|
839
|
+
height: 34px;
|
|
864
840
|
display: flex;
|
|
865
841
|
align-items: center;
|
|
866
842
|
}
|
|
867
|
-
.custom-multi-select-option-container{
|
|
843
|
+
.custom-multi-select-option-container {
|
|
868
844
|
position: absolute;
|
|
869
|
-
height:200px;
|
|
870
|
-
width:100%;
|
|
845
|
+
height: 200px;
|
|
846
|
+
width: 100%;
|
|
871
847
|
border: 1px solid var(--hlx-border-color);
|
|
872
848
|
background-color: white;
|
|
873
849
|
overflow: scroll;
|
|
874
850
|
border-radius: 5px;
|
|
875
851
|
padding-left: 8px;
|
|
876
|
-
padding-top:8px;
|
|
852
|
+
padding-top: 8px;
|
|
877
853
|
padding-bottom: 8px;
|
|
878
|
-
top:39px;
|
|
879
|
-
left:0px;
|
|
854
|
+
top: 39px;
|
|
855
|
+
left: 0px;
|
|
880
856
|
overflow-y: none;
|
|
881
857
|
z-index: 10000000000000000;
|
|
882
858
|
}
|
|
883
|
-
.cutom-multi-select-title{
|
|
859
|
+
.cutom-multi-select-title {
|
|
884
860
|
position: absolute;
|
|
885
861
|
top: -16px;
|
|
886
862
|
background: white;
|
|
@@ -890,5 +866,4 @@ button{
|
|
|
890
866
|
padding: 0 5px 0 5px;
|
|
891
867
|
color: #a6a6a6;
|
|
892
868
|
}
|
|
893
|
-
|
|
894
|
-
}
|
|
869
|
+
}
|