@clayui/css 3.88.0 → 3.90.0
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/lib/css/atlas.css +100 -176
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +76 -126
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +118 -147
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/angle-double-left-small.svg +10 -0
- package/lib/images/icons/angle-double-left.svg +10 -0
- package/lib/images/icons/angle-double-right-small.svg +10 -0
- package/lib/images/icons/angle-double-right.svg +10 -0
- package/lib/images/icons/field-area.svg +10 -0
- package/lib/images/icons/flags-km-KH.svg +12 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/angle-double-left-small.svg +10 -0
- package/src/images/icons/angle-double-left.svg +10 -0
- package/src/images/icons/angle-double-right-small.svg +10 -0
- package/src/images/icons/angle-double-right.svg +10 -0
- package/src/images/icons/field-area.svg +10 -0
- package/src/images/icons/flags-km-KH.svg +12 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/_variables.scss +2 -0
- package/src/scss/atlas/_variables.scss +2 -0
- package/src/scss/atlas/variables/_c-root.scss +3 -0
- package/src/scss/atlas/variables/_globals.scss +1 -0
- package/src/scss/atlas/variables/_menubar.scss +68 -62
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/cadmin/variables/_buttons.scss +1 -1
- package/src/scss/cadmin/variables/_globals.scss +1 -10
- package/src/scss/cadmin/variables/_menubar.scss +204 -189
- package/src/scss/cadmin/variables/_navigation-bar.scss +17 -1
- package/src/scss/cadmin/variables/_navs.scss +1 -1
- package/src/scss/cadmin/variables/_pagination.scss +3 -3
- package/src/scss/components/_root.scss +17 -13
- package/src/scss/functions/_global-functions.scss +21 -0
- package/src/scss/functions/_lx-icons-generated.scss +12 -0
- package/src/scss/mixins/_breakpoints.scss +44 -40
- package/src/scss/mixins/_menubar.scss +131 -10
- package/src/scss/variables/_buttons.scss +1 -1
- package/src/scss/variables/_c-root.scss +3 -0
- package/src/scss/variables/_globals.scss +1 -10
- package/src/scss/variables/_menubar.scss +158 -161
- package/src/scss/variables/_navigation-bar.scss +17 -1
- package/src/scss/variables/_navs.scss +1 -1
|
@@ -4,54 +4,58 @@ $cadmin-menubar-vertical-expand-md: () !default;
|
|
|
4
4
|
$cadmin-menubar-vertical-expand-md: map-deep-merge(
|
|
5
5
|
(
|
|
6
6
|
max-width: 250px,
|
|
7
|
-
|
|
8
|
-
align-items: center,
|
|
9
|
-
display: flex,
|
|
10
|
-
flex-wrap: wrap,
|
|
11
|
-
justify-content: space-between,
|
|
12
|
-
margin-bottom: 24px,
|
|
13
|
-
margin-left: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
14
|
-
margin-right: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
15
|
-
),
|
|
16
|
-
collapse: (
|
|
7
|
+
menubar-collapse: (
|
|
17
8
|
display: block,
|
|
18
9
|
),
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
z-index: $cadmin-zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
29
|
-
),
|
|
30
|
-
collapse-nav-mobile: (
|
|
31
|
-
margin-bottom: 8px,
|
|
32
|
-
margin-top: 8px,
|
|
33
|
-
),
|
|
34
|
-
nav-nested-mobile: (
|
|
35
|
-
margin-bottom: 8px,
|
|
36
|
-
margin-top: 8px,
|
|
37
|
-
),
|
|
38
|
-
nav-nested-margins-item-mobile: (
|
|
39
|
-
margin-left: 0,
|
|
40
|
-
),
|
|
41
|
-
toggler-mobile: (
|
|
42
|
-
align-items: center,
|
|
43
|
-
border-color: transparent,
|
|
44
|
-
border-style: solid,
|
|
45
|
-
border-width: 1px,
|
|
46
|
-
display: flex,
|
|
47
|
-
height: 32px,
|
|
48
|
-
padding-left: 8px,
|
|
49
|
-
padding-right: 8px,
|
|
50
|
-
c-inner: (
|
|
10
|
+
media-breakpoint-down: (
|
|
11
|
+
sm: (
|
|
12
|
+
align-items: center,
|
|
13
|
+
display: flex,
|
|
14
|
+
flex-wrap: wrap,
|
|
15
|
+
justify-content: space-between,
|
|
16
|
+
margin-bottom: 24px,
|
|
17
|
+
margin-left: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
18
|
+
margin-right: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
51
19
|
max-width: none,
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
20
|
+
menubar-collapse: (
|
|
21
|
+
border-color: transparent,
|
|
22
|
+
border-style: solid,
|
|
23
|
+
border-width: 1px,
|
|
24
|
+
display: none,
|
|
25
|
+
left: -1px,
|
|
26
|
+
position: absolute,
|
|
27
|
+
right: -1px,
|
|
28
|
+
top: 100%,
|
|
29
|
+
z-index:
|
|
30
|
+
$cadmin-zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
31
|
+
),
|
|
32
|
+
nav-nested: (
|
|
33
|
+
margin-bottom: 8px,
|
|
34
|
+
margin-top: 8px,
|
|
35
|
+
),
|
|
36
|
+
nav-nested-margins: (
|
|
37
|
+
margin-bottom: 8px,
|
|
38
|
+
margin-top: 8px,
|
|
39
|
+
),
|
|
40
|
+
nav-nested-margins-item: (
|
|
41
|
+
margin-left: 0,
|
|
42
|
+
),
|
|
43
|
+
menubar-toggler: (
|
|
44
|
+
align-items: center,
|
|
45
|
+
border-color: transparent,
|
|
46
|
+
border-style: solid,
|
|
47
|
+
border-width: 1px,
|
|
48
|
+
display: flex,
|
|
49
|
+
height: 32px,
|
|
50
|
+
padding-left: 8px,
|
|
51
|
+
padding-right: 8px,
|
|
52
|
+
c-inner: (
|
|
53
|
+
max-width: none,
|
|
54
|
+
),
|
|
55
|
+
lexicon-icon: (
|
|
56
|
+
margin-top: 0,
|
|
57
|
+
),
|
|
58
|
+
),
|
|
55
59
|
),
|
|
56
60
|
),
|
|
57
61
|
),
|
|
@@ -61,11 +65,7 @@ $cadmin-menubar-vertical-expand-md: map-deep-merge(
|
|
|
61
65
|
$cadmin-menubar-vertical-transparent-md: () !default;
|
|
62
66
|
$cadmin-menubar-vertical-transparent-md: map-deep-merge(
|
|
63
67
|
(
|
|
64
|
-
|
|
65
|
-
mobile: (
|
|
66
|
-
background-color: $cadmin-white,
|
|
67
|
-
),
|
|
68
|
-
link: (
|
|
68
|
+
nav-link: (
|
|
69
69
|
border-radius: 6px,
|
|
70
70
|
transition: #{color 0.15s ease-in-out,
|
|
71
71
|
background-color 0.15s ease-in-out,
|
|
@@ -103,50 +103,58 @@ $cadmin-menubar-vertical-transparent-md: map-deep-merge(
|
|
|
103
103
|
font-weight: $cadmin-font-weight-semi-bold,
|
|
104
104
|
),
|
|
105
105
|
),
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
106
|
+
media-breakpoint-down: (
|
|
107
|
+
sm: (
|
|
108
|
+
background-color: $cadmin-white,
|
|
109
|
+
nav-link: (
|
|
110
|
+
border-radius: clay-enable-rounded(0),
|
|
111
|
+
color: $cadmin-gray-900,
|
|
112
|
+
hover: (
|
|
113
|
+
background-color: rgba($cadmin-primary, 0.04),
|
|
114
|
+
color: $cadmin-gray-900,
|
|
115
|
+
),
|
|
116
|
+
focus: (
|
|
117
|
+
background-color: rgba($cadmin-primary, 0.04),
|
|
118
|
+
),
|
|
119
|
+
active-class: (
|
|
120
|
+
background-color: rgba($cadmin-primary, 0.06),
|
|
121
|
+
color: $cadmin-gray-900,
|
|
122
|
+
font-weight: $cadmin-font-weight-semi-bold,
|
|
123
|
+
),
|
|
124
|
+
disabled: (
|
|
125
|
+
background-color: transparent,
|
|
126
|
+
color: $cadmin-gray-600,
|
|
127
|
+
),
|
|
128
|
+
show: (
|
|
129
|
+
background-color: c-unset,
|
|
130
|
+
color: c-unset,
|
|
131
|
+
font-weight: c-unset,
|
|
132
|
+
),
|
|
133
|
+
),
|
|
134
|
+
menubar-collapse: (
|
|
135
|
+
background-color: $cadmin-white,
|
|
136
|
+
border-color: $cadmin-gray-300,
|
|
137
|
+
border-radius: clay-enable-rounded($cadmin-border-radius),
|
|
138
|
+
box-shadow:
|
|
139
|
+
clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
140
|
+
),
|
|
141
|
+
menubar-toggler: (
|
|
142
|
+
color: $cadmin-gray-900,
|
|
143
|
+
font-size: 14px,
|
|
144
|
+
font-weight: $cadmin-font-weight-semi-bold,
|
|
145
|
+
text-decoration: none,
|
|
146
|
+
transition: box-shadow 0.15s ease-in-out,
|
|
147
|
+
focus: (
|
|
148
|
+
box-shadow:
|
|
149
|
+
clay-enable-shadows(
|
|
150
|
+
$cadmin-component-focus-box-shadow
|
|
151
|
+
),
|
|
152
|
+
outline: 0,
|
|
153
|
+
),
|
|
154
|
+
disabled: (
|
|
155
|
+
box-shadow: clay-enable-shadows(none),
|
|
156
|
+
),
|
|
157
|
+
),
|
|
150
158
|
),
|
|
151
159
|
),
|
|
152
160
|
),
|
|
@@ -214,56 +222,59 @@ $cadmin-menubar-vertical-decorated-md-nav-link-after-active: map-deep-merge(
|
|
|
214
222
|
$cadmin-menubar-vertical-expand-lg: () !default;
|
|
215
223
|
$cadmin-menubar-vertical-expand-lg: map-deep-merge(
|
|
216
224
|
(
|
|
217
|
-
breakpoint-up: lg,
|
|
218
225
|
max-width: 250px,
|
|
219
|
-
|
|
220
|
-
align-items: center,
|
|
221
|
-
display: flex,
|
|
222
|
-
flex-wrap: wrap,
|
|
223
|
-
justify-content: space-between,
|
|
224
|
-
margin-bottom: 24px,
|
|
225
|
-
margin-left: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
226
|
-
margin-right: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
227
|
-
),
|
|
228
|
-
collapse: (
|
|
226
|
+
menubar-collapse: (
|
|
229
227
|
display: block,
|
|
230
228
|
),
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
z-index: $cadmin-zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
241
|
-
),
|
|
242
|
-
collapse-nav-mobile: (
|
|
243
|
-
margin-bottom: 8px,
|
|
244
|
-
margin-top: 8px,
|
|
245
|
-
),
|
|
246
|
-
nav-nested-mobile: (
|
|
247
|
-
margin-bottom: 8px,
|
|
248
|
-
margin-top: 8px,
|
|
249
|
-
),
|
|
250
|
-
nav-nested-margins-item-mobile: (
|
|
251
|
-
margin-left: 0,
|
|
252
|
-
),
|
|
253
|
-
toggler-mobile: (
|
|
254
|
-
align-items: center,
|
|
255
|
-
border-color: transparent,
|
|
256
|
-
border-style: solid,
|
|
257
|
-
border-width: 1px,
|
|
258
|
-
display: flex,
|
|
259
|
-
height: 32px,
|
|
260
|
-
padding-left: 8px,
|
|
261
|
-
padding-right: 8px,
|
|
262
|
-
c-inner: (
|
|
229
|
+
media-breakpoint-down: (
|
|
230
|
+
md: (
|
|
231
|
+
align-items: center,
|
|
232
|
+
display: flex,
|
|
233
|
+
flex-wrap: wrap,
|
|
234
|
+
justify-content: space-between,
|
|
235
|
+
margin-bottom: 24px,
|
|
236
|
+
margin-left: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
237
|
+
margin-right: math-sign($cadmin-grid-gutter-width * 0.5),
|
|
263
238
|
max-width: none,
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
239
|
+
menubar-collapse: (
|
|
240
|
+
border-color: transparent,
|
|
241
|
+
border-style: solid,
|
|
242
|
+
border-width: 1px,
|
|
243
|
+
display: none,
|
|
244
|
+
left: -1px,
|
|
245
|
+
position: absolute,
|
|
246
|
+
right: -1px,
|
|
247
|
+
top: 100%,
|
|
248
|
+
z-index:
|
|
249
|
+
$cadmin-zindex-menubar-vertical-expand-md-collapse-mobile,
|
|
250
|
+
),
|
|
251
|
+
nav-nested: (
|
|
252
|
+
margin-bottom: 8px,
|
|
253
|
+
margin-top: 8px,
|
|
254
|
+
),
|
|
255
|
+
nav-nested-margins: (
|
|
256
|
+
margin-bottom: 8px,
|
|
257
|
+
margin-top: 8px,
|
|
258
|
+
),
|
|
259
|
+
nav-nested-margins-item: (
|
|
260
|
+
margin-left: 0,
|
|
261
|
+
),
|
|
262
|
+
menubar-toggler: (
|
|
263
|
+
align-items: center,
|
|
264
|
+
border-color: transparent,
|
|
265
|
+
border-style: solid,
|
|
266
|
+
border-width: 1px,
|
|
267
|
+
display: flex,
|
|
268
|
+
height: 32px,
|
|
269
|
+
padding-left: 8px,
|
|
270
|
+
padding-right: 8px,
|
|
271
|
+
c-inner: (
|
|
272
|
+
max-width: none,
|
|
273
|
+
),
|
|
274
|
+
lexicon-icon: (
|
|
275
|
+
margin-top: 0,
|
|
276
|
+
),
|
|
277
|
+
),
|
|
267
278
|
),
|
|
268
279
|
),
|
|
269
280
|
),
|
|
@@ -273,11 +284,7 @@ $cadmin-menubar-vertical-expand-lg: map-deep-merge(
|
|
|
273
284
|
$cadmin-menubar-vertical-transparent-lg: () !default;
|
|
274
285
|
$cadmin-menubar-vertical-transparent-lg: map-deep-merge(
|
|
275
286
|
(
|
|
276
|
-
|
|
277
|
-
mobile: (
|
|
278
|
-
background-color: $cadmin-white,
|
|
279
|
-
),
|
|
280
|
-
link: (
|
|
287
|
+
nav-link: (
|
|
281
288
|
border-radius: 6px,
|
|
282
289
|
transition: #{color 0.15s ease-in-out,
|
|
283
290
|
background-color 0.15s ease-in-out,
|
|
@@ -315,50 +322,58 @@ $cadmin-menubar-vertical-transparent-lg: map-deep-merge(
|
|
|
315
322
|
font-weight: $cadmin-font-weight-semi-bold,
|
|
316
323
|
),
|
|
317
324
|
),
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
325
|
+
media-breakpoint-down: (
|
|
326
|
+
md: (
|
|
327
|
+
background-color: $cadmin-white,
|
|
328
|
+
nav-link: (
|
|
329
|
+
border-radius: clay-enable-rounded(0),
|
|
330
|
+
color: $cadmin-gray-900,
|
|
331
|
+
hover: (
|
|
332
|
+
background-color: rgba($cadmin-primary, 0.04),
|
|
333
|
+
color: $cadmin-gray-900,
|
|
334
|
+
),
|
|
335
|
+
focus: (
|
|
336
|
+
background-color: rgba($cadmin-primary, 0.04),
|
|
337
|
+
),
|
|
338
|
+
active-class: (
|
|
339
|
+
background-color: rgba($cadmin-primary, 0.06),
|
|
340
|
+
color: $cadmin-gray-900,
|
|
341
|
+
font-weight: $cadmin-font-weight-semi-bold,
|
|
342
|
+
),
|
|
343
|
+
disabled: (
|
|
344
|
+
background-color: transparent,
|
|
345
|
+
color: $cadmin-gray-600,
|
|
346
|
+
),
|
|
347
|
+
show: (
|
|
348
|
+
background-color: c-unset,
|
|
349
|
+
color: c-unset,
|
|
350
|
+
font-weight: c-unset,
|
|
351
|
+
),
|
|
352
|
+
),
|
|
353
|
+
menubar-collapse: (
|
|
354
|
+
background-color: $cadmin-white,
|
|
355
|
+
border-color: $cadmin-gray-300,
|
|
356
|
+
border-radius: clay-enable-rounded($cadmin-border-radius),
|
|
357
|
+
box-shadow:
|
|
358
|
+
clay-enable-shadows(0 1px 5px -1px rgba(0, 0, 0, 0.3)),
|
|
359
|
+
),
|
|
360
|
+
menubar-toggler: (
|
|
361
|
+
color: $cadmin-gray-900,
|
|
362
|
+
font-size: 14px,
|
|
363
|
+
font-weight: $cadmin-font-weight-semi-bold,
|
|
364
|
+
text-decoration: none,
|
|
365
|
+
transition: box-shadow 0.15s ease-in-out,
|
|
366
|
+
focus: (
|
|
367
|
+
box-shadow:
|
|
368
|
+
clay-enable-shadows(
|
|
369
|
+
$cadmin-component-focus-box-shadow
|
|
370
|
+
),
|
|
371
|
+
outline: 0,
|
|
372
|
+
),
|
|
373
|
+
disabled: (
|
|
374
|
+
box-shadow: clay-enable-shadows(none),
|
|
375
|
+
),
|
|
376
|
+
),
|
|
362
377
|
),
|
|
363
378
|
),
|
|
364
379
|
),
|
|
@@ -341,7 +341,23 @@ $cadmin-navigation-bar-light: map-deep-merge(
|
|
|
341
341
|
),
|
|
342
342
|
),
|
|
343
343
|
),
|
|
344
|
-
media-breakpoint-up: (
|
|
344
|
+
media-breakpoint-up: (
|
|
345
|
+
md: (
|
|
346
|
+
navbar-expand-md: (
|
|
347
|
+
navbar-underline: (
|
|
348
|
+
navbar-nav: (
|
|
349
|
+
nav-link: (
|
|
350
|
+
active-class: (
|
|
351
|
+
after: (
|
|
352
|
+
background-color: $cadmin-primary-l0,
|
|
353
|
+
),
|
|
354
|
+
),
|
|
355
|
+
),
|
|
356
|
+
),
|
|
357
|
+
),
|
|
358
|
+
),
|
|
359
|
+
),
|
|
360
|
+
),
|
|
345
361
|
),
|
|
346
362
|
$cadmin-navigation-bar-light
|
|
347
363
|
);
|
|
@@ -407,7 +407,7 @@ $cadmin-nav-underline-link-highlight-left: 0 !default;
|
|
|
407
407
|
$cadmin-nav-underline-link-highlight-right: 0 !default;
|
|
408
408
|
$cadmin-nav-underline-link-highlight-top: null !default;
|
|
409
409
|
|
|
410
|
-
$cadmin-nav-underline-link-active-highlight: $cadmin-primary-
|
|
410
|
+
$cadmin-nav-underline-link-active-highlight: $cadmin-primary-l0 !default;
|
|
411
411
|
$cadmin-nav-underline-link-active-content: '' !default;
|
|
412
412
|
$cadmin-nav-underline-link-active-highlight-height: 2px !default; // 2px
|
|
413
413
|
|
|
@@ -7,16 +7,16 @@ $cadmin-pagination-line-height: 1 !default;
|
|
|
7
7
|
$cadmin-pagination-padding-x: 10px !default; // 10px
|
|
8
8
|
$cadmin-pagination-padding-y: 0 !default;
|
|
9
9
|
|
|
10
|
-
$cadmin-pagination-hover-bg: rgba(
|
|
10
|
+
$cadmin-pagination-hover-bg: rgba(39, 40, 41, 0.04) !default;
|
|
11
11
|
$cadmin-pagination-hover-border-color: transparent !default;
|
|
12
12
|
$cadmin-pagination-hover-color: $cadmin-gray-900 !default;
|
|
13
13
|
|
|
14
14
|
$cadmin-pagination-focus-box-shadow: $cadmin-component-focus-box-shadow !default;
|
|
15
15
|
$cadmin-pagination-focus-outline: 0 !default;
|
|
16
16
|
|
|
17
|
-
$cadmin-pagination-active-bg:
|
|
17
|
+
$cadmin-pagination-active-bg: $cadmin-secondary !default;
|
|
18
18
|
$cadmin-pagination-active-border-color: transparent !default;
|
|
19
|
-
$cadmin-pagination-active-color: $cadmin-
|
|
19
|
+
$cadmin-pagination-active-color: $cadmin-white !default;
|
|
20
20
|
|
|
21
21
|
$cadmin-pagination-disabled-bg: transparent !default;
|
|
22
22
|
$cadmin-pagination-disabled-border-color: $cadmin-pagination-disabled-bg !default;
|
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
|
|
2
|
+
@if (variable-exists(c-root)) {
|
|
3
|
+
@include clay-css($c-root);
|
|
4
|
+
} @else {
|
|
5
|
+
// Custom variable values only support SassScript inside `#{}`
|
|
3
6
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
@each $color, $value in $colors {
|
|
8
|
+
--#{$color}: #{$value};
|
|
9
|
+
}
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
@each $color, $value in $theme-colors {
|
|
12
|
+
--#{$color}: #{$value};
|
|
13
|
+
}
|
|
11
14
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
+
@each $bp, $value in $grid-breakpoints {
|
|
16
|
+
--breakpoint-#{$bp}: #{$value};
|
|
17
|
+
}
|
|
15
18
|
|
|
16
|
-
|
|
19
|
+
// Use `inspect` for lists so that quoted items keep the quotes. See https://github.com/sass/sass/issues/2383#issuecomment-336349172
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
--font-family-sans-serif: #{inspect($font-family-sans-serif)};
|
|
22
|
+
--font-family-monospace: #{inspect($font-family-monospace)};
|
|
23
|
+
}
|
|
20
24
|
}
|
|
@@ -26,6 +26,27 @@
|
|
|
26
26
|
@return $toggle-switch-width + $label-spacer-x;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
/// A function that combines two maps. It adds new key value pairs to the end of the map.
|
|
30
|
+
|
|
31
|
+
@function clay-map-merge($map1, $map2) {
|
|
32
|
+
@if (length($map2) < 1) {
|
|
33
|
+
@return $map1;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@each $key, $value in $map1 {
|
|
37
|
+
@if not(map-has-key($map2, $key)) {
|
|
38
|
+
$map2: map-merge(
|
|
39
|
+
$map2,
|
|
40
|
+
(
|
|
41
|
+
$key: $value,
|
|
42
|
+
)
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@return $map2;
|
|
48
|
+
}
|
|
49
|
+
|
|
29
50
|
/// A function that returns a new map with all the keys and values including nested keys and values from both `$map1` and `$map2`. If both `$map1` and `$map2` have the same key, `$map2`’s value takes precedence. The key value pair `merge: false,` will skip merging maps. This allows component properties to be reset to a blank state.
|
|
30
51
|
/// @param {Map, Null} $map1[()]
|
|
31
52
|
/// @param {Map, Null} $map2[()]
|
|
@@ -34,6 +34,14 @@
|
|
|
34
34
|
|
|
35
35
|
'analytics': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="analytics-bar1 lexicon-icon-outline" d="M96 415.8H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="analytics-bar2 lexicon-icon-outline" d="M288 319.8h-64c-17.7 0-32 14.3-32 32v128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-128c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="analytics-bar3 lexicon-icon-outline" d="M480 223.8h-64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-224c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="analytics-uptrend-arrow lexicon-icon-outline" d="M415 110.2v23.6c3.1 44.2 64.6 41.3 64.8 0V32.6c0-17.9-13.2-32.4-32.4-32.4H346.1c-42.8 2.3-43.2 61.9 0 64.8h23.6l-95.3 94.9-114.2-.2h-.1c-10.1 0-19.5 4.7-25.6 12.8L38.6 300.3c-24.2 35.4 25.4 70.9 51.2 38.4l86.5-115.1 111.4.2h.1c8.5 0 16.6-3.4 22.6-9.3L415 110.2z" fill="#{$color}"/></svg>',
|
|
36
36
|
|
|
37
|
+
'angle-double-left-small': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-angle-double-left-small-line-1" d="m225.627 407.104-131.524-129.6c-20.142-18.642-17.322-28.161-.303-43.829l131.827-129.898c24.674-23.203 62.54 10.71 37.967 33.814L143.752 255.986l119.137 117.107c26.386 24.889-10.272 59.396-37.262 34.011Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-angle-double-left-small-line-2" d="m385.627 407.104-131.524-129.6c-20.142-18.642-17.322-28.161-.303-43.829l131.827-129.898c24.674-23.203 62.54 10.71 37.967 33.814L303.752 255.986l119.137 117.107c26.386 24.889-10.272 59.396-37.262 34.011Z" fill="#{$color}"/></svg>',
|
|
38
|
+
|
|
39
|
+
'angle-double-left': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-angle-double-left-line-1" d="M419.471 472.48 215.402 272.625c-10.319-9.889-9.409-24.03 0-33.227L419.673 39.445c23.776-22.745 60.604 11.767 36.423 34.71L270.947 256.012l185.048 181.659c24.181 23.337-12.748 57.652-36.524 34.809Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-angle-double-left-line-2" d="M259.471 472.48 55.402 272.625c-10.32-9.889-9.409-24.03 0-33.227L259.673 39.445c23.776-22.745 60.604 11.767 36.423 34.71L110.947 256.012l185.048 181.659c24.181 23.337-12.748 57.652-36.524 34.809Z" fill="#{$color}"/></svg>',
|
|
40
|
+
|
|
41
|
+
'angle-double-right-small': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-angle-double-right-small-line-1" d="m286.373 104.896 131.524 129.6c20.142 18.642 17.322 28.161.303 43.829L286.373 408.223c-24.674 23.203-62.54-10.71-37.967-33.814l119.842-118.395L249.11 138.907c-26.385-24.889 10.273-59.396 37.263-34.011Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-angle-double-right-small-line-2" d="m126.373 104.896 131.524 129.6c20.142 18.642 17.322 28.161.303 43.829L126.373 408.223c-24.674 23.203-62.54-10.71-37.968-33.814l119.843-118.395L89.111 138.907c-26.386-24.889 10.272-59.396 37.262-34.011Z" fill="#{$color}"/></svg>',
|
|
42
|
+
|
|
43
|
+
'angle-double-right': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-angle-double-right-line-1" d="m92.529 39.52 204.069 199.855c10.319 9.889 9.409 24.03 0 33.227L92.326 472.556c-23.775 22.744-60.603-11.768-36.422-34.711l185.149-181.856L56.005 74.329C31.825 50.992 68.753 16.677 92.529 39.52Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-angle-double-right-line-2" d="m252.529 39.52 204.069 199.855c10.319 9.889 9.409 24.03 0 33.227L252.327 472.556c-23.776 22.744-60.604-11.768-36.423-34.711l185.149-181.856-185.048-181.66c-24.181-23.337 12.748-57.652 36.524-34.809Z" fill="#{$color}"/></svg>',
|
|
44
|
+
|
|
37
45
|
'angle-down-small': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="m268 339.9 142.6-142.2c16.4-16.4-8.5-41.7-25.1-25.1L256 301.7 126.5 172.5c-16.8-16.7-41.6 8.7-25.1 25.1L244 339.9c7.2 7.1 17.4 6.5 24 0z" fill="#{$color}"/></svg>',
|
|
38
46
|
|
|
39
47
|
'angle-down': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M272.8 375.2 475 173.3c23-23.6-11.9-59.9-35.1-36L256 320.3 72.2 137.4c-23.5-24-58.2 12.5-35.2 36.1l202.1 201.7c10.1 10.2 24.4 9.3 33.7 0z" fill="#{$color}"/></svg>',
|
|
@@ -312,6 +320,8 @@
|
|
|
312
320
|
|
|
313
321
|
'export': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline export-base" d="M448 256.3v191.8H64V256.3c0-41.6-64-41.6-64 0v191.8C0 483.2 28.8 512 64 512h384c35.2 0 64-28.8 64-63.9V256.3c0-44.8-64-41.6-64 0z" fill="#{$color}"/><path class="lexicon-icon-outline export-dash" d="M320 384.1H192c-41.6 0-41.6-63.9 0-63.9h128c41.6 0 44.8 63.9 0 63.9z" fill="#{$color}"/><path class="lexicon-icon-outline export-arrow-up" d="m233.6 10.1-64 63.9c-28.8 28.8 12.8 67.1 38.4 44.8l16-16v121.5c0 41.6 64 41.6 64 0V102.8l16 16c28.8 22.4 64-19.2 38.4-44.8l-64-63.9c-6.4-6.4-25.6-19.1-44.8 0z" fill="#{$color}"/></svg>',
|
|
314
322
|
|
|
323
|
+
'field-area': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-field-area-line" d="M416 0v32h-32v448h32v32H288v-32h32V32h-32V0h128ZM128 160h96c41.625 0 41.625 64 0 64h-96c-41.594-3.199-41.594-64 0-64Z" fill="#{$color}"/><path class="lexicon-icon-outline lx-field-area-border" d="M288 384H64V128h224V64H32C12.812 64 0 76.8 0 96v320c0 19.199 12.813 32 32 32h256v-64ZM416 64h64c19.188 0 32 12.8 32 32v320c0 19.199-12.812 32-32 32h-64v-64h32V128h-32V64Z" fill="#{$color}"/></svg>',
|
|
324
|
+
|
|
315
325
|
'fieldset': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline lx-fieldset-bracket-start" d="M128 64c0-17.7-14.3-32-32-32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96h32c17.7 0 32-14.3 32-32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-fieldset-bracket-end" d="M512 416c0 35.3-28.7 64-64 64h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V96h-32c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c35.3 0 64 28.7 64 64v320z" fill="#{$color}"/><path class="lexicon-icon-outline lx-fieldset-line-1-dot" d="M128 224c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-fieldset-line-1-line" d="M224 160h160c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-fieldset-line-2-dot" d="M384 288H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h160c17.7 0 32-14.3 32-32s-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline lx-fieldset-line-2-line" d="M128 352c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32z" fill="#{$color}"/></svg>',
|
|
316
326
|
|
|
317
327
|
'file-script': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline file-script-border" d="M320 64v64c0 17.7 14.3 32 32 32h64v288H96V64h224zm5.5-64H96C60.7 0 32 28.7 32 64v384c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V154.5c0-33.5-18-44.5-63.5-90S360 0 325.5 0z" fill="#{$color}"/><path class="lexicon-icon-outline file-script-forward-slash" d="m212.2 409.2 69.1-187.5c7.7-20.7 37.7-7.7 30.1 10.9l-69.1 187.5C234 440 205 428 212.2 409.2z" fill="#{$color}"/><path class="lexicon-icon-outline file-script-angle-bracket-open" d="m160 320 35.9-35.9-22.6-22.6-35.9 35.9c-12.5 12.5-12.5 32.8 0 45.3l35.9 35.9 22.6-22.6-35.9-36z" fill="#{$color}"/><path class="lexicon-icon-outline file-script-angle-bracket-close" d="M355.9 320 320 284.1l22.6-22.6 35.9 35.9c12.5 12.5 12.5 32.8 0 45.3l-35.9 35.9-22.6-22.7 35.9-35.9z" fill="#{$color}"/></svg>',
|
|
@@ -388,6 +398,8 @@
|
|
|
388
398
|
|
|
389
399
|
'kk-kz': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 64h512v384H0V64z" fill="#00AFCA"/><circle cx="282.8" cy="209.3" r="55.2" fill="#FEC50C"/><path d="M282.8 150.6c3.9 0 6.2-2.5 6.2-6.3 0-3.3-4-17.2-4.4-18.8l-1.8-6.3-1.8 6.3c-.5 1.6-4.4 15.4-4.4 18.8-.1 3.8 2.4 6.3 6.2 6.3zm64.9 52.4c-3.8 0-6.3 2.4-6.3 6.2 0 3.8 2.5 6.2 6.3 6.2 3.3 0 17.2-4 18.8-4.4l6.3-1.8-6.3-1.8c-1.6-.4-15.5-4.4-18.8-4.4zm-64.9 64.9c-3.9 0-6.2 2.5-6.2 6.3 0 3.3 4 17.2 4.4 18.8l1.8 6.3 1.8-6.3c.5-1.6 4.4-15.4 4.4-18.8 0-3.8-2.4-6.3-6.2-6.3zm-65-52.4c3.8 0 6.3-2.4 6.3-6.2 0-3.8-2.5-6.2-6.3-6.2-3.3 0-17.2 4-18.8 4.4l-6.3 1.8 6.3 1.8c1.6.4 15.5 4.4 18.8 4.4zm83.7-64.1c.4 1.1 1.3 2.7 3.7 3.6 1 .4 1.9.6 2.7.6 2.4 0 4.3-1.4 5.4-4 1.3-3.1 2.9-17.4 3.1-19l.7-6.5-4.1 5.1c-1 1.3-10 12.6-11.3 15.6-.5 1.7-.6 3.2-.2 4.6zm43.6 76.9c-3.5-1.5-6.7-.1-8.2 3.4-1.4 3.6-.1 6.7 3.4 8.1 3.1 1.3 17.4 2.9 19 3.1l6.5.7-5.1-4.1c-1.2-.9-12.5-9.9-15.6-11.2zm-84.8 35.1c-3.6-1.4-6.7-.1-8.2 3.4-1.3 3.1-2.9 17.4-3.1 19l-.7 6.5 4.1-5.1c1-1.3 10-12.6 11.3-15.7 1.4-3.4.1-6.6-3.4-8.1zm-39.9-73.2c1 .4 1.9.6 2.8.6.6 0 1.2-.1 1.8-.3 1.1-.4 2.7-1.3 3.6-3.7 1.4-3.6.1-6.7-3.4-8.1-3.1-1.3-17.4-2.9-19-3.1l-6.5-.7 5.1 4.1c1.2.9 12.5 9.9 15.6 11.2zM322.2 163c-.1 1.2.2 3 2 4.8 1.4 1.3 2.9 2 4.4 2 1.5 0 3.1-.7 4.4-2 2.4-2.4 9.4-15 10.1-16.4l3.2-5.7-5.7 3.2c-1.4.8-14 7.8-16.4 10.1-1.2 1.2-1.9 2.6-2 4zm10.9 87.7c-2.7-2.7-6.2-2.7-8.9 0s-2.7 6.1 0 8.8c2.4 2.4 15 9.4 16.4 10.1l5.7 3.2-3.2-5.7c-.7-1.4-7.7-14-10-16.4zm-89.8 4.8c.1-1.2-.2-3-2-4.8-2.7-2.7-6.1-2.7-8.8 0-2.4 2.4-9.4 15-10.1 16.4l-3.2 5.7 5.7-3.2c1.4-.8 14-7.8 16.4-10.1 1.2-1.1 1.9-2.6 2-4zm-10.9-87.7c1.2 1.2 2.6 1.9 4.1 2h.4c1.2 0 2.8-.4 4.4-2 2.7-2.7 2.7-6.1 0-8.8-2.4-2.4-15-9.4-16.4-10.1l-5.7-3.2 3.2 5.7c.7 1.4 7.7 14 10 16.4zm104.5 13.8c-.5 1.1-1 2.8 0 5.2 1.1 2.6 3.1 3.9 5.4 3.9.9 0 1.8-.2 2.8-.6 3.1-1.3 14.4-10.3 15.7-11.3l5.1-4.1-6.5.7c-1.6.2-16 1.8-19 3.1-1.6.8-2.8 1.8-3.5 3.1zm-23.5 85.2c-.7-1.6-1.7-2.8-3-3.4-1.1-.5-2.8-1-5.2 0-3.5 1.5-4.8 4.6-3.3 8.2 1.3 3.1 10.3 14.4 11.3 15.7l4.1 5.1-.7-6.5c-.3-1.6-1.9-16-3.2-19.1zm-84.8-35.1c-1.5-3.5-4.7-4.8-8.2-3.4-3.1 1.3-14.4 10.3-15.7 11.3l-5.1 4.1 6.5-.7c1.6-.2 16-1.8 19-3.1 3.6-1.5 4.9-4.7 3.5-8.2zm23.6-80c1.1 2.6 3.1 4 5.4 4 .9 0 1.8-.2 2.7-.6 3.5-1.5 4.8-4.6 3.3-8.2-1.3-3.1-10.3-14.4-11.3-15.7l-4.1-5.1.7 6.5c.3 1.6 2 16 3.3 19.1zm42 0c.5.1 1 .1 1.5.1 3 0 5.2-1.9 5.8-5.1.7-3.3-.5-17.6-.7-19.3l-.6-6.5-3 5.8c-.8 1.5-7.4 14.3-8 17.5-.3 1.7-.1 3.3.6 4.5.7 1.2 1.9 2.5 4.4 3z" fill="#FEC50C"/><path d="M347.7 215.8c-1.7-.3-3.3-.1-4.5.6-1 .6-2.4 1.8-2.9 4.3-.7 3.8 1.2 6.6 4.9 7.3.7.1 1.9.2 3.3.2 5.4 0 14.6-.8 15.9-.9l6.5-.6-5.8-3c-1.3-.6-14.2-7.3-17.4-7.9zm-76.4 51c-3.8-.7-6.6 1.2-7.3 4.9-.7 3.3.5 17.6.7 19.3l.6 6.5 3-5.8c.8-1.5 7.4-14.3 8-17.5.3-1.7.1-3.3-.6-4.5-.6-1.1-1.9-2.4-4.4-2.9zm-53.4-64.1c.5.1 1.1.2 1.6.2 1.1 0 2.1-.2 3-.7 1-.6 2.4-1.8 2.9-4.3.7-3.8-1.2-6.6-4.9-7.3-3.3-.7-17.6.5-19.3.7l-6.5.6 5.8 3c1.3.6 14.1 7.2 17.4 7.8zm95.7-50.9c-1 1.4-1.4 3-1.2 4.4.1 1.2.8 2.9 2.9 4.3 1.2.8 2.5 1.2 3.7 1.2 1.9 0 3.7-1 5-3 1.9-2.8 6.3-16.5 6.7-18.1l2-6.2-5 4.2c-1.2 1.1-12.2 10.4-14.1 13.2zm26.6 88.3c-1.4-1-3-1.4-4.4-1.2-1.2.1-2.9.8-4.3 2.9-2.1 3.2-1.4 6.5 1.8 8.7 2.8 1.9 16.5 6.3 18.1 6.7l6.2 2-4.2-5c-1.1-1.2-10.4-12.2-13.2-14.1zm-88.3 26.6c1-1.4 1.4-3 1.2-4.4-.1-1.2-.8-2.9-2.9-4.3-3.2-2.1-6.5-1.4-8.7 1.8-1.9 2.8-6.3 16.5-6.7 18.1l-2 6.2 5-4.2c1.2-1.1 12.2-10.4 14.1-13.2zm-26.6-88.3c1.2.8 2.5 1.2 3.7 1.2 1.9 0 3.7-1 5-2.9 2.1-3.2 1.4-6.5-1.8-8.7-2.8-1.9-16.5-6.3-18.1-6.7l-6.2-2 4.2 5c1.1 1.2 10.4 12.2 13.2 14.1zm105.2-6.8c-.3 1.1-.4 2.9 1 5.1 1.3 1.9 3.1 2.9 5 2.9 1.2 0 2.5-.4 3.7-1.2 2.8-1.9 12.1-12.9 13.1-14.1l4.2-5-6.2 2c-1.6.5-15.3 4.9-18.1 6.7-1.4 1-2.3 2.2-2.7 3.6zm-6.5 88.2c-1-1.4-2.2-2.4-3.6-2.8-1.1-.3-2.9-.4-5.1 1-3.2 2.2-3.8 5.5-1.7 8.7 1.9 2.8 12.9 12.1 14.1 13.1l5 4.2-2-6.2c-.4-1.5-4.8-15.3-6.7-18zm-89-12.9c.3-1.1.4-2.9-1-5.1-2.2-3.2-5.5-3.8-8.7-1.7-2.8 1.9-12.1 12.9-13.1 14.1l-4.2 5 6.2-2c1.6-.5 15.3-4.9 18.1-6.7 1.4-1 2.4-2.2 2.7-3.6zm6.5-88.2c1 1.4 2.2 2.4 3.6 2.8.4.1.9.2 1.4.2 1 0 2.3-.3 3.7-1.2 3.2-2.2 3.8-5.5 1.7-8.7-1.9-2.8-12.9-12.1-14.1-13.1l-5-4.2 2 6.2c.5 1.5 4.8 15.3 6.7 18zm103.7 31.8c-1.7.3-3.1 1.1-4 2.3-.7.9-1.5 2.6-1 5.1.7 3.2 2.8 5 5.8 5 .5 0 1-.1 1.6-.2 3.3-.7 16.1-7.3 17.5-8l5.8-3-6.5-.6c-1.5-.1-15.9-1.3-19.2-.6zm-45.9 77.3c-.9-.7-2.6-1.5-5.1-1-3.8.8-5.6 3.6-4.9 7.4.7 3.3 7.3 16.1 8 17.5l3 5.8.6-6.5c.1-1.6 1.3-16 .7-19.3-.4-1.7-1.2-3.1-2.3-3.9zM217 228.2c1.5 0 2.7-.1 3.3-.2 3.7-.7 5.7-3.6 4.9-7.3-.8-3.8-3.6-5.6-7.4-4.9-3.3.7-16.1 7.3-17.5 8l-5.8 3 6.5.6c1.3.1 10.5.8 16 .8zm52.8-76.3c.5 0 1-.1 1.5-.2 3.8-.8 5.6-3.6 4.9-7.4-.7-3.3-7.3-16.1-8-17.5l-3-5.8-.6 6.5c-.1 1.6-1.3 16-.7 19.3.7 3.2 2.9 5.1 5.9 5.1z" fill="#FEC50C"/><path d="M406.9 268.3c1.4-2.3 4-6.8 1.3-11.6l-.5-.9-.8-.6c-2.2-1.8-5-2.5-7.8-2-.1 0-.3.1-.4.1.2-1.4.3-2.9.3-4.4v-.1c0-3.9-1.1-6.9-3.3-8.7-1.8-1.5-4.1-2.2-6.6-1.9h-.2c-5.4 1-6.3 6.1-6.7 8 0 .1 0 .2-.1.3-1.5-.7-3.2-.8-4.9-.5-3.8.8-6.4 4.1-6.3 7.8-4.9 23.4-20.8 44.9-42.6 57.5-9.5 5.4-20.7 9.1-32.1 10.8l-.4.1c-1 .2-2.1.3-3.4.4-2.1.1-4.6.3-7.1 1.2l-.8.3-.7.5c-.9.7-1.8 1.5-2.6 2.2l.2-3.6c-.6 0-1.2-.1-1.7-.1-.9 0-1.9-.1-2.8-.2h-.2c-16.4-1-32.3-6.4-45.9-15.8-16.8-11.6-29-28.4-34.6-47.3l-.1-.3c-.4-1-.6-2.3-.9-3.7-.4-1.9-.8-3.9-1.6-5.9l-.5-1.3-1.1-.9c-2.3-1.9-5.5-2.4-8.2-1.3-.1 0-.1 0-.2.1v-.2l-.2-.6-.1-.3c0-.1-.1-.3-.1-.4-1.5-6.6-6-7.1-8-6.9-3.1 0-8 1.6-8.4 10.5v.4c0 1.4.1 2.9.3 4.3-2-.5-4-.3-6 .6-1.9.8-3.4 2.2-4.2 4.1-1.5 3.6.3 7.2 1.1 8.7.3.6.6 1.1.9 1.6-3.4 1.3-5.4 4.5-5 8.1l.2 1.2.7 1c2.9 4.6 6.3 8.7 9.9 12.4-.5.5-.9 1.1-1.1 1.8-1.5 3.5.7 6.8 1.9 8.6l.4.6.3.4c2.4 2.5 5 4.6 7.8 6.3-.9 1.8-.8 3.9.2 5.8l.3.6.4.5c1.6 1.8 3.5 3 5.4 3.8l-.5 3.1 2.9 2c.7.5 1.4.8 2.1 1.2l-1 1.7 4.3 2.7-4.1 2.1 12 4.4c3.9 1.4 8.1 3.1 13.5 5.5 10.6 4.7 20.3 7.3 29.7 7.8l1.4-11.2c-3.1-.6-6.2-1.5-9-2.5-5.3-1.8-10-3.4-14.4-5.3l2.9-2.4 3.2-1.4-1.3-.3 4.3-3.6-14.7-.5c-.6 0-1.2-.1-1.8-.2l-.3-1.5c-.6-2.9-2.6-4.3-4.5-5l.7-.6-.8-.3c-.2-1.3-.7-2.2-1.4-3l2.2-.9-4-1.8c-.1-.5-.3-1-.6-1.6l3.7-.6-11-8-.1-.1-.3-3.9 6.2 5.2v.1c3.3 4.4 6.8 8.9 11.4 12.7 4.4 3.7 9.5 5.5 14.4 6.9 2.3 1.5 4.5 3.6 6.8 5.9 1.6 1.6 3.3 3.3 5.2 4.8 6 5.5 14.1 5.9 19.5 6.2.6 0 1.3.1 2 .1 4 .2 7.8.3 10.9 1.4-1.7 1.4-3.5 2.5-5.5 3.2l-.4.1-.4.2c-1 .5-2.3.9-3.7 1.4-3.5 1.2-7.9 2.6-11 6.6l-.3.4-.2.4c-.2.4-.4.8-.5 1.3-1.1.8-2.2 1.8-3.1 3.2-1.1 1.7-1.4 3.3-1.5 4.4v.4c-.1 1.8.2 3.7 1.1 5.5l2.1 3.6 3.6-.3c.5 0 1.4-.2 2.2-.7 1.2.2 2.6 0 3.8-.8 1.7-.6 3.9-.8 6.2-1h.3c-1.1 1.5-1.9 3.3-2.4 5.1l-1.4 5.5 5.4 1.4c3.4.9 6.4.2 9-1 .3.3.6.7 1 1l1.8 1.4 2.3-.2c1.5-.1 2.8-.5 4-1.1l.8.9 2.2.2c2.5.2 4.6-.5 6.2-1.5l.8.4c2.5 1.1 5.3 1 7.8-.1.6-.3 1.2-.6 1.8-1 .9.5 2 .7 3.1.7 2.2 0 4.2-.8 5.8-2.1l.2.1 1.5.2c3.6.6 6.2-.9 8.1-2.6 2.8 1 5.9.3 8.1-2 .6-.6 1.1-1.2 1.5-1.8 2.2.9 5.1 1.4 8.3-.5l.4-.3c1.3-1 2.2-2.2 2.8-3.4 3.6.7 7.5-.3 10.4-2.8 3.1-2.6 4.6-6.5 4-10.5l-.7-4.6-4.6-.2c3.6-1.2 7-2.8 10.1-4.8l.7-.5.2-.2.8-.4c2-1 5.6-2.8 5.5-6.9 1.7-.2 3.5-.5 5.2-1.1l3.5-1.2.3-3.7v-.2c1.7-.6 3.4-1.5 5.1-2.7l7.4-5.7-1.8-.8c.2-.1.4-.3.6-.4l.5-.3.4-.4c2.9-3.3 1.8-6.4 1.4-7.4 3.7-2.3 7.6-5.1 10.4-9.4 1.5-2.2 3.5-7.2.5-10.7 3.9-4.1 7.2-8.2 9.9-12.5l.7-1.1.1-1.3c0-3.1-2-6.3-5.3-7.6zm-78.1 78c-2.6-.2-5.3-.2-7.9-.1h-.3c-.3 0-.5 0-.8.1-1.7.1-4.6.3-6.7 2.7-.4.5-.8 1.1-1.1 1.9-1.3.5-3.1 1.6-3.9 3.9-.2.5-.3 1-.3 1.6-.2.1-.3.2-.5.3-2.3.8-4.6 1.2-7.1 1.4l-4.2-2.4c-1.7-1-3.4-1.2-4.5-1.3l-8.4-.1c-.4 0-.7-.1-1.1-.1-.7-.1-1.4-.1-2.1-.2l1.3-1.5 10.4-7.8-7.1.4c2.2-2 4.1-3.7 6.2-4.1l.5-.1c4.5-1.4 9.2-1.9 14.2-2.6 4.9-.6 9.9-1.2 15-2.6l1.9-.5 1.2-1.6c4.6-6.2 11.8-9.7 19.5-13.3 2.7-1.3 5.6-2.7 8.3-4.1 4.3-1.6 6-5.3 6.8-7.4.2-.2.3-.5.5-.7l6.1-2.9 3.2-.1-4.7 5.1 1.3.3-1.5 1.2-8.9 7.8 2.4.4c0 .1-.1.2-.1.3l-.4.2c-.5.2-1.1.4-1.6.7l-1.1.5.2.1c-1.2.8-2.2 1.9-2.8 3.5l-7.1-.6 2.5 7.9c-5.6 4.1-11.7 6.5-17.5 7.1l.2 6.7zM70.1 326.5c1.6-6.2 2.2-10.3 2.2-16.7 0-11-3.9-19.3-11-19.9 7.1-.6 11-8.9 11-19.9 0-6.5-.6-10.5-2.2-16.7 0 0-12.6-50.1-17.5-69.4-.6-2.4-.8-5.2-.8-9.2 0-6.2 3.2-11.3 6.5-11.5 3-.1 6.3 5.4 6.3 11.7 0 7.6-2.1 11.1-4.2 11.1-2.6 0-3.7-2.1-3.7-5.6 0-2.5.6-3.5 1.5-3.5 2.3 0 1.6 5.8 1.6 5.8 1.1-.5 2-2.6 1.5-5.4.8-.3 1.6-1.2 2.2-2.5-.6-1.1-1.3-2-2.2-2.3.5-3.3-.2-4.9-1.7-5.6.3 1.3.3 2.5.2 3.6-2.4-1.3-6.1.8-6.1 8.7 0 7.9 2.9 14.5 8.2 12.8-1.3 1.2-1.9 3.5-2.1 6.2 1-.7 2.1-.8 2.1-.8-.6 2.1-1.5 3.9-1.5 8.1 1-.9 1.9-2.5 3.2-1.4-2 7.5.5 17.8 6.7 20.3-2.3-5.1-3.4-10.6-3.4-16.1 0-17.8 2.6-20.8 2.6-33.2 0-5.1-1.4-10.6-4.1-14.4 1.8-.9 2.9-2.6 3.6-4.9-1.3-3.2-2.1-4.2-4.2-4.4 2.4-2.3 4.8-7.4 4.8-15.4 0-12.2-2.6-17.3-2.6-31 0-7.6 3.3-17.4 3.3-17.4-5.8 1.1-8.7 11.4-7 19.6-.9.3-1.8-.1-2.5-1.4-.4 2.3.2 4.9 1.1 7.2-.7.7-1.3.3-2.4-.2.1 2.3.8 4.8 2.6 7.2-5.2-2.6-8.4 4.4-8.4 11.6 0 5.5 2 9.4 4 9.4.6 0 1.6-.5 2.1-1.3.4 1.5.2 3.5-.2 5 1.4-.7 2.4-2.4 1.7-5.8 1.1-.2 2-.9 2.6-2.3-.6-1.5-1.5-2.3-2.6-2.3.8-3.2-.1-5-1.4-6.4 0 0 .8 6.4-1.3 6.4-1 0-1.8-.6-1.8-3.3 0-2.3 1.1-5.6 3.6-5.4 2.5.2 4.5 3.3 4.5 10.8 0 7-3 10.5-6.8 10.7-3.5.2-6.2-3.4-6.2-10.3 0-9.2 7-30.1 7-38.3 0-6.1-2.9-9.6-5.7-9.6-1.8 0-3.4 1.6-4.6 3.3-1.2-1.7-2.8-3.3-4.6-3.3-2.8 0-5.7 3.4-5.7 9.6 0 8.2 7 29.1 7 38.3 0 6.9-2.6 10.5-6.2 10.3-3.9-.2-6.8-3.7-6.8-10.7 0-7.6 2-10.6 4.5-10.8 2.5-.2 3.6 3 3.6 5.4 0 2.7-.9 3.3-1.8 3.3-2.1 0-1.3-6.4-1.3-6.4-1.3 1.4-2.2 3.2-1.4 6.4-1.1-.1-2 .8-2.6 2.3.6 1.4 1.5 2.1 2.6 2.3-.7 3.4.3 5 1.7 5.8-.4-1.5-.6-3.5-.2-5 .5.8 1.5 1.3 2.1 1.3 2 0 4-3.9 4-9.4 0-7.3-3.2-14.2-8.4-11.6 1.8-2.3 2.5-4.8 2.6-7.2-1.2.5-1.7.9-2.4.2.9-2.3 1.6-4.9 1.1-7.2-.7 1.3-1.6 1.7-2.5 1.4 1.6-8.2-1.2-18.5-7-19.6 0 0 3.3 9.7 3.3 17.4 0 13.8-2.6 18.8-2.6 31 0 7.9 2.4 13 4.8 15.4-2.1.3-2.9 1.2-4.2 4.4.7 2.3 1.8 4 3.6 4.9-2.7 3.8-4.1 9.3-4.1 14.4 0 12.4 2.6 15.4 2.6 33.2 0 5.5-1.1 11-3.4 16.1 6.2-2.4 8.7-12.8 6.7-20.3 1.3-1 2.2.6 3.2 1.4 0-4.1-.8-6-1.5-8.1 0 0 1.1.1 2.1.8-.1-2.7-.8-5-2.1-6.2 5.4 1.7 8.2-5 8.2-12.8 0-7.9-3.7-10-6.1-8.7-.1-1.1-.1-2.3.2-3.6-1.5.7-2.2 2.3-1.7 5.6-.9.3-1.6 1.2-2.2 2.3.6 1.3 1.4 2.1 2.2 2.5-.5 2.7.4 4.9 1.5 5.4 0 0-.6-5.8 1.6-5.8.9 0 1.5 1.1 1.5 3.5 0 3.5-1 5.6-3.7 5.6-2.1 0-4.2-3.4-4.2-11.1 0-6.3 3.3-11.8 6.3-11.7 3.3.2 6.5 5.2 6.5 11.5 0 4-.2 6.8-.8 9.2-4.9 19.4-17.5 69.4-17.5 69.4-1.6 6.2-2.2 10.3-2.2 16.7 0 11 3.9 19.3 11 19.9-7.1.6-11 8.9-11 19.9 0 6.5.6 10.5 2.2 16.7 0 0 12.6 50.1 17.5 69.4.6 2.4.8 5.2.8 9.2 0 6.2-3.2 11.3-6.5 11.5-3 .1-6.3-5.4-6.3-11.7 0-7.6 2.1-11.1 4.2-11.1 2.6 0 3.7 2.1 3.7 5.6 0 2.5-.6 3.5-1.5 3.5-2.3 0-1.6-5.8-1.6-5.8-1.1.5-2 2.6-1.5 5.4-.8.3-1.6 1.2-2.2 2.5.6 1.1 1.3 2 2.2 2.3-.5 3.3.2 4.9 1.7 5.6-.3-1.3-.3-2.5-.2-3.6 2.4 1.3 6.1-.8 6.1-8.7 0-7.9-2.9-14.5-8.2-12.8 1.3-1.2 1.9-3.5 2.1-6.2-1 .7-2.1.8-2.1.8.6-2.1 1.5-3.9 1.5-8.1-1 .9-1.9 2.5-3.2 1.4 2-7.5-.5-17.8-6.7-20.3 2.3 5.1 3.4 10.6 3.4 16.1 0 17.8-2.6 20.8-2.6 33.2 0 5.1 1.4 10.6 4.1 14.4-1.8.9-2.9 2.6-3.6 4.9 4.2 2.3 10.2 2.2 13.5-.2 3.7-.8 6.4-6.3 7.1-9.1.8 2.8 3.4 8.3 7.1 9.1 3.3 2.4 9.3 2.5 13.5.2-.7-2.3-1.8-4-3.6-4.9 2.7-3.8 4.1-9.3 4.1-14.4 0-12.4-2.6-15.4-2.6-33.2 0-5.5 1.1-11 3.4-16.1-6.2 2.4-8.7 12.8-6.7 20.3-1.3 1-2.2-.6-3.2-1.4 0 4.1.8 6 1.5 8.1 0 0-1.1-.1-2.1-.8.1 2.7.8 5 2.1 6.2-5.4-1.7-8.2 5-8.2 12.8 0 7.9 3.7 10 6.1 8.7.1 1.1.1 2.3-.2 3.6 1.5-.7 2.2-2.3 1.7-5.6.9-.3 1.6-1.2 2.2-2.3-.6-1.3-1.4-2.1-2.2-2.5.5-2.7-.4-4.9-1.5-5.4 0 0 .6 5.8-1.6 5.8-.9 0-1.5-1.1-1.5-3.5 0-3.5 1-5.6 3.7-5.6 2.1 0 4.2 3.4 4.2 11.1 0 6.3-3.3 11.8-6.3 11.7-3.3-.2-6.5-5.2-6.5-11.5 0-4 .2-6.8.8-9.2 4.5-19.4 17.1-69.4 17.1-69.4zm-21.6-20.3c-1.7-10.3-6.8-15.9-11.4-16.4 4.6-.5 9.7-6.1 11.4-16.4 1.7 10.3 6.8 15.9 11.4 16.4-4.6.4-9.7 6.1-11.4 16.4zM43.4 97.6c1.3-3.1 5.1 3 5.1 3s3.8-6.1 5.1-3c1.6 3.7-2.8 18.4-5.1 29.2-2.3-10.7-6.7-25.5-5.1-29.2zm-2.1 58c-.2-.2-.6-.2-.8-.4 3.5-1.5 6.4-4 7.9-9.2 1.6 5.2 4.5 7.7 7.9 9.2-.3.1-.6.2-.8.4-3.7.8-6.4 6.3-7.1 9.1-.7-2.8-3.3-8.3-7.1-9.1zM29.4 268.8c0-3.6.5-7 1.2-10.1 3.6-14.9 15.3-62.2 17.8-72.1 2.5 9.9 14.2 57.2 17.8 72.1.8 3.2 1.2 6.5 1.2 10.1 0 9.1-4.4 12.3-6.9 12.3-3 0-6-4.3-6-9.7 0-3.4 1-5.5 2.4-5.5 3.4 0 3.2 5.5 2.5 8.9 2.1-1.8 3.3-5 3-8.4 1.2-.3 2.3-1.4 3.3-3.6-.8-2-1.8-3.5-3.3-3.5.7-5.2-1.2-7.5-3-8.7.6 3.8.9 8.3-2.5 8.3-2.5 0-4.5.8-5.6 3.9-.1-4.1-.3-20.5-.3-20.5-.1-6.1 4.3-6 7.1-4.1-1.1-7.1-3.3-10.9-8.3-9.9 1.2-1 2.5-3.2 2.5-7.4 0-5.8-2.4-12.1-4.1-14-1.6 1.9-4.1 8.3-4.1 14 0 4.3 1.3 6.5 2.5 7.4-5.1-1-7.3 2.9-8.3 9.9 2.8-1.8 7.3-2 7.1 4.1 0 0-.2 16.3-.3 20.5-1.1-3.1-3.1-3.9-5.6-3.9-3.4 0-3.1-4.4-2.5-8.3-1.8 1.2-3.6 3.4-3 8.7-1.5.1-2.5 1.5-3.3 3.5 1 2.2 2.2 3.3 3.3 3.6-.3 3.4.9 6.6 3 8.4-.7-3.4-.9-8.9 2.5-8.9 1.4 0 2.4 2.1 2.4 5.5 0 5.4-3 9.7-6 9.7-2.1 0-6.5-3.2-6.5-12.3zM48.5 393c-2.5-9.9-14.2-57.2-17.8-72.1-.8-3.2-1.2-6.5-1.2-10.1 0-9.1 4.4-12.3 6.9-12.3 3 0 6 4.3 6 9.7 0 3.4-1 5.5-2.4 5.5-3.4 0-3.2-5.5-2.5-8.9-2.1 1.8-3.3 5-3 8.4-1.2.3-2.3 1.4-3.3 3.6.8 2 1.8 3.5 3.3 3.5-.7 5.2 1.2 7.5 3 8.7-.6-3.8-.9-8.3 2.5-8.3 2.5 0 4.5-.8 5.6-3.9.1 4.1.3 20.5.3 20.5.1 6.1-4.3 6-7.1 4.1 1.1 7.1 3.3 10.9 8.3 9.9-1.2 1-2.5 3.2-2.5 7.4 0 5.8 2.4 12.1 4.1 14 1.6-1.9 4.1-8.3 4.1-14 0-4.3-1.3-6.5-2.5-7.4 5.1 1 7.3-2.9 8.3-9.9-2.8 1.8-7.3 2-7.1-4.1 0 0 .2-16.3.3-20.5 1.1 3.1 3.1 3.9 5.6 3.9 3.4 0 3.1 4.4 2.5 8.3 1.8-1.2 3.6-3.4 3-8.7 1.5-.1 2.5-1.5 3.3-3.5-1-2.2-2.2-3.3-3.3-3.6.3-3.4-.9-6.6-3-8.4.7 3.4.9 8.9-2.5 8.9-1.4 0-2.4-2.1-2.4-5.5 0-5.4 3-9.7 6-9.7 2.5 0 6.9 3.2 6.9 12.3 0 3.6-.5 7-1.2 10.1-4 14.9-15.7 62.2-18.2 72.1z" fill="#FEC50C"/><path d="M496 80v352H16V80h480m16-16H0v384h512V64z" fill="#AFBDC6"/></svg>',
|
|
390
400
|
|
|
401
|
+
'km-kh': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 64H0v384h512V64Z" fill="#C0CFD8"/><path d="M496 80.3H16v96h480v-96Zm0 255.7H16v96h480v-96Z" fill="#0035A0"/><path d="M496 176H16v160h480V176Z" fill="#E03232"/><path d="m256 192 64 112H192l64-112Z" fill="#fff"/></svg>',
|
|
402
|
+
|
|
391
403
|
'ko-kr': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#FFF" d="M16 81.3h480v352H16z"/><path fill="#E03232" d="M256 176c-44.2 0-80 35.8-80 80h160c0-44.2-35.8-80-80-80z"/><path fill="#0035A0" d="M256 336c44.2 0 80-35.8 80-80H176c0 44.2 35.8 80 80 80z"/><path fill="none" stroke="#000" stroke-width="16" stroke-miterlimit="10" d="m384 128 64 64M64 192l64-64M128 384l-64-64M448 320l-64 64"/></svg>',
|
|
392
404
|
|
|
393
405
|
'lo-la': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 81.3h480v112H16zM16 320h480v112H16z"/><path fill="#0035A0" d="M16 192h480v128H16z"/><circle fill="#FFF" cx="256" cy="256" r="48"/></svg>',
|