halleyx-ui-framework 4.2.3 → 4.2.4
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/dist/cjs/index.js +2 -2
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +2 -2
- package/dist/src/assets/styles/buttonGroup.scss +211 -0
- package/dist/src/assets/styles/index.scss +1 -1
- package/dist/src/assets/styles/inputitems.scss +15 -0
- package/dist/src/assets/styles/objectViewer.scss +2 -2
- package/dist/src/assets/styles/switch.scss +412 -193
- package/dist/src/assets/styles/timeline.scss +5 -4
- package/dist/umd/index.umd.css +1 -1
- package/dist/umd/index.umd.js +2 -2
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/src/assets/fonts/halley-icons-v4.eot +0 -0
- package/dist/src/assets/fonts/halley-icons-v4.svg +0 -356
- package/dist/src/assets/fonts/halley-icons-v4.ttf +0 -0
- package/dist/src/assets/fonts/halley-icons-v4.woff +0 -0
- package/dist/src/assets/fonts/halley-icons-v6.eot +0 -0
- package/dist/src/assets/fonts/halley-icons-v6.svg +0 -359
- package/dist/src/assets/fonts/halley-icons-v6.ttf +0 -0
- package/dist/src/assets/fonts/halley-icons-v6.woff +0 -0
- package/dist/src/assets/fonts/icomoon.eot +0 -0
- package/dist/src/assets/fonts/icomoon.svg +0 -139
- package/dist/src/assets/fonts/icomoon.ttf +0 -0
- package/dist/src/assets/fonts/icomoon.woff +0 -0
- package/dist/src/assets/icon-style.css +0 -1423
- package/dist/src/assets/icons/fonts/halley-icons-v4.eot +0 -0
- package/dist/src/assets/icons/fonts/halley-icons-v4.svg +0 -356
- package/dist/src/assets/icons/fonts/halley-icons-v4.ttf +0 -0
- package/dist/src/assets/icons/fonts/halley-icons-v4.woff +0 -0
- package/dist/src/assets/icons/fonts/halley-icons-v6.eot +0 -0
- package/dist/src/assets/icons/fonts/halley-icons-v6.svg +0 -359
- package/dist/src/assets/icons/fonts/halley-icons-v6.ttf +0 -0
- package/dist/src/assets/icons/fonts/halley-icons-v6.woff +0 -0
- package/dist/src/assets/icons/fonts/icomoon.eot +0 -0
- package/dist/src/assets/icons/fonts/icomoon.svg +0 -139
- package/dist/src/assets/icons/fonts/icomoon.ttf +0 -0
- package/dist/src/assets/icons/fonts/icomoon.woff +0 -0
- package/dist/src/assets/icons/icon-style(old).css +0 -1423
- package/dist/src/assets/styles/fonts/halley-icons-v4.eot +0 -0
- package/dist/src/assets/styles/fonts/halley-icons-v4.svg +0 -356
- package/dist/src/assets/styles/fonts/halley-icons-v4.ttf +0 -0
- package/dist/src/assets/styles/fonts/halley-icons-v4.woff +0 -0
- package/dist/src/assets/styles/fonts/halley-icons-v6.eot +0 -0
- package/dist/src/assets/styles/fonts/halley-icons-v6.svg +0 -359
- package/dist/src/assets/styles/fonts/halley-icons-v6.ttf +0 -0
- package/dist/src/assets/styles/fonts/halley-icons-v6.woff +0 -0
- package/dist/src/assets/styles/fonts/icomoon.eot +0 -0
- package/dist/src/assets/styles/fonts/icomoon.svg +0 -139
- package/dist/src/assets/styles/fonts/icomoon.ttf +0 -0
- package/dist/src/assets/styles/fonts/icomoon.woff +0 -0
|
@@ -1,219 +1,438 @@
|
|
|
1
|
-
.switch-containerr-regular {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
.switch-item-regular input[type='radio']:checked + label {
|
|
19
|
-
background-color: #007aff;
|
|
20
|
-
color: #fff;
|
|
21
|
-
}
|
|
1
|
+
// .switch-containerr-regular {
|
|
2
|
+
// // width: -moz-fit-content;
|
|
3
|
+
// width: fit-content;
|
|
4
|
+
// // padding: 14px 16px 14px 16px;
|
|
5
|
+
// border: 1px solid var(--hlx-color-primary);
|
|
6
|
+
// box-sizing: border-box;
|
|
7
|
+
// border-radius: 8px;
|
|
8
|
+
// display: flex;
|
|
9
|
+
// flex-direction: row;
|
|
10
|
+
// height: 38px;
|
|
11
|
+
// .switch-item-regular input[type='radio'] {
|
|
12
|
+
// position: absolute;
|
|
13
|
+
// opacity: 0;
|
|
14
|
+
// width: 0;
|
|
15
|
+
// height: 0;
|
|
16
|
+
// }
|
|
22
17
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
18
|
+
// .switch-item-regular input[type='radio']:checked + label {
|
|
19
|
+
// background-color: #007aff;
|
|
20
|
+
// color: #fff;
|
|
21
|
+
// }
|
|
22
|
+
|
|
23
|
+
// .switch-item-regular {
|
|
24
|
+
// padding: 10px 14px 10px 14px;
|
|
25
|
+
// background: var(--hlx-color-white);
|
|
26
|
+
// text-align: center;
|
|
27
|
+
// cursor: pointer;
|
|
28
|
+
// border-radius: 7px;
|
|
29
|
+
// display: flex;
|
|
30
|
+
// flex-direction: row;
|
|
31
|
+
// align-items: center;
|
|
32
|
+
// justify-content: center;
|
|
33
|
+
|
|
34
|
+
// font-size: 14px;
|
|
35
|
+
// color: var(--hlx-text-color-primary);
|
|
36
|
+
// // width: 100%;
|
|
37
|
+
|
|
38
|
+
// .content-regular {
|
|
39
|
+
// display: flex;
|
|
40
|
+
// cursor: pointer;
|
|
41
|
+
// font-size: 14px;
|
|
42
|
+
// flex-direction: row;
|
|
43
|
+
// align-items: center;
|
|
44
|
+
// justify-content: center;
|
|
45
|
+
// i {
|
|
46
|
+
// font-size: var(--hlx-icon-size-sm);
|
|
47
|
+
// margin-right: 8px;
|
|
48
|
+
// }
|
|
49
|
+
// }
|
|
50
|
+
// }
|
|
51
|
+
// .noborder {
|
|
52
|
+
// border: none;
|
|
53
|
+
// }
|
|
54
|
+
// .border {
|
|
55
|
+
// border-right: 1px solid var(--hlx-color-primary);
|
|
56
|
+
// border-top-right-radius: 0px;
|
|
57
|
+
// border-bottom-right-radius: 0px;
|
|
58
|
+
// // border: none;
|
|
59
|
+
// }
|
|
60
|
+
// .selected-switch-regular {
|
|
61
|
+
// color: var(--hlx-color-white);
|
|
62
|
+
// background: var(--hlx-color-primary);
|
|
63
|
+
// }
|
|
64
|
+
// .noradius {
|
|
65
|
+
// border-radius: 0;
|
|
66
|
+
// }
|
|
67
|
+
// // .radius {
|
|
68
|
+
// // }
|
|
69
|
+
// .noleftradius {
|
|
70
|
+
// border-top-left-radius: 0px;
|
|
71
|
+
// border-bottom-left-radius: 0px;
|
|
72
|
+
// }
|
|
73
|
+
// }
|
|
74
|
+
// .switch-containerr-tab-top {
|
|
75
|
+
// // width: -moz-fit-content;
|
|
76
|
+
// width: fit-content;
|
|
77
|
+
// // padding: 14px 16px 14px 16px;
|
|
78
|
+
// // border-top: 1px solid var(--hlx-border-color);
|
|
79
|
+
// box-sizing: border-box;
|
|
80
|
+
// border-radius: 6px;
|
|
81
|
+
// display: flex;
|
|
82
|
+
// flex-direction: row;
|
|
83
|
+
// height: 38px;
|
|
84
|
+
// .switch-item-tab-top {
|
|
85
|
+
// padding: 10px 14px 10px 14px;
|
|
86
|
+
// background: var(--hlx-color-white);
|
|
87
|
+
// text-align: center;
|
|
88
|
+
// cursor: pointer;
|
|
89
|
+
// border-radius: 6px;
|
|
90
|
+
// display: flex;
|
|
91
|
+
// flex-direction: row;
|
|
92
|
+
// align-items: center;
|
|
93
|
+
// justify-content: center;
|
|
33
94
|
|
|
95
|
+
// font-size: 14px;
|
|
96
|
+
// color: var(--hlx-text-color-primary);
|
|
97
|
+
// // width: 100%;
|
|
98
|
+
|
|
99
|
+
// .content-tab-top {
|
|
100
|
+
// display: flex;
|
|
101
|
+
// font-size: 14px;
|
|
102
|
+
// flex-direction: row;
|
|
103
|
+
// cursor: pointer;
|
|
104
|
+
// align-items: center;
|
|
105
|
+
// justify-content: center;
|
|
106
|
+
// i {
|
|
107
|
+
// font-size: var(--hlx-icon-size-sm);
|
|
108
|
+
// margin-right: 8px;
|
|
109
|
+
// }
|
|
110
|
+
// input[type='radio'] {
|
|
111
|
+
// position: absolute;
|
|
112
|
+
// opacity: 0;
|
|
113
|
+
// width: 0;
|
|
114
|
+
// height: 0;
|
|
115
|
+
// }
|
|
116
|
+
// }
|
|
117
|
+
// }
|
|
118
|
+
// .noborder {
|
|
119
|
+
// border: none;
|
|
120
|
+
// }
|
|
121
|
+
// // .border{
|
|
122
|
+
// // border-right: 1px solid var(--hlx-color-primary);
|
|
123
|
+
// // border-top-right-radius: 0px;
|
|
124
|
+
// // border-bottom-right-radius: 0px;
|
|
125
|
+
// // // border: none;
|
|
126
|
+
// // }
|
|
127
|
+
// .selected-switch-tab-top {
|
|
128
|
+
// color: var(--hlx-color-primary);
|
|
129
|
+
// border-top: 2px solid var(--hlx-color-primary);
|
|
130
|
+
// border-top-right-radius: 0px;
|
|
131
|
+
// border-top-left-radius: 0px;
|
|
132
|
+
// // background: var(--hlx-color-primary);
|
|
133
|
+
// }
|
|
134
|
+
// .noradius {
|
|
135
|
+
// border-radius: 0;
|
|
136
|
+
// }
|
|
137
|
+
// // .radius {
|
|
138
|
+
// // }
|
|
139
|
+
// .noleftradius {
|
|
140
|
+
// border-top-left-radius: 0px;
|
|
141
|
+
// border-bottom-left-radius: 0px;
|
|
142
|
+
// }
|
|
143
|
+
// }
|
|
144
|
+
// .switch-containerr-tab-bottom {
|
|
145
|
+
// // width: -moz-fit-content;
|
|
146
|
+
// width: fit-content;
|
|
147
|
+
// // padding: 14px 16px 14px 16px;
|
|
148
|
+
// // border-bottom: 1px solid var(--hlx-border-color);
|
|
149
|
+
// box-sizing: border-box;
|
|
150
|
+
// border-radius: 6px;
|
|
151
|
+
// display: flex;
|
|
152
|
+
// flex-direction: row;
|
|
153
|
+
// height: 38px;
|
|
154
|
+
// .switch-item-tab-bottom {
|
|
155
|
+
// padding: 10px 14px 10px 14px;
|
|
156
|
+
// background: var(--hlx-color-white);
|
|
157
|
+
// text-align: center;
|
|
158
|
+
// cursor: pointer;
|
|
159
|
+
// // border-radius: 6px;
|
|
160
|
+
// display: flex;
|
|
161
|
+
// flex-direction: row;
|
|
162
|
+
// align-items: center;
|
|
163
|
+
// justify-content: center;
|
|
164
|
+
|
|
165
|
+
// font-size: 14px;
|
|
166
|
+
// color: var(--hlx-text-color-primary);
|
|
167
|
+
// border-bottom: 2px solid transparent;
|
|
168
|
+
// // width: 100%;
|
|
169
|
+
|
|
170
|
+
// .content-tab-bottom {
|
|
171
|
+
// display: flex;
|
|
172
|
+
// cursor: pointer;
|
|
173
|
+
// font-size: 14px;
|
|
174
|
+
// flex-direction: row;
|
|
175
|
+
// align-items: center;
|
|
176
|
+
// justify-content: center;
|
|
177
|
+
// i {
|
|
178
|
+
// font-size: var(--hlx-icon-size-sm);
|
|
179
|
+
// margin-right: 8px;
|
|
180
|
+
// }
|
|
181
|
+
// input[type='radio'] {
|
|
182
|
+
// position: absolute;
|
|
183
|
+
// opacity: 0;
|
|
184
|
+
// width: 0;
|
|
185
|
+
// height: 0;
|
|
186
|
+
// }
|
|
187
|
+
// }
|
|
188
|
+
// }
|
|
189
|
+
// .noborder {
|
|
190
|
+
// border: none;
|
|
191
|
+
// }
|
|
192
|
+
// // .border{
|
|
193
|
+
// // border-right: 1px solid var(--hlx-color-primary);
|
|
194
|
+
// // border-top-right-radius: 0px;
|
|
195
|
+
// // border-bottom-right-radius: 0px;
|
|
196
|
+
// // // border: none;
|
|
197
|
+
// // }
|
|
198
|
+
// .selected-switch-tab-bottom {
|
|
199
|
+
// color: var(--hlx-color-primary);
|
|
200
|
+
// border-bottom: 2px solid var(--hlx-color-primary);
|
|
201
|
+
// border-top-right-radius: 0px;
|
|
202
|
+
// border-top-left-radius: 0px;
|
|
203
|
+
// }
|
|
204
|
+
// .noradius {
|
|
205
|
+
// border-radius: 0;
|
|
206
|
+
// }
|
|
207
|
+
// // .radius {
|
|
208
|
+
// // }
|
|
209
|
+
// .noleftradius {
|
|
210
|
+
// border-top-left-radius: 0px;
|
|
211
|
+
// border-bottom-left-radius: 0px;
|
|
212
|
+
// }
|
|
213
|
+
// }
|
|
214
|
+
|
|
215
|
+
// .switchselectvalue {
|
|
216
|
+
// border: none;
|
|
217
|
+
// background-color: var(--hlx-color-primary) !important;
|
|
218
|
+
// color: var(--hlx-color-white) !important;
|
|
219
|
+
// }
|
|
220
|
+
.hlx-btn-switch-group {
|
|
221
|
+
.hlx-switch-btn {
|
|
222
|
+
outline: none !important;
|
|
223
|
+
}
|
|
224
|
+
.hlx-switch-btn {
|
|
225
|
+
display: inline-flex;
|
|
226
|
+
align-items: center;
|
|
227
|
+
letter-spacing: 0.14px;
|
|
228
|
+
padding: 10px 14px;
|
|
229
|
+
margin-bottom: 0;
|
|
34
230
|
font-size: 14px;
|
|
35
|
-
|
|
36
|
-
//
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
231
|
+
font-weight: 400;
|
|
232
|
+
// line-height: 1.42857143;
|
|
233
|
+
text-align: center;
|
|
234
|
+
white-space: nowrap;
|
|
235
|
+
vertical-align: middle;
|
|
236
|
+
-ms-touch-action: manipulation;
|
|
237
|
+
touch-action: manipulation;
|
|
238
|
+
cursor: pointer;
|
|
239
|
+
-webkit-user-select: none;
|
|
240
|
+
-moz-user-select: none;
|
|
241
|
+
-ms-user-select: none;
|
|
242
|
+
user-select: none;
|
|
243
|
+
background-image: none;
|
|
244
|
+
border: 2px solid transparent;
|
|
245
|
+
border-radius: 4px;
|
|
246
|
+
&.--border-bottom,
|
|
247
|
+
&.--border-top {
|
|
248
|
+
border-radius: 0 !important;
|
|
249
|
+
// border-width: unset;
|
|
49
250
|
}
|
|
50
251
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
border-
|
|
56
|
-
border-top-right-radius: 0px;
|
|
57
|
-
border-bottom-right-radius: 0px;
|
|
58
|
-
// border: none;
|
|
59
|
-
}
|
|
60
|
-
.selected-switch-regular {
|
|
61
|
-
color: var(--hlx-color-white);
|
|
62
|
-
background: var(--hlx-color-primary);
|
|
252
|
+
|
|
253
|
+
& > .hlx-switch-btn:last-child:not(:first-child),
|
|
254
|
+
& > .dropdown-toggle:not(:first-child) {
|
|
255
|
+
border-top-left-radius: 0;
|
|
256
|
+
border-bottom-left-radius: 0;
|
|
63
257
|
}
|
|
64
|
-
|
|
258
|
+
|
|
259
|
+
& > .hlx-switch-btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
|
65
260
|
border-radius: 0;
|
|
66
261
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
.
|
|
70
|
-
|
|
71
|
-
|
|
262
|
+
|
|
263
|
+
& .hlx-switch-btn + .hlx-switch-btn,
|
|
264
|
+
& .hlx-switch-btn + &,
|
|
265
|
+
& & + .hlx-switch-btn,
|
|
266
|
+
& & + & {
|
|
267
|
+
margin-left: -1px;
|
|
72
268
|
}
|
|
73
|
-
}
|
|
74
|
-
.switch-containerr-tab-top {
|
|
75
|
-
// width: -moz-fit-content;
|
|
76
|
-
width: fit-content;
|
|
77
|
-
// padding: 14px 16px 14px 16px;
|
|
78
|
-
// border-top: 1px solid var(--hlx-border-color);
|
|
79
|
-
box-sizing: border-box;
|
|
80
|
-
border-radius: 6px;
|
|
81
|
-
display: flex;
|
|
82
|
-
flex-direction: row;
|
|
83
|
-
height: 38px;
|
|
84
|
-
.switch-item-tab-top {
|
|
85
|
-
padding: 10px 14px 10px 14px;
|
|
86
|
-
background: var(--hlx-color-white);
|
|
87
|
-
text-align: center;
|
|
88
|
-
cursor: pointer;
|
|
89
|
-
border-radius: 6px;
|
|
90
|
-
display: flex;
|
|
91
|
-
flex-direction: row;
|
|
92
|
-
align-items: center;
|
|
93
|
-
justify-content: center;
|
|
94
269
|
|
|
95
|
-
|
|
270
|
+
.hlx-switch-btn-default {
|
|
96
271
|
color: var(--hlx-text-color-primary);
|
|
97
|
-
//
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
272
|
+
// background-color: #fff;
|
|
273
|
+
border-color: var(--hlx-color-primary);
|
|
274
|
+
border-width: thin;
|
|
275
|
+
&.--border-bottom,
|
|
276
|
+
&.--border-top {
|
|
277
|
+
border: 2px solid;
|
|
278
|
+
border-color: transparent;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
&:hover,
|
|
282
|
+
&:focus {
|
|
283
|
+
color: var(--hlx-text-color-primary);
|
|
284
|
+
background-color: va(--hlx-text-color-secondary);
|
|
285
|
+
// border-color: #adadad;
|
|
286
|
+
-webkit-box-shadow: inset 0px 0px 2px 1.3px rgba(0, 0, 0, 0.125);
|
|
287
|
+
box-shadow: inset 0px 0px 2px 1.3px rgba(0, 0, 0, 0.125);
|
|
288
|
+
&.--border-bottom {
|
|
289
|
+
color: var(--hlx-color-primary) !important;
|
|
290
|
+
background-color: transparent !important;
|
|
291
|
+
-webkit-box-shadow: none;
|
|
292
|
+
box-shadow: none;
|
|
293
|
+
// border: 2px solid transparent;
|
|
294
|
+
|
|
295
|
+
// border-color: transparent;
|
|
115
296
|
}
|
|
116
297
|
}
|
|
298
|
+
&:focus {
|
|
299
|
+
-webkit-box-shadow: inset 0px 0px 2px 1.3px rgba(0, 0, 0, 0.125);
|
|
300
|
+
box-shadow: inset 0px 0px 2px 1.3px rgba(0, 0, 0, 0.125);
|
|
301
|
+
}
|
|
302
|
+
// &:focus {
|
|
303
|
+
// color: var(--hlx-text-color-primary);
|
|
304
|
+
// background-color: #e6e6e6;
|
|
305
|
+
// border-color: #8c8c8c;
|
|
306
|
+
// }
|
|
117
307
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
308
|
+
|
|
309
|
+
.hlx-switch-btn:active {
|
|
310
|
+
background-image: none;
|
|
311
|
+
outline: 0;
|
|
312
|
+
-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.125);
|
|
313
|
+
box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.125);
|
|
314
|
+
// border-width: thin;
|
|
315
|
+
|
|
316
|
+
&.--border-bottom {
|
|
317
|
+
-webkit-box-shadow: none;
|
|
318
|
+
box-shadow: none;
|
|
319
|
+
color: var(--hlx-color-primary) !important;
|
|
320
|
+
background-color: transparent !important;
|
|
321
|
+
// border-width: 2px;
|
|
322
|
+
// border-width: unset;
|
|
323
|
+
|
|
324
|
+
// border-bottom-color: var(--hlx-color-primary);
|
|
325
|
+
}
|
|
136
326
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
.
|
|
140
|
-
|
|
141
|
-
|
|
327
|
+
|
|
328
|
+
.hlx-switch-btn.focus,
|
|
329
|
+
.hlx-switch-btn:focus,
|
|
330
|
+
.hlx-switch-btn:hover {
|
|
331
|
+
color: var(--hlx-text-color-primary);
|
|
332
|
+
text-decoration: none;
|
|
333
|
+
z-index: 0;
|
|
142
334
|
}
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
// padding: 14px 16px 14px 16px;
|
|
148
|
-
// border-bottom: 1px solid var(--hlx-border-color);
|
|
149
|
-
box-sizing: border-box;
|
|
150
|
-
border-radius: 6px;
|
|
151
|
-
display: flex;
|
|
152
|
-
flex-direction: row;
|
|
153
|
-
height: 38px;
|
|
154
|
-
.switch-item-tab-bottom {
|
|
155
|
-
padding: 10px 14px 10px 14px;
|
|
156
|
-
background: var(--hlx-color-white);
|
|
157
|
-
text-align: center;
|
|
158
|
-
cursor: pointer;
|
|
159
|
-
// border-radius: 6px;
|
|
335
|
+
|
|
336
|
+
&,
|
|
337
|
+
&-vertical {
|
|
338
|
+
position: relative;
|
|
160
339
|
display: flex;
|
|
161
|
-
flex-
|
|
340
|
+
flex-wrap: nowrap;
|
|
341
|
+
|
|
342
|
+
width: 100%;
|
|
343
|
+
// flex-wrap: wrap;
|
|
162
344
|
align-items: center;
|
|
163
|
-
|
|
345
|
+
align-content: center;
|
|
346
|
+
}
|
|
164
347
|
|
|
165
|
-
|
|
348
|
+
.hlx-switch-btn-default.active,
|
|
349
|
+
.hlx-switch-btn-default:active,
|
|
350
|
+
.open > .dropdown-toggle.hlx-switch-btn-default {
|
|
166
351
|
color: var(--hlx-text-color-primary);
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
352
|
+
// background-color: va(--hlx-text-color-secondary);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.hlx-switch-btn-active {
|
|
356
|
+
background-color: var(--hlx-color-primary) !important;
|
|
357
|
+
color: white;
|
|
358
|
+
// border-color: #265e4b;
|
|
359
|
+
border-width: thin;
|
|
360
|
+
|
|
361
|
+
z-index: 5;
|
|
362
|
+
&:focus {
|
|
363
|
+
box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.125);
|
|
364
|
+
}
|
|
365
|
+
&.--border-bottom {
|
|
366
|
+
border-width: unset;
|
|
367
|
+
|
|
368
|
+
color: var(--hlx-color-primary) !important;
|
|
369
|
+
background-color: transparent !important;
|
|
370
|
+
border-color: transparent !important ;
|
|
371
|
+
border-bottom-color: var(--hlx-color-primary) !important ;
|
|
372
|
+
// border-radius: 2.6px !important;
|
|
373
|
+
border-bottom-left-radius: 1.8px !important;
|
|
374
|
+
border-bottom-right-radius: 1.8px !important;
|
|
375
|
+
border: 2px solid;
|
|
187
376
|
}
|
|
188
377
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
border-
|
|
378
|
+
|
|
379
|
+
.hlx-switch-btn-active:hover {
|
|
380
|
+
color: #fff;
|
|
381
|
+
background-color: var(--hlx-color-primary);
|
|
382
|
+
// border-color: #265e4b;
|
|
383
|
+
z-index: 5;
|
|
384
|
+
&.--border-bottom {
|
|
385
|
+
color: var(--hlx-color-primary) !important;
|
|
386
|
+
background-color: transparent !important;
|
|
387
|
+
border-color: transparent;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
.hlx-switch-btn-active.focus,
|
|
391
|
+
.hlx-switch-btn-active:focus {
|
|
392
|
+
color: white;
|
|
393
|
+
background-color: var(--hlx-color-primary);
|
|
394
|
+
// border-color: #265e4b;
|
|
395
|
+
&.--border-bottom {
|
|
396
|
+
color: var(--hlx-color-primary) !important;
|
|
397
|
+
background-color: transparent !important;
|
|
398
|
+
border-color: transparent;
|
|
399
|
+
}
|
|
206
400
|
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
401
|
+
& > .hlx-switch-btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
|
402
|
+
border-top-right-radius: 0;
|
|
403
|
+
border-bottom-right-radius: 0;
|
|
404
|
+
}
|
|
405
|
+
& > .hlx-switch-btn:first-child {
|
|
406
|
+
margin-left: 0;
|
|
407
|
+
}
|
|
408
|
+
&-vertical > .hlx-switch-btn,
|
|
409
|
+
& > .hlx-switch-btn {
|
|
410
|
+
position: relative;
|
|
411
|
+
float: left;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
& > .hlx-switch-btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
|
415
|
+
border-top-right-radius: 0;
|
|
416
|
+
border-bottom-right-radius: 0;
|
|
417
|
+
}
|
|
418
|
+
& > .hlx-switch-btn:first-child {
|
|
419
|
+
margin-left: 0;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.hlx-switch-btn.active.focus,
|
|
423
|
+
.hlx-switch-btn.active:focus,
|
|
424
|
+
.hlx-switch-btn.focus,
|
|
425
|
+
.hlx-switch-btn:active.focus,
|
|
426
|
+
.hlx-switch-btn:active:focus,
|
|
427
|
+
.hlx-switch-btn:focus {
|
|
428
|
+
outline: thin dotted;
|
|
429
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
430
|
+
outline-offset: -2px;
|
|
212
431
|
}
|
|
213
|
-
}
|
|
214
432
|
|
|
215
|
-
.
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
433
|
+
& > .hlx-switch-btn.active,
|
|
434
|
+
& > .hlx-switch-btn:active,
|
|
435
|
+
& > .hlx-switch-btn:focus {
|
|
436
|
+
z-index: 2;
|
|
437
|
+
}
|
|
219
438
|
}
|
|
@@ -201,9 +201,10 @@
|
|
|
201
201
|
align-items: center;
|
|
202
202
|
margin-left: 16px;
|
|
203
203
|
margin-right: 16px;
|
|
204
|
+
justify-content: center;
|
|
204
205
|
cursor: pointer;
|
|
205
206
|
.t-circle {
|
|
206
|
-
margin-bottom:
|
|
207
|
+
margin-bottom: 0px;
|
|
207
208
|
}
|
|
208
209
|
.t-title {
|
|
209
210
|
font-size: 14px;
|
|
@@ -354,7 +355,7 @@
|
|
|
354
355
|
align-items: center;
|
|
355
356
|
cursor: pointer;
|
|
356
357
|
.t-circle-v {
|
|
357
|
-
margin-bottom:
|
|
358
|
+
margin-bottom: 0px;
|
|
358
359
|
}
|
|
359
360
|
.t-content-v {
|
|
360
361
|
display: flex;
|
|
@@ -458,8 +459,8 @@
|
|
|
458
459
|
justify-content: center;
|
|
459
460
|
align-items: center;
|
|
460
461
|
font-size: 14px;
|
|
461
|
-
height:
|
|
462
|
-
width:
|
|
462
|
+
height: 24px;
|
|
463
|
+
width: 24px;
|
|
463
464
|
border-radius: 100%;
|
|
464
465
|
border: 1px solid var(--hlx-border-color);
|
|
465
466
|
i {
|