@clayui/css 3.41.0 → 3.42.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.
Files changed (51) hide show
  1. package/lib/css/atlas.css +713 -992
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +625 -904
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css.map +1 -1
  6. package/lib/css/cadmin.css +634 -807
  7. package/lib/css/cadmin.css.map +1 -1
  8. package/lib/images/icons/filter.svg +1 -1
  9. package/lib/images/icons/icons.svg +1 -1
  10. package/package.json +2 -2
  11. package/src/images/icons/filter.svg +1 -1
  12. package/src/scss/_mixins.scss +2 -0
  13. package/src/scss/atlas/variables/_application-bar.scss +32 -12
  14. package/src/scss/atlas/variables/_management-bar.scss +53 -21
  15. package/src/scss/atlas/variables/_navigation-bar.scss +104 -18
  16. package/src/scss/atlas/variables/_pagination.scss +2 -0
  17. package/src/scss/atlas/variables/_sidebar.scss +1 -1
  18. package/src/scss/cadmin/components/_pagination.scss +20 -236
  19. package/src/scss/cadmin/components/_popovers.scss +31 -252
  20. package/src/scss/cadmin/components/_tooltip.scss +29 -167
  21. package/src/scss/cadmin/variables/_management-bar.scss +70 -30
  22. package/src/scss/cadmin/variables/_navigation-bar.scss +118 -22
  23. package/src/scss/cadmin/variables/_pagination.scss +274 -68
  24. package/src/scss/cadmin/variables/_popovers.scss +410 -0
  25. package/src/scss/cadmin/variables/_sidebar.scss +17 -5
  26. package/src/scss/cadmin/variables/_tooltip.scss +299 -0
  27. package/src/scss/components/_button-groups.scss +6 -6
  28. package/src/scss/components/_multi-step-nav.scss +12 -8
  29. package/src/scss/components/_pagination.scss +18 -234
  30. package/src/scss/components/_popovers.scss +30 -237
  31. package/src/scss/components/_toggle-switch.scss +2 -2
  32. package/src/scss/components/_tooltip.scss +29 -164
  33. package/src/scss/functions/_lx-icons-generated.scss +1 -1
  34. package/src/scss/mixins/_buttons.scss +674 -472
  35. package/src/scss/mixins/_close.scss +0 -1
  36. package/src/scss/mixins/_custom-forms.scss +46 -34
  37. package/src/scss/mixins/_dropdown-menu.scss +54 -49
  38. package/src/scss/mixins/_forms.scss +267 -248
  39. package/src/scss/mixins/_links.scss +522 -476
  40. package/src/scss/mixins/_navbar.scss +759 -140
  41. package/src/scss/mixins/_pagination.scss +422 -0
  42. package/src/scss/mixins/_popovers.scss +90 -0
  43. package/src/scss/mixins/_toggle-switch.scss +64 -0
  44. package/src/scss/mixins/_tooltip.scss +70 -0
  45. package/src/scss/variables/_application-bar.scss +18 -6
  46. package/src/scss/variables/_management-bar.scss +45 -12
  47. package/src/scss/variables/_navigation-bar.scss +95 -14
  48. package/src/scss/variables/_pagination.scss +261 -61
  49. package/src/scss/variables/_popovers.scss +392 -0
  50. package/src/scss/variables/_sidebar.scss +17 -5
  51. package/src/scss/variables/_tooltip.scss +299 -0
@@ -1,49 +1,5 @@
1
1
  .popover {
2
- background-clip: padding-box;
3
- background-color: $popover-bg;
4
- border: $popover-border-width solid $popover-border-color;
5
-
6
- @include border-radius($popover-border-radius);
7
- @include box-shadow($popover-box-shadow);
8
-
9
- display: block;
10
- font-family: $font-family-base;
11
- font-size: $popover-font-size;
12
- font-style: normal;
13
- font-weight: $font-weight-normal;
14
- left: 0;
15
- letter-spacing: normal;
16
- line-break: auto;
17
- line-height: $line-height-base;
18
- max-width: $popover-max-width;
19
- position: absolute;
20
- text-align: left;
21
- text-decoration: none;
22
- text-shadow: none;
23
- text-transform: none;
24
- top: 0;
25
- white-space: normal;
26
- word-break: normal;
27
- word-spacing: normal;
28
- word-wrap: break-word;
29
- z-index: $zindex-popover;
30
-
31
- .arrow {
32
- display: block;
33
- height: $popover-arrow-height;
34
- margin: 0 $popover-border-radius;
35
- position: absolute;
36
- width: $popover-arrow-width;
37
-
38
- &::before,
39
- &::after {
40
- border-color: transparent;
41
- border-style: solid;
42
- content: '';
43
- display: block;
44
- position: absolute;
45
- }
46
- }
2
+ @include clay-popover-variant($popover);
47
3
  }
48
4
 
49
5
  %bs-popover-bottom {
@@ -179,43 +135,24 @@
179
135
  @extend %bs-popover-top !optional;
180
136
  }
181
137
 
182
- .popover {
183
- .inline-scroller {
184
- max-height: $popover-inline-scroller-max-height;
185
- }
186
- }
187
-
188
- .popover-header {
189
- color: $popover-header-color;
190
- background-color: $popover-header-bg;
191
- border-bottom: $popover-border-width solid
192
- clay-darken($popover-header-bg, 5%);
193
- @include border-top-radius($popover-inner-border-radius);
194
- }
195
-
196
138
  .popover-header {
197
- border-color: $popover-header-border-color;
139
+ @include clay-css($popover-header);
198
140
 
199
- @include border-top-radius($popover-offset-border-width);
141
+ &::before {
142
+ @include clay-css(map-get($popover-header, before));
143
+ }
200
144
 
201
- font-size: $popover-header-font-size;
202
- font-weight: $popover-header-font-weight;
203
- margin-bottom: $popover-header-margin-y;
204
- margin-left: $popover-header-margin-x;
205
- margin-right: $popover-header-margin-x;
206
- margin-top: $popover-header-margin-y;
207
- padding: $popover-header-padding-y $popover-header-padding-x;
145
+ &::after {
146
+ @include clay-css(map-get($popover-header, after));
147
+ }
208
148
 
209
149
  &:empty {
210
- display: none;
150
+ @include clay-css(map-get($popover-header, empty));
211
151
  }
212
152
  }
213
153
 
214
154
  .popover-body {
215
- @include border-bottom-radius($popover-offset-border-width);
216
-
217
- color: $popover-body-color;
218
- padding: $popover-body-padding-y $popover-body-padding-x;
155
+ @include clay-css($popover-body);
219
156
  }
220
157
 
221
158
  // Top
@@ -223,38 +160,15 @@
223
160
  .clay-popover-top,
224
161
  .clay-popover-top-left,
225
162
  .clay-popover-top-right {
226
- margin-bottom: $popover-arrow-height;
227
-
228
- .arrow {
229
- bottom: calc(
230
- (#{$popover-arrow-height} + #{$popover-border-width}) * -1
231
- );
232
- margin: 0;
233
-
234
- &::after {
235
- border-top-color: $popover-arrow-color;
236
- border-width: $popover-arrow-height ($popover-arrow-width * 0.5) 0;
237
- bottom: $popover-border-width;
238
- }
239
-
240
- &::before {
241
- border-top-color: $popover-arrow-outer-color;
242
- border-width: $popover-arrow-height ($popover-arrow-width * 0.5) 0;
243
- bottom: 0;
244
- }
245
- }
246
- }
247
-
248
- .clay-popover-top .arrow::after {
249
- border-top-color: $popover-top-arrow-color;
163
+ @include clay-popover-variant($clay-popover-top);
250
164
  }
251
165
 
252
- .clay-popover-top-left .arrow::after {
253
- border-top-color: $popover-top-left-arrow-color;
166
+ .clay-popover-top-left {
167
+ @include clay-popover-variant($clay-popover-top-left);
254
168
  }
255
169
 
256
- .clay-popover-top-right .arrow::after {
257
- border-top-color: $popover-top-right-arrow-color;
170
+ .clay-popover-top-right {
171
+ @include clay-popover-variant($clay-popover-top-right);
258
172
  }
259
173
 
260
174
  // Right
@@ -262,40 +176,15 @@
262
176
  .clay-popover-right,
263
177
  .clay-popover-right-bottom,
264
178
  .clay-popover-right-top {
265
- margin-left: $popover-arrow-height;
266
-
267
- .arrow {
268
- height: $popover-arrow-width;
269
- left: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
270
- margin: 0;
271
- width: $popover-arrow-height;
272
-
273
- &::after {
274
- border-right-color: $popover-arrow-color;
275
- border-width: ($popover-arrow-width * 0.5) $popover-arrow-height
276
- ($popover-arrow-width * 0.5) 0;
277
- left: $popover-border-width;
278
- }
279
-
280
- &::before {
281
- border-right-color: $popover-arrow-outer-color;
282
- border-width: ($popover-arrow-width * 0.5) $popover-arrow-height
283
- ($popover-arrow-width * 0.5) 0;
284
- left: 0;
285
- }
286
- }
179
+ @include clay-popover-variant($clay-popover-right);
287
180
  }
288
181
 
289
- .clay-popover-right .arrow::after {
290
- border-right-color: $popover-right-arrow-color;
291
- }
292
-
293
- .clay-popover-right-bottom .arrow::after {
294
- border-right-color: $popover-right-bottom-arrow-color;
182
+ .clay-popover-right-bottom {
183
+ @include clay-popover-variant($clay-popover-right-bottom);
295
184
  }
296
185
 
297
- .clay-popover-right-top .arrow::after {
298
- border-right-color: $popover-right-top-arrow-color;
186
+ .clay-popover-right-top {
187
+ @include clay-popover-variant($clay-popover-right-top);
299
188
  }
300
189
 
301
190
  // Bottom
@@ -303,38 +192,15 @@
303
192
  .clay-popover-bottom,
304
193
  .clay-popover-bottom-left,
305
194
  .clay-popover-bottom-right {
306
- margin-top: $popover-arrow-height;
307
-
308
- .arrow {
309
- margin: 0;
310
- top: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
311
-
312
- &:after {
313
- border-bottom-color: $popover-arrow-color;
314
- border-width: 0 ($popover-arrow-width * 0.5) $popover-arrow-height
315
- ($popover-arrow-width * 0.5);
316
- top: $popover-border-width;
317
- }
318
-
319
- &:before {
320
- border-bottom-color: $popover-arrow-outer-color;
321
- border-width: 0 ($popover-arrow-width * 0.5) $popover-arrow-height
322
- ($popover-arrow-width * 0.5);
323
- top: 0;
324
- }
325
- }
326
- }
327
-
328
- .clay-popover-bottom .arrow::after {
329
- border-bottom-color: $popover-bottom-arrow-color;
195
+ @include clay-popover-variant($clay-popover-bottom);
330
196
  }
331
197
 
332
- .clay-popover-bottom-left .arrow::after {
333
- border-bottom-color: $popover-bottom-left-arrow-color;
198
+ .clay-popover-bottom-left {
199
+ @include clay-popover-variant($clay-popover-bottom-left);
334
200
  }
335
201
 
336
- .clay-popover-bottom-right .arrow::after {
337
- border-bottom-color: $popover-bottom-right-arrow-color;
202
+ .clay-popover-bottom-right {
203
+ @include clay-popover-variant($clay-popover-bottom-right);
338
204
  }
339
205
 
340
206
  // Left
@@ -342,86 +208,13 @@
342
208
  .clay-popover-left,
343
209
  .clay-popover-left-bottom,
344
210
  .clay-popover-left-top {
345
- margin-right: $popover-arrow-height;
346
-
347
- .arrow {
348
- height: $popover-arrow-width;
349
- margin: 0;
350
- right: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);
351
- width: $popover-arrow-height;
352
-
353
- &::after {
354
- border-left-color: $popover-arrow-color;
355
- border-width: ($popover-arrow-width * 0.5) 0
356
- ($popover-arrow-width * 0.5) $popover-arrow-height;
357
- right: $popover-border-width;
358
- }
359
-
360
- &::before {
361
- border-left-color: $popover-arrow-outer-color;
362
- border-width: ($popover-arrow-width * 0.5) 0
363
- ($popover-arrow-width * 0.5) $popover-arrow-height;
364
- right: 0;
365
- }
366
- }
211
+ @include clay-popover-variant($clay-popover-left);
367
212
  }
368
213
 
369
- .clay-popover-left .arrow::after {
370
- border-left-color: $popover-left-arrow-color;
214
+ .clay-popover-left-bottom {
215
+ @include clay-popover-variant($clay-popover-left-bottom);
371
216
  }
372
217
 
373
- .clay-popover-left-bottom .arrow::after {
374
- border-left-color: $popover-left-bottom-arrow-color;
375
- }
376
-
377
- .clay-popover-left-top .arrow::after {
378
- border-left-color: $popover-left-top-arrow-color;
379
- }
380
-
381
- // Bottom / Top
382
-
383
- .clay-popover-bottom,
384
- .clay-popover-top {
385
- .arrow {
386
- left: 50%;
387
- margin-left: math-sign($popover-arrow-width * 0.5);
388
- }
389
- }
390
-
391
- .clay-popover-bottom-left,
392
- .clay-popover-top-left {
393
- .arrow {
394
- left: $popover-arrow-offset;
395
- }
396
- }
397
-
398
- .clay-popover-bottom-right,
399
- .clay-popover-top-right {
400
- .arrow {
401
- right: $popover-arrow-offset;
402
- }
403
- }
404
-
405
- // Right / Left
406
-
407
- .clay-popover-left,
408
- .clay-popover-right {
409
- .arrow {
410
- margin-top: math-sign($popover-arrow-height * 0.5);
411
- top: 50%;
412
- }
413
- }
414
-
415
- .clay-popover-left-bottom,
416
- .clay-popover-right-bottom {
417
- .arrow {
418
- bottom: $popover-arrow-offset;
419
- }
420
- }
421
-
422
- .clay-popover-left-top,
423
- .clay-popover-right-top {
424
- .arrow {
425
- top: $popover-arrow-offset;
426
- }
218
+ .clay-popover-left-top {
219
+ @include clay-popover-variant($clay-popover-left-top);
427
220
  }
@@ -52,7 +52,7 @@
52
52
 
53
53
  // Simple Toggle Switch
54
54
 
55
- .simple-toggle-switch {
55
+ .simple-toggle-switch.toggle-switch {
56
56
  @include clay-toggle-switch-variant($simple-toggle-switch);
57
57
 
58
58
  // deprecated
@@ -66,6 +66,6 @@
66
66
  }
67
67
  }
68
68
 
69
- .simple-toggle-switch-reverse {
69
+ .simple-toggle-switch-reverse.simple-toggle-switch {
70
70
  @include clay-toggle-switch-variant($simple-toggle-switch-reverse);
71
71
  }
@@ -1,56 +1,9 @@
1
1
  .tooltip {
2
- display: block;
3
- font-family: $font-family-base;
4
- font-size: $tooltip-font-size;
5
- font-style: normal;
6
- font-weight: $font-weight-normal;
7
- letter-spacing: normal;
8
- line-break: auto;
9
- line-height: $line-height-base;
10
- margin: $tooltip-margin;
11
- opacity: 0;
12
- position: absolute;
13
- text-align: left;
14
- text-align: start;
15
- text-decoration: none;
16
- text-shadow: none;
17
- text-transform: none;
18
- white-space: normal;
19
- word-break: normal;
20
- word-spacing: normal;
21
- word-wrap: break-word;
22
- z-index: $zindex-tooltip;
23
-
24
- &.show {
25
- opacity: $tooltip-opacity;
26
- }
27
-
28
- .arrow {
29
- display: block;
30
- height: $tooltip-arrow-height;
31
- position: absolute;
32
- width: $tooltip-arrow-width;
33
-
34
- &::before {
35
- border-color: transparent;
36
- border-style: solid;
37
- content: '';
38
- position: absolute;
39
- }
40
- }
2
+ @include clay-tooltip-variant($tooltip);
41
3
  }
42
4
 
43
5
  .tooltip-inner {
44
- background-color: $tooltip-bg;
45
-
46
- @include border-radius($tooltip-border-radius);
47
- @include box-shadow($tooltip-box-shadow);
48
-
49
- color: $tooltip-color;
50
- max-width: $tooltip-max-width;
51
- padding: $tooltip-padding-y $tooltip-padding-x;
52
- text-align: center;
53
- white-space: pre-line;
6
+ @include clay-css($tooltip-inner);
54
7
  }
55
8
 
56
9
  .tooltip-arrow {
@@ -143,75 +96,20 @@
143
96
  @extend %bs-tooltip-left !optional;
144
97
  }
145
98
 
146
- // Tooltip Positions
99
+ // Bottom
147
100
 
148
101
  .clay-tooltip-bottom,
149
- .clay-tooltip-top {
150
- .arrow {
151
- left: 50%;
152
- margin-left: math-sign($tooltip-arrow-width * 0.5);
153
- }
154
- }
155
-
156
102
  .clay-tooltip-bottom-left,
157
- .clay-tooltip-top-left {
158
- .arrow {
159
- left: $tooltip-arrow-offset;
160
- }
161
- }
162
-
163
- .clay-tooltip-bottom-right,
164
- .clay-tooltip-top-right {
165
- .arrow {
166
- right: $tooltip-arrow-offset;
167
- }
168
- }
169
-
170
- .clay-tooltip-left,
171
- .clay-tooltip-right {
172
- .arrow {
173
- margin-top: math-sign($tooltip-arrow-width * 0.5);
174
- top: 50%;
175
- }
176
- }
177
-
178
- .clay-tooltip-left-bottom,
179
- .clay-tooltip-right-bottom {
180
- .arrow {
181
- bottom: $tooltip-arrow-offset;
182
- }
103
+ .clay-tooltip-bottom-right {
104
+ @include clay-tooltip-variant($clay-tooltip-bottom);
183
105
  }
184
106
 
185
- .clay-tooltip-left-top,
186
- .clay-tooltip-right-top {
187
- .arrow {
188
- top: $tooltip-arrow-offset;
189
- }
107
+ .clay-tooltip-bottom-left {
108
+ @include clay-tooltip-variant($clay-tooltip-bottom-left);
190
109
  }
191
110
 
192
- // Bottom
193
-
194
- .clay-tooltip-bottom,
195
- .clay-tooltip-bottom-left,
196
111
  .clay-tooltip-bottom-right {
197
- padding-top: $tooltip-arrow-height;
198
-
199
- .arrow {
200
- top: 0;
201
-
202
- &::before {
203
- border-bottom-color: $tooltip-arrow-color;
204
- border-width: 0 ($tooltip-arrow-width * 0.5) $tooltip-arrow-height;
205
- bottom: 0;
206
- }
207
- }
208
-
209
- .tooltip-arrow {
210
- border-bottom-color: transparent;
211
- border-right-color: transparent;
212
- left: 50%;
213
- top: 0;
214
- }
112
+ @include clay-tooltip-variant($clay-tooltip-bottom-right);
215
113
  }
216
114
 
217
115
  // Left
@@ -219,27 +117,15 @@
219
117
  .clay-tooltip-left,
220
118
  .clay-tooltip-left-bottom,
221
119
  .clay-tooltip-left-top {
222
- padding-right: $tooltip-arrow-height;
223
-
224
- .arrow {
225
- height: $tooltip-arrow-width;
226
- right: 0;
227
- width: $tooltip-arrow-height;
120
+ @include clay-tooltip-variant($clay-tooltip-left);
121
+ }
228
122
 
229
- &::before {
230
- border-left-color: $tooltip-arrow-color;
231
- border-width: ($tooltip-arrow-width * 0.5) 0
232
- ($tooltip-arrow-width * 0.5) $tooltip-arrow-height;
233
- left: 0;
234
- }
235
- }
123
+ .clay-tooltip-left-bottom {
124
+ @include clay-tooltip-variant($clay-tooltip-left-bottom);
125
+ }
236
126
 
237
- .tooltip-arrow {
238
- border-bottom-color: transparent;
239
- border-left-color: transparent;
240
- right: 0;
241
- top: 50%;
242
- }
127
+ .clay-tooltip-left-top {
128
+ @include clay-tooltip-variant($clay-tooltip-left-top);
243
129
  }
244
130
 
245
131
  // Right
@@ -247,27 +133,15 @@
247
133
  .clay-tooltip-right,
248
134
  .clay-tooltip-right-bottom,
249
135
  .clay-tooltip-right-top {
250
- padding-left: $tooltip-arrow-height;
251
-
252
- .arrow {
253
- height: $tooltip-arrow-width;
254
- left: 0;
255
- width: $tooltip-arrow-height;
136
+ @include clay-tooltip-variant($clay-tooltip-right);
137
+ }
256
138
 
257
- &::before {
258
- border-right-color: $tooltip-arrow-color;
259
- border-width: ($tooltip-arrow-width * 0.5) $tooltip-arrow-height
260
- ($tooltip-arrow-width * 0.5) 0;
261
- right: 0;
262
- }
263
- }
139
+ .clay-tooltip-right-bottom {
140
+ @include clay-tooltip-variant($clay-tooltip-right-bottom);
141
+ }
264
142
 
265
- .tooltip-arrow {
266
- border-right-color: transparent;
267
- border-top-color: transparent;
268
- left: 0;
269
- top: 50%;
270
- }
143
+ .clay-tooltip-right-top {
144
+ @include clay-tooltip-variant($clay-tooltip-right-top);
271
145
  }
272
146
 
273
147
  // Top
@@ -275,22 +149,13 @@
275
149
  .clay-tooltip-top,
276
150
  .clay-tooltip-top-left,
277
151
  .clay-tooltip-top-right {
278
- padding-bottom: $tooltip-arrow-height;
279
-
280
- .arrow {
281
- bottom: 0;
152
+ @include clay-tooltip-variant($clay-tooltip-top);
153
+ }
282
154
 
283
- &::before {
284
- border-top-color: $tooltip-arrow-color;
285
- border-width: $tooltip-arrow-height ($tooltip-arrow-width * 0.5) 0;
286
- top: 0;
287
- }
288
- }
155
+ .clay-tooltip-top-left {
156
+ @include clay-tooltip-variant($clay-tooltip-top-left);
157
+ }
289
158
 
290
- .tooltip-arrow {
291
- border-left-color: transparent;
292
- border-top-color: transparent;
293
- bottom: 0;
294
- left: 50%;
295
- }
159
+ .clay-tooltip-top-right {
160
+ @include clay-tooltip-variant($clay-tooltip-top-right);
296
161
  }
@@ -300,7 +300,7 @@
300
300
 
301
301
  'file-xsl': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline file-xsl-border1" d="M96 192V64h224v64c0 19.2 12.8 32 32 32h64v32h64v-38.4c0-32-19.2-44.8-64-89.6S358.4 0 326.4 0H96C60.8 0 32 28.8 32 64v128h64z" fill="#{$color}"/><path class="lexicon-icon-outline file-xsl-border2" d="M32 448c0 35.2 28.8 64 64 64h320c35.2 0 64-28.8 64-64H32z" fill="#{$color}"/><path class="lexicon-icon-outline file-xsl-x" d="m80 326.4-44.8-83.2H80l26.2 52.1 24.9-52.1h41.6L128 326.4l48 89.6h-44.8l-28.8-64-28.8 64H32l48-89.6z" fill="#{$color}"/><path class="lexicon-icon-outline file-xsl-s" d="m198.4 393.6 22.4-25.6c12.8 12.8 64 28.8 67.2 0 3.2-22.4-83.2-19.2-83.2-76.8 0-48 73.6-73.6 115.2-28.8L304 288c-25.6-19.2-60.8-16-60.8 3.2 0 25.6 86.4 16 86.4 76.8 0 57.6-70.4 73.6-131.2 25.6z" fill="#{$color}"/><path class="lexicon-icon-outline file-xsl-l" d="M374.4 243.2h38.4V384H480v32H374.4V243.2z" fill="#{$color}"/></svg>',
302
302
 
303
- 'filter': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline filter-border" d="M448.1 89.9V156L256 316.1 63.9 156V89.9h384.2m32.1-64H31.8c-17.7 0-32 14.3-32 32V186L192 346.1v108.3c0 18.6 18.5 40.8 46.3 28.6l64-32c10.8-5.4 17.7-16.5 17.7-28.6v-76.3L512.2 186V57.9c0-17.7-14.3-32-32-32z" fill="#{$color}"/></svg>',
303
+ 'filter': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline filter-body" d="M448 160H63.9c-42.5 0-42.5-64 0-64H448c42.7 0 42.7 64 0 64zm-64 64H128c-42.7 0-42.7 64 0 64h256c42.7 0 42.7-64 0-64zm-64 128H192c-42.7 0-42.7 64 0 64h128c42.7 0 42.7-64 0-64z" fill="#{$color}"/></svg>',
304
304
 
305
305
  'flag-empty': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M384 32H128c0-42.4-64-42.9-64 0v448c0 42.6 64 42.7 64 0V288h256c18.2 0 32-13.8 32-32V64c0-18.2-13.8-32-32-32zm-32 192H128V96h224v128z" fill="#{$color}"/></svg>',
306
306