@clayui/css 3.122.0 → 3.126.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 (47) hide show
  1. package/lib/css/atlas.css +285 -49
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +244 -8
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +1 -1
  7. package/lib/css/cadmin.css +280 -49
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/flags-de-AT.svg +12 -0
  10. package/lib/images/icons/flags-de-CH.svg +11 -0
  11. package/lib/images/icons/flags-fr-BE.svg +12 -0
  12. package/lib/images/icons/flags-fr-CH.svg +11 -0
  13. package/lib/images/icons/flags-it-CH.svg +11 -0
  14. package/lib/images/icons/flags-mk-MK.svg +19 -0
  15. package/lib/images/icons/flags-no-NO.svg +14 -0
  16. package/lib/images/icons/gallery.svg +7 -0
  17. package/lib/images/icons/icons.svg +1 -1
  18. package/package.json +2 -2
  19. package/src/images/icons/flags-de-AT.svg +12 -0
  20. package/src/images/icons/flags-de-CH.svg +11 -0
  21. package/src/images/icons/flags-fr-BE.svg +12 -0
  22. package/src/images/icons/flags-fr-CH.svg +11 -0
  23. package/src/images/icons/flags-it-CH.svg +11 -0
  24. package/src/images/icons/flags-mk-MK.svg +19 -0
  25. package/src/images/icons/flags-no-NO.svg +14 -0
  26. package/src/images/icons/gallery.svg +7 -0
  27. package/src/scss/_license-text.scss +1 -1
  28. package/src/scss/atlas/variables/_globals.scss +21 -11
  29. package/src/scss/cadmin/components/_menubar.scss +8 -0
  30. package/src/scss/cadmin/components/_multi-step-nav.scss +75 -8
  31. package/src/scss/cadmin/variables/_globals.scss +21 -11
  32. package/src/scss/cadmin/variables/_menubar.scss +122 -0
  33. package/src/scss/cadmin/variables/_multi-step-nav.scss +26 -0
  34. package/src/scss/cadmin/variables/_stickers.scss +110 -0
  35. package/src/scss/cadmin/variables/_toggle-switch.scss +2 -3
  36. package/src/scss/components/_icons.scss +2 -1
  37. package/src/scss/components/_menubar.scss +8 -0
  38. package/src/scss/components/_multi-step-nav.scss +68 -8
  39. package/src/scss/functions/_lx-icons-generated.scss +16 -0
  40. package/src/scss/mixins/_links.scss +34 -0
  41. package/src/scss/mixins/_menubar.scss +12 -0
  42. package/src/scss/variables/_globals.scss +10 -0
  43. package/src/scss/variables/_menubar.scss +122 -0
  44. package/src/scss/variables/_multi-step-nav.scss +26 -0
  45. package/src/scss/variables/_navs.scss +2 -0
  46. package/src/scss/variables/_stickers.scss +110 -0
  47. package/src/scss/variables/_toggle-switch.scss +2 -3
@@ -46,6 +46,12 @@
46
46
  margin-bottom: $multi-step-item-margin-bottom;
47
47
  position: relative;
48
48
 
49
+ &:last-child {
50
+ .multi-step-divider {
51
+ display: none;
52
+ }
53
+ }
54
+
49
55
  &.active {
50
56
  .multi-step-icon {
51
57
  background-color: $multi-step-icon-active-bg;
@@ -181,8 +187,11 @@
181
187
  }
182
188
  }
183
189
 
184
- &:focus {
185
- box-shadow: $multi-step-icon-disabled-focus-box-shadow;
190
+ @at-root {
191
+ &.focus,
192
+ #{$focus-visible-selector} {
193
+ box-shadow: $multi-step-icon-disabled-focus-box-shadow;
194
+ }
186
195
  }
187
196
  }
188
197
 
@@ -259,6 +268,7 @@
259
268
  padding-left: $multi-step-icon-padding-left;
260
269
  padding-right: $multi-step-icon-padding-right;
261
270
  padding-top: $multi-step-icon-padding-top;
271
+ position: relative;
262
272
 
263
273
  @include transition($multi-step-icon-transition);
264
274
 
@@ -270,12 +280,15 @@
270
280
  text-decoration: $multi-step-icon-hover-text-decoration;
271
281
  }
272
282
 
273
- &:focus {
274
- background-color: $multi-step-icon-focus-bg;
275
- box-shadow: $multi-step-icon-focus-box-shadow;
276
- color: $multi-step-icon-focus-color;
277
- outline: $multi-step-icon-focus-outline;
278
- text-decoration: $multi-step-icon-focus-text-decoration;
283
+ @at-root {
284
+ &.focus,
285
+ #{$focus-visible-selector} {
286
+ background-color: $multi-step-icon-focus-bg;
287
+ box-shadow: $multi-step-icon-focus-box-shadow;
288
+ color: $multi-step-icon-focus-color;
289
+ outline: $multi-step-icon-focus-outline;
290
+ text-decoration: $multi-step-icon-focus-text-decoration;
291
+ }
279
292
  }
280
293
 
281
294
  &[data-multi-step-icon]::before {
@@ -315,6 +328,30 @@
315
328
  }
316
329
  }
317
330
 
331
+ .multi-step-nav-center {
332
+ @include clay-css($multi-step-nav-center);
333
+
334
+ .multi-step-item {
335
+ $_item: setter(map-get($multi-step-nav-center, multi-step-item), ());
336
+
337
+ @include clay-css($_item);
338
+ }
339
+
340
+ .multi-step-divider {
341
+ @include clay-css(map-get($multi-step-nav-center, multi-step-divider));
342
+ }
343
+
344
+ .multi-step-indicator {
345
+ @include clay-css(
346
+ map-get($multi-step-nav-center, multi-step-indicator)
347
+ );
348
+ }
349
+
350
+ .multi-step-title {
351
+ @include clay-css(map-get($multi-step-nav-center, multi-step-title));
352
+ }
353
+ }
354
+
318
355
  .multi-step-nav-collapse-sm {
319
356
  @include media-breakpoint-down(sm) {
320
357
  flex-wrap: nowrap;
@@ -341,6 +378,29 @@
341
378
  }
342
379
  }
343
380
 
381
+ &.multi-step-nav-center {
382
+ .multi-step-item {
383
+ flex-grow: 0;
384
+ width: auto;
385
+ }
386
+
387
+ .multi-step-item-expand {
388
+ flex-grow: 1;
389
+ width: 75px;
390
+ }
391
+
392
+ .multi-step-divider {
393
+ left: auto;
394
+ margin-left: $multi-step-icon-size;
395
+ width: auto;
396
+ }
397
+
398
+ .multi-step-indicator {
399
+ left: auto;
400
+ transform: none;
401
+ }
402
+ }
403
+
344
404
  .active {
345
405
  &.multi-step-item {
346
406
  position: static;
@@ -360,6 +360,10 @@
360
360
 
361
361
  'da-dk': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80h480v352H16z"/><path fill="#FFF" d="M144 80h64v352h-64z"/><path fill="#FFF" d="M16 224h480.1v64H16z"/></svg>',
362
362
 
363
+ 'de-at': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#B0BEC9"/><path d="M15.5 2.51H.5v3.5h15v-3.5ZM15.5 10H.5v3.5h15V10Z" fill="#C8102E"/><path d="M15.5 6H.5v4h15V6Z" fill="#FFF"/></svg>',
364
+
365
+ 'de-ch': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#C0CFD8"/><path d="M15.5 2.5H.5v11h15v-11Z" fill="#DA291C"/><path d="M9 5H7v2H5v2h2v2h2V9h2V7H9V5Z" fill="#FFF"/></svg>',
366
+
363
367
  'de-de': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#4C4C4E" d="M16 80.3h480v112H16z"/><path fill="#FCD638" d="M16 320h480v112H16z"/><path fill="#E03232" d="M16 192h480v128H16z"/></svg>',
364
368
 
365
369
  'el-gr': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#0035A0" d="M16 80h480v39.1H16z"/><path fill="#FFF" d="M16 119.1h480v39.1H16zM16 197.3h480v39.1H16z"/><path fill="#0035A0" d="M16 236.4h480v39.1H16z"/><path fill="#FFF" d="M16 275.6h480v39.1H16z"/><path fill="#0035A0" d="M16 314.7h480v39.1H16z"/><path fill="#FFF" d="M16 353.8h480v39.1H16z"/><path fill="#0035A0" d="M16 392.9h480V432H16zM16.1 80H224v195.6H16.1z"/><path fill="#0035A0" d="M16 158.2h480v39.1H16z"/><path fill="#FFF" d="M100.2 80h39.1v195.6h-39.1z"/><path fill="#FFF" d="M16.5 158.2h207.8v39.1H16.5z"/></svg>',
@@ -388,8 +392,12 @@
388
392
 
389
393
  'fi-fi': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#FFF" d="M16 80h480v352H16z"/><path fill="#0035A0" d="M144 80h64v352h-64z"/><path fill="#0035A0" d="M16 224h480.1v64H16z"/></svg>',
390
394
 
395
+ 'fr-be': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#4C4C4E" d="M16 80h160v352H16z"/><path fill="#E03232" d="M336 80h160v352H336z"/><path fill="#FCD638" d="M176 80h160v352H176z"/></svg>',
396
+
391
397
  'fr-ca': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80h112v352H16zM384 80h112v352H384z"/><path fill="#FFF" d="M128 80h256v352H128z"/><path fill="#E03232" d="M301.9 300.3c0 3.6 4.1 13.4 4.1 13.4s-34.2-5.7-37.1-6.2-5.5-.5-5.4 5.5l2.4 18.2h-8.4l1.9-18.2c0-6-2.6-6-5.5-5.5l-37.1 6.4s4-9.7 4-13.4c0-4.7-10.1-11.4-21.1-21-11-9.7-18.6-14.6-18.6-15.7 0-1 7.8-.8 7.8-6.6 0-5.7-7.4-27.3-7.4-27.3s15.4 6 19.6 5.9c4.2 0 10.7-8.4 10.7-14.4 0 0 20.1 25.4 24.3 23.5 4.2-1.8-7.7-51.8-7.7-51.8s12 10.9 16.1 9.6c4.2-1.3 15.9-31.3 15.9-31.3s.1-.4.4-.4c.2 0 .4.4.4.4s11.8 29.9 16 31.1c4.2 1.3 16.1-9.7 16.1-9.7s-11.6 50-7.4 51.9c4.2 1.8 24.2-23.8 24.2-23.8 0 6 6.6 14.4 10.7 14.4 4.2-.1 19.5-6.1 19.5-6.1s-7.3 21.6-7.2 27.4c0 5.8 7.8 5.5 7.8 6.5s-7.6 6-18.5 15.8c-10.5 10-20.5 16.6-20.5 21.4z"/></svg>',
392
398
 
399
+ 'fr-ch': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#C0CFD8"/><path d="M15.5 2.5H.5v11h15v-11Z" fill="#DA291C"/><path d="M9 5H7v2H5v2h2v2h2V9h2V7H9V5Z" fill="#FFF"/></svg>',
400
+
393
401
  'fr-fr': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#0035A0" d="M16 80h160v352H16z"/><path fill="#E03232" d="M336 80h160v352H336z"/><path fill="#FFF" d="M176 80h160v352H176z"/></svg>',
394
402
 
395
403
  'gl-es': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#FFF" d="M16 80h480v352H16z"/><path fill="#0094CE" d="M256 295.7 441.9 432H496v-39.7L310.1 256 256 216.3 70.1 80H16v39.7L201.9 256z"/></svg>',
@@ -402,6 +410,8 @@
402
410
 
403
411
  'in-id': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80.6h480v176H16z"/><path fill="#FFF" d="M16 256h480v176H16z"/></svg>',
404
412
 
413
+ 'it-ch': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#C0CFD8"/><path d="M15.5 2.5H.5v11h15v-11Z" fill="#DA291C"/><path d="M9 5H7v2H5v2h2v2h2V9h2V7H9V5Z" fill="#FFF"/></svg>',
414
+
405
415
  'it-it': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#75BD4A" d="M16 80h160v352H16z"/><path fill="#E03232" d="M336 80h160v352H336z"/><path fill="#FFF" d="M176 80h160v352H176z"/></svg>',
406
416
 
407
417
  'iw-il': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#FFF" d="M16 80h480v352H16z"/><path fill="#0094CE" d="M16 96h480v64H16zM16 352h480v64H16zM256 192l32 47.7 32 47.8H192l32-47.8z"/><path fill="#0094CE" d="m256 320-32-47.7-32-47.8h128l-32 47.8z"/><circle fill="#FFF" cx="256" cy="256" r="16"/></svg>',
@@ -418,6 +428,8 @@
418
428
 
419
429
  'lt-lt': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#FCD638" d="M16 80.3h480v112H16z"/><path fill="#E03232" d="M16 320h480v112H16z"/><path fill="#75BD4A" d="M16 192h480v128H16z"/></svg>',
420
430
 
431
+ 'mk-mk': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#C0CFD8"/><path d="M15.5 2.5H.5v11h15v-11Z" fill="#CE2028"/><path d="M7.5 10 7 13.5h2L8.5 10h-1ZM8.5 6 9 2.5H7L7.5 6h1ZM10.01 8.5l5.49.5V7l-5.49.5v1ZM5.99 7.5.5 7v2l5.49-.5v-1ZM6.643 8.693.503 13.5h3.318l3.53-4.1-.708-.707ZM9.36 8.693 15.5 13.5h-3.317l-3.53-4.1.708-.707ZM9.36 7.307 15.5 2.5h-3.317l-3.53 4.1.708.707ZM6.64 7.307.5 2.5h3.317l3.53 4.1-.708.707Z" fill="#F9D616"/><path d="M8 9.75a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Z" fill="#F9D616" stroke="#CE2028"/></svg>',
432
+
421
433
  'ms-my': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 24"><path d="M0 0h32v24H0V0z" fill="#B0BEC9"/><path d="M1 1h30v22H1V1z" fill="#E03232"/><path d="M1 3h30v2H1V3zm0 4h30v2H1V7zm0 4h30v2H1v-2zm0 4h30v2H1v-2zm0 4h30v2H1v-2z" fill="#FFF"/><path d="M1 1h16v12H1V1z" fill="#00206A"/><path d="M5.6 7c0-1.9 1.4-3.5 3.2-3.9-.2 0-.5-.1-.8-.1-2.2 0-4 1.8-4 4s1.8 4 4 4c.3 0 .5 0 .8-.1C7 10.6 5.6 9 5.6 7z" fill="#FCD638"/><path d="M11.5 4.5c3.1 0 3.3 5 0 5-3.1 0-3.2-5 0-5z" fill="#FCD638"/></svg>',
422
434
 
423
435
  'nb-no': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80h480v352H16z"/><path fill="#FFF" d="M128 80h96v352h-96z"/><path fill="#FFF" d="M16 208h480.1v96H16z"/><path fill="#0035A0" d="M16 240h480.1v32H16z"/><path fill="#0035A0" d="M160 80h32v352h-32z"/></svg>',
@@ -426,6 +438,8 @@
426
438
 
427
439
  'nl-nl': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#B0BEC9" d="M0 64h512v384H0z"/><path fill="#E03232" d="M16 80.3h480v112H16z"/><path fill="#0035A0" d="M16 320h480v112H16z"/><path fill="#FFF" d="M16 192h480v128H16z"/></svg>',
428
440
 
441
+ 'no-no': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M16 2H0v12h16V2Z" fill="#B0BEC9"/><path d="M15.5 2.5H.5v11h15v-11Z" fill="#E03232"/><path d="M7 2.5H4v11h3v-11Z" fill="#FFF"/><path d="M15.503 6.5H.5v3h15.003v-3Z" fill="#FFF"/><path d="M15.503 7.5H.5v1h15.003v-1Z" fill="#0035A0"/><path d="M6 2.5H5v11h1v-11Z" fill="#0035A0"/></svg>',
442
+
429
443
  'pl-pl': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#FFF" d="M16 80.6h480v176H16z"/><path fill="#E03232" d="M16 256h480v176H16z"/></svg>',
430
444
 
431
445
  'pt-br': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#C0CFD8" d="M0 64h512v384H0z"/><path fill="#75BD4A" d="M16 80h480v352H16z"/><path fill="#FCD638" d="M256 416 32 256 256 96l224 160z"/><circle fill="#0035A0" cx="256" cy="256" r="80"/></svg>',
@@ -480,6 +494,8 @@
480
494
 
481
495
  'full-size': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline full-size-bottom-right" d="M384 382.804H224V448h160c35.2 0 64-28.8 64-64V224h-64v158.804z" fill="#{$color}"/><path class="lexicon-icon-outline full-size-top-left" d="M128 126.804h160v-64H128c-35.2 0-64 28.8-64 64V288h64V126.804z" fill="#{$color}"/><path class="lexicon-icon-outline full-size-top-right" d="M502.524 9.475A32.315 32.315 0 0 0 479.614 0H378.357c-17.96 0-32.457 14.496-32.386 32.385 0 8.91 3.606 17.042 9.475 22.91a32.338 32.338 0 0 0 22.91 9.476h23.618l-80.469 80.469 45.255 45.254 80.469-80.468v23.617c0 17.96 14.495 32.456 32.385 32.386 17.96 0 32.456-14.496 32.386-32.386V32.386c0-8.627-3.394-16.83-9.476-22.91z" fill="#{$color}"/><path class="lexicon-icon-outline fullsize-bottom-left" d="m145.24 321.505-80.469 80.47v-23.618c0-17.96-14.495-32.456-32.385-32.386-17.96 0-32.456 14.496-32.386 32.386v101.257c0 8.627 3.394 16.83 9.476 22.91A32.315 32.315 0 0 0 32.386 512h101.257c17.96 0 32.457-14.496 32.386-32.386 0-8.909-3.606-17.04-9.475-22.91a32.338 32.338 0 0 0-22.91-9.475h-23.618l80.469-80.469-45.255-45.255z" fill="#{$color}"/></svg>',
482
496
 
497
+ 'gallery': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="lexicon-icon-outline" d="M0 14.7a.7.7 0 0 1 .7-.7h2.6a.7.7 0 0 1 .7.7v.6a.7.7 0 0 1-.7.7H.7a.7.7 0 0 1-.7-.7v-.6Zm6 0a.7.7 0 0 1 .7-.7h2.6a.7.7 0 0 1 .7.7v.6a.7.7 0 0 1-.7.7H6.7a.7.7 0 0 1-.7-.7v-.6Zm6 0a.7.7 0 0 1 .7-.7h2.6a.7.7 0 0 1 .7.7v.6a.7.7 0 0 1-.7.7h-2.6a.7.7 0 0 1-.7-.7v-.6Zm2-2.7H2c-1 0-2-1.197-2-2.4V2.4C0 1.206 1 0 2 0h12c1 0 2 1.197 2 2.4v7.2c0 1.201-1 2.4-2 2.4ZM2 2v8h12V2H2Z" fill="#{$color}"/></svg>',
498
+
483
499
  'geolocation': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M64 191.3c0 106.3 96 224.5 192 320.7 96-96.2 192-214.4 192-320.7 0-257.1-384-253.1-384 0zm96 0c0-125.9 192-124.7 192 0 0 124-192 127.2-192 0z" fill="#{$color}"/></svg>',
484
500
 
485
501
  'globe-lines': '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path class="lexicon-icon-outline" d="M0 256.9c0-343.6 512-341.4 512 0 0 337.7-512 342.6-512 0zm420.2 99.7H379c5.2-25.9 8.5-53.8 9.4-83.1h58.9c-2.6 30.2-12.1 58.4-27.1 83.1zm27.1-116.3h-58.9c-.9-29.2-4.2-57.2-9.4-83.1h41.2c15 24.6 24.5 52.8 27.1 83.1zM272.6 65.2c14.6 1.3 28.7 4.1 42.2 8.5 7.9 13.9 15.4 31.2 21.4 50.3h-63.7V65.2zm-75.4 8.5c13.5-4.3 27.6-7.2 42.2-8.5V124h-63.7c6.1-19.1 13.6-36.3 21.5-50.3zm-80 50.3c9.9-10.4 21-19.7 33.1-27.7-3.3 8.8-6.4 18.1-9.2 27.7h-23.9zM64.7 240.3c2.6-30.2 12.1-58.5 27.1-83.1H133c-5.2 25.9-8.5 53.8-9.4 83.1H64.7zm27.1 116.3c-14.9-24.6-24.5-52.8-27.1-83.1h58.9c.9 29.2 4.2 57.2 9.4 83.1H91.8zm58.5 60.9c-12-8-23.1-17.3-33.1-27.7h23.9c2.8 9.6 5.8 18.8 9.2 27.7zm89.1 31c-14.6-1.3-28.7-4.1-42.2-8.5-7.9-13.9-15.4-31.2-21.4-50.3h63.7v58.8zm75.4-8.5c-13.5 4.3-27.6 7.2-42.2 8.5v-58.7h63.7c-6.1 19-13.6 36.3-21.5 50.2zm46.9-22.5c3.3-8.8 6.4-18.1 9.2-27.7h23.9c-9.9 10.4-21 19.7-33.1 27.7zm0-321.2c12 8 23.1 17.3 33.1 27.7h-23.9c-2.8-9.6-5.8-18.9-9.2-27.7zm-6.5 177.2c-1 29.7-4.5 57.7-10.1 83.1h-72.5v-83.1h82.6zm-10.1-116.3c5.6 25.4 9.1 53.4 10.1 83.1h-82.6v-83.1h72.5zm-188.3 83.1c1-29.7 4.5-57.7 10.1-83.1h72.5v83.1h-82.6zm10.1 116.3c-5.6-25.4-9.1-53.4-10.1-83.1h82.6v83.1h-72.5z" clip-rule="evenodd" fill-rule="evenodd" fill="#{$color}"/></svg>',
@@ -938,6 +938,40 @@
938
938
  }
939
939
  }
940
940
 
941
+ &.collapse-icon {
942
+ $_collapse-icon: setter(map-get($map, collapse-icon), ());
943
+
944
+ @include clay-css($_collapse-icon);
945
+
946
+ .collapse-icon-closed {
947
+ @include clay-css(
948
+ map-get($_collapse-icon, collapse-icon-closed)
949
+ );
950
+ }
951
+
952
+ .collapse-icon-open {
953
+ @include clay-css(
954
+ map-get($_collapse-icon, collapse-icon-open)
955
+ );
956
+ }
957
+ }
958
+
959
+ .autofit-row {
960
+ $_autofit-row: setter(map-get($map, autofit-row), ());
961
+
962
+ @include clay-css($_autofit-row);
963
+
964
+ .autofit-col {
965
+ @include clay-css(map-get($_autofit-row, autofit-col));
966
+ }
967
+
968
+ .autofit-col-expand {
969
+ @include clay-css(
970
+ map-get($_autofit-row, autofit-col-expand)
971
+ );
972
+ }
973
+ }
974
+
941
975
  @if (map-get($c-inner, enabled)) {
942
976
  > .c-inner {
943
977
  @include clay-css($c-inner);
@@ -931,6 +931,10 @@
931
931
  }
932
932
  }
933
933
 
934
+ .nav-item {
935
+ @include clay-css(map-get($map, nav-item));
936
+ }
937
+
934
938
  .nav-link {
935
939
  $_nav-link: setter(map-get($map, nav-link), ());
936
940
  $_nav-link: map-deep-merge($link, $_nav-link);
@@ -942,6 +946,14 @@
942
946
  }
943
947
  }
944
948
 
949
+ .menubar-actions-1 {
950
+ @include clay-css(map-get($map, menubar-actions-1));
951
+ }
952
+
953
+ .menubar-action {
954
+ @include clay-css(map-get($map, menubar-action));
955
+ }
956
+
945
957
  $_media-breakpoint-down: map-get($map, media-breakpoint-down);
946
958
  $_media-breakpoint-up: map-get($map, media-breakpoint-up);
947
959
 
@@ -87,6 +87,7 @@ $blue-l1: #338fff !default;
87
87
  $blue-l2: #66abff !default;
88
88
  $blue-l3: #97c5ff !default;
89
89
  $blue-l4: #cce3ff !default;
90
+ $blue-l5: #e5f1ff !default;
90
91
 
91
92
  $indigo-d4: #0017e5 !default;
92
93
  $indigo-d3: #001aff !default;
@@ -97,6 +98,7 @@ $indigo-l1: #808cff !default;
97
98
  $indigo-l2: #99a3ff !default;
98
99
  $indigo-l3: #b2baff !default;
99
100
  $indigo-l4: #ccd1ff !default;
101
+ $indigo-l5: #e5e8ff !default;
100
102
 
101
103
  $purple-d4: #7700cc !default;
102
104
  $purple-d3: #8600e6 !default;
@@ -107,6 +109,7 @@ $purple-l1: #bf66ff !default;
107
109
  $purple-l2: #ca80ff !default;
108
110
  $purple-l3: #d499ff !default;
109
111
  $purple-l4: #dfb3ff !default;
112
+ $purple-l5: #f2e5ff !default;
110
113
 
111
114
  $pink-d4: #800048 !default;
112
115
  $pink-d3: #990057 !default;
@@ -117,6 +120,7 @@ $pink-l1: #ff4db2 !default;
117
120
  $pink-l2: #ff80c8 !default;
118
121
  $pink-l3: #ff99d3 !default;
119
122
  $pink-l4: #ffb3de !default;
123
+ $pink-l5: #ffe5f4 !default;
120
124
 
121
125
  $red-d4: #800000 !default;
122
126
  $red-d3: #990000 !default;
@@ -127,6 +131,7 @@ $red-l1: #ff4d4d !default;
127
131
  $red-l2: #ff6666 !default;
128
132
  $red-l3: #ff8080 !default;
129
133
  $red-l4: #ff9999 !default;
134
+ $red-l5: #ffe5e5 !default;
130
135
 
131
136
  $orange-d4: #662700 !default;
132
137
  $orange-d3: #803100 !default;
@@ -137,6 +142,7 @@ $orange-l1: #ff6200 !default;
137
142
  $orange-l2: #ff8133 !default;
138
143
  $orange-l3: #ffa166 !default;
139
144
  $orange-l4: #ffc099 !default;
145
+ $orange-l5: #fff0e5 !default;
140
146
 
141
147
  $yellow-d4: #997000 !default;
142
148
  $yellow-d3: #b38900 !default;
@@ -147,6 +153,7 @@ $yellow-l1: #ffc933 !default;
147
153
  $yellow-l2: #ffd666 !default;
148
154
  $yellow-l3: #ffe499 !default;
149
155
  $yellow-l4: #fff1cc !default;
156
+ $yellow-l5: #fff8e5 !default;
150
157
 
151
158
  $green-d4: #162d06 !default;
152
159
  $green-d3: #22430a !default;
@@ -157,6 +164,7 @@ $green-l1: #53a117 !default;
157
164
  $green-l2: #67c91d !default;
158
165
  $green-l3: #81e236 !default;
159
166
  $green-l4: #9de963 !default;
167
+ $green-l5: #f1fce9 !default;
160
168
 
161
169
  $teal-d4: #092a25 !default;
162
170
  $teal-d3: #0d3f37 !default;
@@ -167,6 +175,7 @@ $teal-l1: #24a892 !default;
167
175
  $teal-l2: #42d7be !default;
168
176
  $teal-l3: #6ce0cc !default;
169
177
  $teal-l4: #96e9db !default;
178
+ $teal-l5: #eafbf8 !default;
170
179
 
171
180
  $cyan-d4: #00334d !default;
172
181
  $cyan-d3: #004466 !default;
@@ -177,6 +186,7 @@ $cyan-l1: #0099e6 !default;
177
186
  $cyan-l2: #33bbff !default;
178
187
  $cyan-l3: #66ccff !default;
179
188
  $cyan-l4: #99ddff !default;
189
+ $cyan-l5: #e5f6ff !default;
180
190
 
181
191
  $colors: () !default;
182
192
  $colors: map-merge(
@@ -1,3 +1,125 @@
1
+ $menubar-primary: () !default;
2
+ $menubar-primary: map-deep-merge(
3
+ (
4
+ nav-item: (
5
+ position: relative,
6
+ ),
7
+ nav-link: (
8
+ border-radius: 0,
9
+ color: $gray-900,
10
+ line-height: 24px,
11
+ transition: #{color 0.15s ease-in-out,
12
+ background-color 0.15s ease-in-out,
13
+ border-color 0.15s ease-in-out,
14
+ box-shadow 0.15s ease-in-out},
15
+ before: (
16
+ bottom: 0,
17
+ content: '',
18
+ display: block,
19
+ left: 0,
20
+ position: absolute,
21
+ top: 0,
22
+ transition: $transition-base,
23
+ ),
24
+ hover: (
25
+ background-color: $primary-l3,
26
+ color: $gray-900,
27
+ letter-spacing: 0,
28
+ before: (
29
+ background: $secondary-l0,
30
+ width: 0.125rem,
31
+ ),
32
+ ),
33
+ focus: (
34
+ background-color: c-unset,
35
+ box-shadow: none,
36
+ color: $gray-900,
37
+ outline: 0,
38
+ after: (
39
+ bottom: 0,
40
+ box-shadow: $component-focus-inset-box-shadow,
41
+ content: '',
42
+ display: block,
43
+ left: 0,
44
+ pointer-events: none,
45
+ position: absolute,
46
+ right: 0,
47
+ top: 0,
48
+ ),
49
+ ),
50
+ active-class: (
51
+ background-color: $primary-l3,
52
+ color: $gray-900,
53
+ font-weight: $font-weight-semi-bold,
54
+ before: (
55
+ background-color: $primary,
56
+ width: 0.375rem,
57
+ ),
58
+ focus: (
59
+ before: (
60
+ display: none,
61
+ ),
62
+ ),
63
+ ),
64
+ disabled: (
65
+ background-color: transparent,
66
+ box-shadow: none,
67
+ font-weight: $font-weight-normal,
68
+ before: (
69
+ content: none,
70
+ ),
71
+ after: (
72
+ content: none,
73
+ ),
74
+ ),
75
+ show: (
76
+ background-color: c-unset,
77
+ box-shadow: c-unset,
78
+ color: $gray-900,
79
+ before: (
80
+ background-color: transparent,
81
+ width: 0,
82
+ ),
83
+ hover: (
84
+ before: (
85
+ background-color: $secondary-l0,
86
+ width: 0.125rem,
87
+ ),
88
+ ),
89
+ ),
90
+ autofit-row: (
91
+ align-items: center,
92
+ margin-left: -0.25rem,
93
+ margin-right: -0.25rem,
94
+ autofit-col: (
95
+ padding-left: 0.25rem,
96
+ padding-right: 0.25rem,
97
+ ),
98
+ ),
99
+ collapse-icon: (
100
+ font-size: 0.75rem,
101
+ font-weight: $font-weight-semi-bold,
102
+ text-transform: uppercase,
103
+ collapse-icon-closed: (
104
+ top: calc(22px - (1em / 2)),
105
+ ),
106
+ collapse-icon-open: (
107
+ top: calc(22px - (1em / 2)),
108
+ ),
109
+ ),
110
+ ),
111
+ menubar-actions-1: (
112
+ padding-right: 4rem,
113
+ ),
114
+ menubar-action: (
115
+ position: absolute,
116
+ top: 0.625rem,
117
+ right: 2rem,
118
+ ),
119
+ ),
120
+ $menubar-primary
121
+ );
122
+
1
123
  // Menubar Vertical MD
2
124
 
3
125
  $menubar-vertical-expand-md: () !default;
@@ -96,6 +96,32 @@ $multi-step-item-margin-bottom: 10px !default;
96
96
  $multi-step-item-width: 75px !default;
97
97
  $multi-step-item-fixed-width: 150px !default;
98
98
 
99
+ $multi-step-nav-center: () !default;
100
+ $multi-step-nav-center: map-deep-merge(
101
+ (
102
+ padding: 0,
103
+ text-align: center,
104
+ multi-step-item: (
105
+ flex-grow: 1,
106
+ width: $multi-step-item-width,
107
+ ),
108
+ multi-step-divider: (
109
+ left: 50%,
110
+ margin-left: 1rem,
111
+ width: calc(100% - #{$multi-step-icon-size}),
112
+ ),
113
+ multi-step-indicator: (
114
+ left: 50%,
115
+ transform: translateX(-50%),
116
+ ),
117
+ multi-step-title: (
118
+ margin-left: 12.5%,
119
+ max-width: 75%,
120
+ ),
121
+ ),
122
+ $multi-step-nav-center
123
+ );
124
+
99
125
  $multi-step-title-center: () !default;
100
126
  $multi-step-title-center: map-deep-merge(
101
127
  (
@@ -11,12 +11,14 @@ $nav-link-disabled-cursor: $disabled-cursor !default;
11
11
  $nav-link: () !default;
12
12
  $nav-link: map-deep-merge(
13
13
  (
14
+ cursor: pointer,
14
15
  display: block,
15
16
  padding-bottom: $nav-link-padding-y,
16
17
  padding-left: $nav-link-padding-x,
17
18
  padding-right: $nav-link-padding-x,
18
19
  padding-top: $nav-link-padding-y,
19
20
  position: relative,
21
+ user-select: none,
20
22
  hover: (
21
23
  text-decoration: none,
22
24
  ),
@@ -402,6 +402,106 @@ $sticker-dark: map-deep-merge(
402
402
  $sticker-dark
403
403
  );
404
404
 
405
+ $sticker-outline-0: () !default;
406
+ $sticker-outline-0: map-deep-merge(
407
+ (
408
+ background-color: $light,
409
+ border: 1px solid $dark,
410
+ color: $dark,
411
+ ),
412
+ $sticker-outline-0
413
+ );
414
+
415
+ $sticker-outline-1: () !default;
416
+ $sticker-outline-1: map-deep-merge(
417
+ (
418
+ background-color: $purple-l5,
419
+ border: 1px solid $purple,
420
+ color: $purple,
421
+ ),
422
+ $sticker-outline-1
423
+ );
424
+
425
+ $sticker-outline-2: () !default;
426
+ $sticker-outline-2: map-deep-merge(
427
+ (
428
+ background-color: $yellow-l5,
429
+ border: 1px solid $yellow-d3,
430
+ color: $yellow-d3,
431
+ ),
432
+ $sticker-outline-2
433
+ );
434
+
435
+ $sticker-outline-3: () !default;
436
+ $sticker-outline-3: map-deep-merge(
437
+ (
438
+ background-color: $green-l5,
439
+ border: 1px solid $green,
440
+ color: $green,
441
+ ),
442
+ $sticker-outline-3
443
+ );
444
+
445
+ $sticker-outline-4: () !default;
446
+ $sticker-outline-4: map-deep-merge(
447
+ (
448
+ background-color: $red-l5,
449
+ border: 1px solid $red,
450
+ color: $red,
451
+ ),
452
+ $sticker-outline-4
453
+ );
454
+
455
+ $sticker-outline-5: () !default;
456
+ $sticker-outline-5: map-deep-merge(
457
+ (
458
+ background-color: $orange-l5,
459
+ border: 1px solid $orange,
460
+ color: $orange,
461
+ ),
462
+ $sticker-outline-5
463
+ );
464
+
465
+ $sticker-outline-6: () !default;
466
+ $sticker-outline-6: map-deep-merge(
467
+ (
468
+ background-color: $teal-l5,
469
+ border: 1px solid $teal,
470
+ color: $teal,
471
+ ),
472
+ $sticker-outline-6
473
+ );
474
+
475
+ $sticker-outline-7: () !default;
476
+ $sticker-outline-7: map-deep-merge(
477
+ (
478
+ background-color: $cyan-l5,
479
+ border: 1px solid $cyan,
480
+ color: $cyan,
481
+ ),
482
+ $sticker-outline-7
483
+ );
484
+
485
+ $sticker-outline-8: () !default;
486
+ $sticker-outline-8: map-deep-merge(
487
+ (
488
+ background-color: $pink-l5,
489
+ border: 1px solid $pink,
490
+ color: $pink-d4,
491
+ ),
492
+ $sticker-outline-8
493
+ );
494
+
495
+ $sticker-outline-9: () !default;
496
+ $sticker-outline-9: map-deep-merge(
497
+ (
498
+ background-color: $white,
499
+ border: 1px solid $dark-l2,
500
+ color: $dark-l2,
501
+ ),
502
+ $sticker-outline-9
503
+ );
504
+
405
505
  $sticker-palette: () !default;
406
506
  $sticker-palette: map-deep-merge(
407
507
  (
@@ -413,6 +513,16 @@ $sticker-palette: map-deep-merge(
413
513
  danger: $sticker-danger,
414
514
  light: $sticker-light,
415
515
  dark: $sticker-dark,
516
+ '.sticker-outline-0': $sticker-outline-0,
517
+ '.sticker-outline-1': $sticker-outline-1,
518
+ '.sticker-outline-2': $sticker-outline-2,
519
+ '.sticker-outline-3': $sticker-outline-3,
520
+ '.sticker-outline-4': $sticker-outline-4,
521
+ '.sticker-outline-5': $sticker-outline-5,
522
+ '.sticker-outline-6': $sticker-outline-6,
523
+ '.sticker-outline-7': $sticker-outline-7,
524
+ '.sticker-outline-8': $sticker-outline-8,
525
+ '.sticker-outline-9': $sticker-outline-9,
416
526
  ),
417
527
  $sticker-palette
418
528
  );
@@ -497,7 +497,7 @@ $toggle-switch-sizes: map-deep-merge(
497
497
  toggle-switch-sm: (
498
498
  simple-toggle-switch: (
499
499
  toggle-switch-label: (
500
- max-width: calc(100% - 38px),
500
+ max-width: calc(100% - 34px),
501
501
  ),
502
502
  ),
503
503
  toggle-switch-check: (
@@ -515,9 +515,8 @@ $toggle-switch-sizes: map-deep-merge(
515
515
  ),
516
516
  toggle-switch-handle: (
517
517
  min-width: 30px,
518
- max-width: 30px,
519
518
  after: (
520
- margin-left: 38px,
519
+ margin-left: 34px,
521
520
  ),
522
521
  ),
523
522
  toggle-switch-icon: (