@clayui/css 3.160.0 → 3.162.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 (99) hide show
  1. package/lib/css/atlas.css +1716 -1586
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1416 -1287
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +79 -12
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/arrow-key-down.svg +9 -0
  8. package/lib/images/icons/arrow-key-left.svg +9 -0
  9. package/lib/images/icons/arrow-key-right.svg +9 -0
  10. package/lib/images/icons/arrow-key-up.svg +9 -0
  11. package/lib/images/icons/books-brush.svg +9 -0
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/package.json +1 -1
  14. package/src/images/icons/arrow-key-down.svg +9 -0
  15. package/src/images/icons/arrow-key-left.svg +9 -0
  16. package/src/images/icons/arrow-key-right.svg +9 -0
  17. package/src/images/icons/arrow-key-up.svg +9 -0
  18. package/src/images/icons/books-brush.svg +9 -0
  19. package/src/images/icons/icons.svg +1 -1
  20. package/src/scss/_components.scss +2 -0
  21. package/src/scss/_license-text.scss +1 -1
  22. package/src/scss/atlas/_variables.scss +6 -4
  23. package/src/scss/atlas/variables/_forms.scss +3 -1
  24. package/src/scss/atlas/variables/_globals.scss +10 -10
  25. package/src/scss/atlas/variables/_reorder.scss +1 -1
  26. package/src/scss/atlas-custom-properties/_variables.scss +66 -0
  27. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1205 -0
  28. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +60 -0
  29. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +26 -0
  30. package/src/scss/atlas-custom-properties/variables/_badges.scss +341 -0
  31. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +193 -0
  32. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1442 -0
  33. package/src/scss/atlas-custom-properties/variables/_c-root.scss +343 -0
  34. package/src/scss/atlas-custom-properties/variables/_cards.scss +1212 -0
  35. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +617 -0
  36. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1096 -0
  37. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +619 -0
  38. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +244 -0
  39. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1229 -0
  40. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +72 -0
  41. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +102 -0
  42. package/src/scss/atlas-custom-properties/variables/_forms.scss +2305 -0
  43. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +48 -0
  44. package/src/scss/atlas-custom-properties/variables/_globals.scss +844 -0
  45. package/src/scss/atlas-custom-properties/variables/_icons.scss +71 -0
  46. package/src/scss/atlas-custom-properties/variables/_images.scss +9 -0
  47. package/src/scss/atlas-custom-properties/variables/_labels.scss +1374 -0
  48. package/src/scss/atlas-custom-properties/variables/_links.scss +466 -0
  49. package/src/scss/atlas-custom-properties/variables/_list-group.scss +488 -0
  50. package/src/scss/atlas-custom-properties/variables/_loaders.scss +226 -0
  51. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +151 -0
  52. package/src/scss/atlas-custom-properties/variables/_menubar.scss +778 -0
  53. package/src/scss/atlas-custom-properties/variables/_modals.scss +645 -0
  54. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +354 -0
  55. package/src/scss/atlas-custom-properties/variables/_navbar.scss +198 -0
  56. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +449 -0
  57. package/src/scss/atlas-custom-properties/variables/_navs.scss +553 -0
  58. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1064 -0
  59. package/src/scss/atlas-custom-properties/variables/_panels.scss +554 -0
  60. package/src/scss/atlas-custom-properties/variables/_popovers.scss +533 -0
  61. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +149 -0
  62. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +28 -0
  63. package/src/scss/atlas-custom-properties/variables/_range.scss +262 -0
  64. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  65. package/src/scss/atlas-custom-properties/variables/_resizer.scss +37 -0
  66. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  67. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +2 -0
  68. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +547 -0
  69. package/src/scss/atlas-custom-properties/variables/_slideout.scss +369 -0
  70. package/src/scss/atlas-custom-properties/variables/_stickers.scss +576 -0
  71. package/src/scss/atlas-custom-properties/variables/_tables.scss +1292 -0
  72. package/src/scss/atlas-custom-properties/variables/_tbar.scss +570 -0
  73. package/src/scss/atlas-custom-properties/variables/_time.scss +133 -0
  74. package/src/scss/atlas-custom-properties/variables/_timelines.scss +50 -0
  75. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +702 -0
  76. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +321 -0
  77. package/src/scss/atlas-custom-properties/variables/_treeview.scss +367 -0
  78. package/src/scss/atlas-custom-properties/variables/_type.scss +195 -0
  79. package/src/scss/atlas-custom-properties/variables/_utilities.scss +933 -0
  80. package/src/scss/cadmin/components/_focus-ring.scss +74 -0
  81. package/src/scss/cadmin/components/_forms.scss +2 -0
  82. package/src/scss/cadmin/components/_menubar.scss +8 -0
  83. package/src/scss/cadmin/components/_resizer.scss +19 -4
  84. package/src/scss/cadmin/variables/_breadcrumbs.scss +3 -1
  85. package/src/scss/cadmin/variables/_forms.scss +3 -1
  86. package/src/scss/cadmin/variables/_reorder.scss +1 -0
  87. package/src/scss/cadmin/variables/_resizer.scss +16 -3
  88. package/src/scss/cadmin.scss +1 -0
  89. package/src/scss/components/_focus-ring.scss +64 -0
  90. package/src/scss/components/_forms.scss +2 -0
  91. package/src/scss/components/_keyboard-arrows-indicator.scss +82 -0
  92. package/src/scss/components/_menubar.scss +8 -0
  93. package/src/scss/components/_resizer.scss +15 -4
  94. package/src/scss/functions/_global-functions.scss +6 -4
  95. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  96. package/src/scss/variables/_breadcrumbs.scss +4 -2
  97. package/src/scss/variables/_forms.scss +2 -0
  98. package/src/scss/variables/_globals.scss +8 -8
  99. package/src/scss/variables/_resizer.scss +16 -3
@@ -0,0 +1,576 @@
1
+ // .sticker
2
+
3
+ $sticker-border-color: null !default;
4
+ $sticker-border-radius: var(--sticker-border-radius, $border-radius) !default;
5
+ $sticker-border-style: var(--sticker-border-style) !default;
6
+ $sticker-border-width: var(--sticker-border-width) !default;
7
+ $sticker-color: var(--sticker-color, $gray-900) !default;
8
+ $sticker-font-size: var(--sticker-font-size, 1rem) !default;
9
+ $sticker-font-weight: var(--sticker-font-weight, $font-weight-bold) !default;
10
+ $sticker-size: var(--sticker-size, 2rem) !default; // 32px
11
+
12
+ $sticker-inline-item-font-size: null !default;
13
+
14
+ $sticker: () !default;
15
+ $sticker: map-deep-merge(
16
+ (
17
+ align-items: center,
18
+ border-color: $sticker-border-color,
19
+ border-radius: clay-enable-rounded($sticker-border-radius),
20
+ border-style: $sticker-border-style,
21
+ border-width: $sticker-border-width,
22
+ color: $sticker-color,
23
+ height: $sticker-size,
24
+ line-height: $sticker-size,
25
+ display: inline-flex,
26
+ font-size: $sticker-font-size,
27
+ font-weight: $sticker-font-weight,
28
+ justify-content: center,
29
+ position: relative,
30
+ text-align: center,
31
+ vertical-align: middle,
32
+ width: $sticker-size,
33
+ inline-item: (
34
+ font-size: $sticker-inline-item-font-size,
35
+ justify-content: center,
36
+ lexicon-icon: (
37
+ margin-top: 0,
38
+ ),
39
+ ),
40
+ lexicon-icon: (
41
+ margin-top: 0,
42
+ ),
43
+ ),
44
+ $sticker
45
+ );
46
+
47
+ // .sticker-overlay
48
+
49
+ $sticker-overlay: () !default;
50
+ $sticker-overlay: map-merge(
51
+ (
52
+ align-items: center,
53
+ border-radius: inherit,
54
+ bottom: 0,
55
+ display: flex,
56
+ justify-content: center,
57
+ left: 0,
58
+ overflow: hidden,
59
+ position: absolute,
60
+ right: 0,
61
+ top: 0,
62
+ ),
63
+ $sticker-overlay
64
+ );
65
+
66
+ // .sticker-sm
67
+
68
+ $sticker-sm: () !default;
69
+ $sticker-sm: map-deep-merge(
70
+ (
71
+ border-radius: var(--sticker-sm-border-radius, $sticker-border-radius),
72
+ font-size: var(--sticker-sm-font-size, 0.75rem),
73
+ height: var(--sticker-sm-height, 1.5rem),
74
+ line-height: var(--sticker-sm-line-height, 1.5rem),
75
+ width: var(--sticker-sm-width, 1.5rem),
76
+ sticker-outside: (
77
+ left: -0.75rem,
78
+ top: -0.75rem,
79
+ sticker-bottom-left: (
80
+ bottom: -0.75rem,
81
+ top: auto,
82
+ ),
83
+ sticker-bottom-right: (
84
+ bottom: -0.75rem,
85
+ left: auto,
86
+ right: -0.75rem,
87
+ top: auto,
88
+ ),
89
+ sticker-top-right: (
90
+ left: auto,
91
+ right: -0.75rem,
92
+ ),
93
+ ),
94
+ ),
95
+ $sticker-sm
96
+ );
97
+
98
+ // .sticker-lg
99
+
100
+ $sticker-lg: () !default;
101
+ $sticker-lg: map-deep-merge(
102
+ (
103
+ font-size: var(--sticker-lg-font-size, 1.125rem),
104
+ height: var(--sticker-lg-height, 2.5rem),
105
+ line-height: var(--sticker-lg-line-height, 2.5rem),
106
+ width: var(--sticker-lg-width, 2.5rem),
107
+ sticker-outside: (
108
+ left: -1.25rem,
109
+ top: -1.25rem,
110
+ sticker-bottom-left: (
111
+ bottom: -1.25rem,
112
+ top: auto,
113
+ ),
114
+ sticker-bottom-right: (
115
+ bottom: -1.25rem,
116
+ left: auto,
117
+ right: -1.25rem,
118
+ top: auto,
119
+ ),
120
+ sticker-top-right: (
121
+ left: auto,
122
+ right: -1.25rem,
123
+ ),
124
+ ),
125
+ ),
126
+ $sticker-lg
127
+ );
128
+
129
+ // .sticker-xl
130
+
131
+ $sticker-xl: () !default;
132
+ $sticker-xl: map-deep-merge(
133
+ (
134
+ font-size: var(--sticker-xl-font-size, 1.25rem),
135
+ height: var(--sticker-xl-height, 3rem),
136
+ line-height: var(--sticker-xl-line-height, 3rem),
137
+ width: var(--sticker-xl-width, 3rem),
138
+ sticker-outside: (
139
+ left: -1.5rem,
140
+ top: -1.5rem,
141
+ sticker-bottom-left: (
142
+ bottom: -1.5rem,
143
+ top: auto,
144
+ ),
145
+ sticker-bottom-right: (
146
+ bottom: -1.5rem,
147
+ left: auto,
148
+ right: -1.5rem,
149
+ top: auto,
150
+ ),
151
+ sticker-top-right: (
152
+ left: auto,
153
+ right: -1.5rem,
154
+ ),
155
+ ),
156
+ ),
157
+ $sticker-xl
158
+ );
159
+
160
+ $sticker-xxl: () !default;
161
+ $sticker-xxl: map-deep-merge(
162
+ (
163
+ font-size: var(--sticker-xxl-font-size, 2.5rem),
164
+ height: var(--sticker-xxl-height, 5rem),
165
+ line-height: var(--sticker-xxl-line-height, 5rem),
166
+ width: var(--sticker-xxl-width, 5rem),
167
+ lexicon-icon: (
168
+ font-size: 1.5rem,
169
+ ),
170
+ ),
171
+ $sticker-xxl
172
+ );
173
+
174
+ $sticker-sizes: () !default;
175
+ $sticker-sizes: map-deep-merge(
176
+ (
177
+ sticker-xs: (
178
+ border-radius:
179
+ var(--sticker-xs-border-radius, $sticker-border-radius),
180
+ font-size: var(--sticker-xs-font-size, 0.5rem),
181
+ height: var(--sticker-xs-height, 1rem),
182
+ line-height: var(--sticker-xs-line-height, 1rem),
183
+ width: var(--sticker-xs-width, 1rem),
184
+ ),
185
+ sticker-sm: $sticker-sm,
186
+ sticker-lg: $sticker-lg,
187
+ sticker-xl: $sticker-xl,
188
+ sticker-xxl: $sticker-xxl,
189
+ ),
190
+ $sticker-sizes
191
+ );
192
+
193
+ // Sticker Positions
194
+
195
+ $sticker-inside-offset: $grid-gutter-width * 0.5 !default;
196
+
197
+ // .sticker-bottom-left
198
+
199
+ $sticker-bottom-left: () !default;
200
+ $sticker-bottom-left: map-merge(
201
+ (
202
+ bottom: $sticker-inside-offset,
203
+ left: $sticker-inside-offset,
204
+ position: absolute,
205
+ right: auto,
206
+ top: auto,
207
+ ),
208
+ $sticker-bottom-left
209
+ );
210
+
211
+ // .sticker-bottom-right
212
+
213
+ $sticker-bottom-right: () !default;
214
+ $sticker-bottom-right: map-merge(
215
+ (
216
+ bottom: $sticker-inside-offset,
217
+ left: auto,
218
+ position: absolute,
219
+ right: $sticker-inside-offset,
220
+ top: auto,
221
+ ),
222
+ $sticker-bottom-right
223
+ );
224
+
225
+ // .sticker-top-left
226
+
227
+ $sticker-top-left: () !default;
228
+ $sticker-top-left: map-merge(
229
+ (
230
+ left: $sticker-inside-offset,
231
+ position: absolute,
232
+ top: $sticker-inside-offset,
233
+ ),
234
+ $sticker-top-left
235
+ );
236
+
237
+ // .sticker-top-right
238
+
239
+ $sticker-top-right: () !default;
240
+ $sticker-top-right: map-merge(
241
+ (
242
+ left: auto,
243
+ position: absolute,
244
+ right: $sticker-inside-offset,
245
+ top: $sticker-inside-offset,
246
+ ),
247
+ $sticker-top-right
248
+ );
249
+
250
+ // .sticker-outside
251
+
252
+ $sticker-outside-offset: calc(#{$sticker-size} * 0.5) !default;
253
+
254
+ $sticker-outside: () !default;
255
+ $sticker-outside: map-deep-merge(
256
+ (
257
+ left: $sticker-outside-offset,
258
+ top: $sticker-outside-offset,
259
+ sticker-bottom-left: (
260
+ bottom: $sticker-outside-offset,
261
+ top: auto,
262
+ ),
263
+ sticker-bottom-right: (
264
+ bottom: $sticker-outside-offset,
265
+ left: auto,
266
+ right: $sticker-outside-offset,
267
+ top: auto,
268
+ ),
269
+ sticker-top-right: (
270
+ left: auto,
271
+ right: $sticker-outside-offset,
272
+ ),
273
+ ),
274
+ $sticker-outside
275
+ );
276
+
277
+ // .sticker-circle
278
+
279
+ $sticker-circle-border-radius: $rounded-circle-border-radius !default;
280
+
281
+ $sticker-circle: () !default;
282
+ $sticker-circle: map-deep-merge(
283
+ (
284
+ border-radius: clay-enable-rounded($sticker-circle-border-radius),
285
+ ),
286
+ $sticker-circle
287
+ );
288
+
289
+ // .sticker-user-icon
290
+
291
+ $sticker-user-icon: () !default;
292
+ $sticker-user-icon: map-deep-merge(
293
+ (
294
+ background-color: $white,
295
+ border-radius: $rounded-circle-border-radius,
296
+ box-shadow: 0 0 0 1px unquote('rgb(from #{$black} r g b / 0.125)'),
297
+ ),
298
+ $sticker-user-icon
299
+ );
300
+
301
+ // .sticker-primary
302
+
303
+ $sticker-primary-bg: var(--sticker-primary-bg, $white) !default;
304
+ $sticker-primary-border-color: var(
305
+ --sticker-primary-border-color,
306
+ transparent
307
+ ) !default;
308
+ $sticker-primary-color: var(--sticker-primary-color, $primary) !default;
309
+
310
+ $sticker-primary: () !default;
311
+ $sticker-primary: map-deep-merge(
312
+ (
313
+ background-color: $sticker-primary-bg,
314
+ border-color: $sticker-primary-border-color,
315
+ color: $sticker-primary-color,
316
+ ),
317
+ $sticker-primary
318
+ );
319
+
320
+ // .sticker-secondary
321
+
322
+ $sticker-secondary-bg: var(--sticker-secondary-bg, $white) !default;
323
+ $sticker-secondary-border-color: var(
324
+ --sticker-secondary-border-color,
325
+ transparent
326
+ ) !default;
327
+ $sticker-secondary-color: var(--sticker-secondary-color, $secondary) !default;
328
+
329
+ $sticker-secondary: () !default;
330
+ $sticker-secondary: map-deep-merge(
331
+ (
332
+ background-color: $sticker-secondary-bg,
333
+ border-color: $sticker-secondary-border-color,
334
+ color: $sticker-secondary-color,
335
+ ),
336
+ $sticker-secondary
337
+ );
338
+
339
+ // .sticker-info
340
+
341
+ $sticker-info-bg: var(--sticker-info-bg, $white) !default;
342
+ $sticker-info-border-color: var(
343
+ --sticker-info-border-color,
344
+ transparent
345
+ ) !default;
346
+ $sticker-info-color: var(--sticker-info-color, $info) !default;
347
+
348
+ $sticker-info: () !default;
349
+ $sticker-info: map-deep-merge(
350
+ (
351
+ background-color: $sticker-info-bg,
352
+ border-color: $sticker-info-border-color,
353
+ color: $sticker-info-color,
354
+ ),
355
+ $sticker-info
356
+ );
357
+
358
+ // .sticker-success
359
+
360
+ $sticker-success-bg: var(--sticker-success-bg, $white) !default;
361
+ $sticker-success-border-color: var(
362
+ --sticker-success-border-color,
363
+ transparent
364
+ ) !default;
365
+ $sticker-success-color: var(--sticker-success-color, $success) !default;
366
+
367
+ $sticker-success: () !default;
368
+ $sticker-success: map-deep-merge(
369
+ (
370
+ background-color: $sticker-success-bg,
371
+ border-color: $sticker-success-border-color,
372
+ color: $sticker-success-color,
373
+ ),
374
+ $sticker-success
375
+ );
376
+
377
+ // .sticker-warning
378
+
379
+ $sticker-warning-bg: var(--sticker-warning-bg, $white) !default;
380
+ $sticker-warning-border-color: var(
381
+ --sticker-warning-border-color,
382
+ transparent
383
+ ) !default;
384
+ $sticker-warning-color: var(--sticker-warning-color, $warning) !default;
385
+
386
+ $sticker-warning: () !default;
387
+ $sticker-warning: map-deep-merge(
388
+ (
389
+ background-color: $sticker-warning-bg,
390
+ border-color: $sticker-warning-border-color,
391
+ color: $sticker-warning-color,
392
+ ),
393
+ $sticker-warning
394
+ );
395
+
396
+ // .sticker-danger
397
+
398
+ $sticker-danger-bg: var(--sticker-danger-bg, $white) !default;
399
+ $sticker-danger-border-color: var(
400
+ --sticker-danger-border-color,
401
+ transparent
402
+ ) !default;
403
+ $sticker-danger-color: var(--sticker-danger-color, $danger) !default;
404
+
405
+ $sticker-danger: () !default;
406
+ $sticker-danger: map-deep-merge(
407
+ (
408
+ background-color: $sticker-danger-bg,
409
+ border-color: $sticker-danger-border-color,
410
+ color: $sticker-danger-color,
411
+ ),
412
+ $sticker-danger
413
+ );
414
+
415
+ // .sticker-light
416
+
417
+ $sticker-light-bg: var(--sticker-light-bg, $black) !default;
418
+ $sticker-light-border-color: var(
419
+ --sticker-light-border-color,
420
+ transparent
421
+ ) !default;
422
+ $sticker-light-color: var(--sticker-light-color, $light) !default;
423
+
424
+ $sticker-light: () !default;
425
+ $sticker-light: map-deep-merge(
426
+ (
427
+ background-color: $sticker-light-bg,
428
+ border-color: $sticker-light-border-color,
429
+ color: $sticker-light-color,
430
+ ),
431
+ $sticker-light
432
+ );
433
+
434
+ // .sticker-dark
435
+
436
+ $sticker-dark-bg: var(--sticker-dark-bg, $white) !default;
437
+ $sticker-dark-border-color: var(
438
+ --sticker-dark-border-color,
439
+ transparent
440
+ ) !default;
441
+ $sticker-dark-color: var(--sticker-dark-color, $dark) !default;
442
+
443
+ $sticker-dark: () !default;
444
+ $sticker-dark: map-deep-merge(
445
+ (
446
+ background-color: $sticker-dark-bg,
447
+ border-color: $sticker-dark-border-color,
448
+ color: $sticker-dark-color,
449
+ ),
450
+ $sticker-dark
451
+ );
452
+
453
+ $sticker-outline-0: () !default;
454
+ $sticker-outline-0: map-deep-merge(
455
+ (
456
+ background-color: var(--sticker-outline-0-background-color, $light),
457
+ border: var(--sticker-outline-0-border, 1px solid $dark),
458
+ color: var(--sticker-outline-0-color, $dark),
459
+ ),
460
+ $sticker-outline-0
461
+ );
462
+
463
+ $sticker-outline-1: () !default;
464
+ $sticker-outline-1: map-deep-merge(
465
+ (
466
+ background-color: var(--sticker-outline-1-background-color, $purple-l5),
467
+ border: var(--sticker-outline-1-border, 1px solid $purple),
468
+ color: var(--sticker-outline-1-color, $purple),
469
+ ),
470
+ $sticker-outline-1
471
+ );
472
+
473
+ $sticker-outline-2: () !default;
474
+ $sticker-outline-2: map-deep-merge(
475
+ (
476
+ background-color: var(--sticker-outline-2-background-color, $yellow-l5),
477
+ border: var(--sticker-outline-2-border, 1px solid $yellow-d3),
478
+ color: var(--sticker-outline-2-color, $yellow-d3),
479
+ ),
480
+ $sticker-outline-2
481
+ );
482
+
483
+ $sticker-outline-3: () !default;
484
+ $sticker-outline-3: map-deep-merge(
485
+ (
486
+ background-color: var(--sticker-outline-3-background-color, $green-l5),
487
+ border: var(--sticker-outline-3-border, 1px solid $green),
488
+ color: var(--sticker-outline-3-color, $green),
489
+ ),
490
+ $sticker-outline-3
491
+ );
492
+
493
+ $sticker-outline-4: () !default;
494
+ $sticker-outline-4: map-deep-merge(
495
+ (
496
+ background-color: var(--sticker-outline-4-background-color, $red-l5),
497
+ border: var(--sticker-outline-4-border, 1px solid $red),
498
+ color: var(--sticker-outline-4-color, $red),
499
+ ),
500
+ $sticker-outline-4
501
+ );
502
+
503
+ $sticker-outline-5: () !default;
504
+ $sticker-outline-5: map-deep-merge(
505
+ (
506
+ background-color: var(--sticker-outline-5-background-color, $orange-l5),
507
+ border: var(--sticker-outline-5-border, 1px solid $orange),
508
+ color: var(--sticker-outline-5-color, $orange),
509
+ ),
510
+ $sticker-outline-5
511
+ );
512
+
513
+ $sticker-outline-6: () !default;
514
+ $sticker-outline-6: map-deep-merge(
515
+ (
516
+ background-color: var(--sticker-outline-6-background-color, $teal-l5),
517
+ border: var(--sticker-outline-6-border, 1px solid $teal),
518
+ color: var(--sticker-outline-6-color, $teal),
519
+ ),
520
+ $sticker-outline-6
521
+ );
522
+
523
+ $sticker-outline-7: () !default;
524
+ $sticker-outline-7: map-deep-merge(
525
+ (
526
+ background-color: var(--sticker-outline-7-background-color, $cyan-l5),
527
+ border: var(--sticker-outline-7-border, 1px solid $cyan),
528
+ color: var(--sticker-outline-7-color, $cyan),
529
+ ),
530
+ $sticker-outline-7
531
+ );
532
+
533
+ $sticker-outline-8: () !default;
534
+ $sticker-outline-8: map-deep-merge(
535
+ (
536
+ background-color: var(--sticker-outline-8-background-color, $pink-l5),
537
+ border: var(--sticker-outline-8-border, 1px solid $pink),
538
+ color: var(--sticker-outline-8-color, $pink-d4),
539
+ ),
540
+ $sticker-outline-8
541
+ );
542
+
543
+ $sticker-outline-9: () !default;
544
+ $sticker-outline-9: map-deep-merge(
545
+ (
546
+ background-color: var(--sticker-outline-9-background-color, $white),
547
+ border: var(--sticker-outline-9-border, 1px solid $dark-l2),
548
+ color: var(--sticker-outline-9-color, $dark-l2),
549
+ ),
550
+ $sticker-outline-9
551
+ );
552
+
553
+ $sticker-palette: () !default;
554
+ $sticker-palette: map-deep-merge(
555
+ (
556
+ primary: $sticker-primary,
557
+ secondary: $sticker-secondary,
558
+ success: $sticker-success,
559
+ info: $sticker-info,
560
+ warning: $sticker-warning,
561
+ danger: $sticker-danger,
562
+ light: $sticker-light,
563
+ dark: $sticker-dark,
564
+ '.sticker-outline-0': $sticker-outline-0,
565
+ '.sticker-outline-1': $sticker-outline-1,
566
+ '.sticker-outline-2': $sticker-outline-2,
567
+ '.sticker-outline-3': $sticker-outline-3,
568
+ '.sticker-outline-4': $sticker-outline-4,
569
+ '.sticker-outline-5': $sticker-outline-5,
570
+ '.sticker-outline-6': $sticker-outline-6,
571
+ '.sticker-outline-7': $sticker-outline-7,
572
+ '.sticker-outline-8': $sticker-outline-8,
573
+ '.sticker-outline-9': $sticker-outline-9,
574
+ ),
575
+ $sticker-palette
576
+ );