@clayui/css 3.160.0 → 3.161.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 (75) hide show
  1. package/lib/css/atlas.css +1581 -1581
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1283 -1283
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +7 -7
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/books-brush.svg +9 -0
  8. package/lib/images/icons/icons.svg +1 -1
  9. package/package.json +1 -1
  10. package/src/images/icons/books-brush.svg +9 -0
  11. package/src/images/icons/icons.svg +1 -1
  12. package/src/scss/_license-text.scss +1 -1
  13. package/src/scss/atlas/_variables.scss +6 -4
  14. package/src/scss/atlas/variables/_globals.scss +10 -10
  15. package/src/scss/atlas-custom-properties/_variables.scss +68 -0
  16. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1212 -0
  17. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +62 -0
  18. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +28 -0
  19. package/src/scss/atlas-custom-properties/variables/_badges.scss +352 -0
  20. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +205 -0
  21. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1498 -0
  22. package/src/scss/atlas-custom-properties/variables/_c-root.scss +353 -0
  23. package/src/scss/atlas-custom-properties/variables/_cards.scss +1217 -0
  24. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +647 -0
  25. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1127 -0
  26. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +701 -0
  27. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +252 -0
  28. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1250 -0
  29. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +75 -0
  30. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +104 -0
  31. package/src/scss/atlas-custom-properties/variables/_forms.scss +2342 -0
  32. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +50 -0
  33. package/src/scss/atlas-custom-properties/variables/_globals.scss +846 -0
  34. package/src/scss/atlas-custom-properties/variables/_icons.scss +73 -0
  35. package/src/scss/atlas-custom-properties/variables/_images.scss +14 -0
  36. package/src/scss/atlas-custom-properties/variables/_labels.scss +1485 -0
  37. package/src/scss/atlas-custom-properties/variables/_links.scss +482 -0
  38. package/src/scss/atlas-custom-properties/variables/_list-group.scss +493 -0
  39. package/src/scss/atlas-custom-properties/variables/_loaders.scss +243 -0
  40. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +153 -0
  41. package/src/scss/atlas-custom-properties/variables/_menubar.scss +836 -0
  42. package/src/scss/atlas-custom-properties/variables/_modals.scss +650 -0
  43. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +324 -0
  44. package/src/scss/atlas-custom-properties/variables/_navbar.scss +200 -0
  45. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +473 -0
  46. package/src/scss/atlas-custom-properties/variables/_navs.scss +547 -0
  47. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1101 -0
  48. package/src/scss/atlas-custom-properties/variables/_panels.scss +567 -0
  49. package/src/scss/atlas-custom-properties/variables/_popovers.scss +565 -0
  50. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +142 -0
  51. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +27 -0
  52. package/src/scss/atlas-custom-properties/variables/_range.scss +267 -0
  53. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  54. package/src/scss/atlas-custom-properties/variables/_resizer.scss +26 -0
  55. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  56. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +4 -0
  57. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +579 -0
  58. package/src/scss/atlas-custom-properties/variables/_slideout.scss +379 -0
  59. package/src/scss/atlas-custom-properties/variables/_stickers.scss +578 -0
  60. package/src/scss/atlas-custom-properties/variables/_tables.scss +1277 -0
  61. package/src/scss/atlas-custom-properties/variables/_tbar.scss +636 -0
  62. package/src/scss/atlas-custom-properties/variables/_time.scss +142 -0
  63. package/src/scss/atlas-custom-properties/variables/_timelines.scss +43 -0
  64. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +706 -0
  65. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +332 -0
  66. package/src/scss/atlas-custom-properties/variables/_treeview.scss +369 -0
  67. package/src/scss/atlas-custom-properties/variables/_type.scss +194 -0
  68. package/src/scss/atlas-custom-properties/variables/_utilities.scss +1016 -0
  69. package/src/scss/atlas-variables.scss +2 -0
  70. package/src/scss/atlas.scss +2 -0
  71. package/src/scss/base-variables.scss +2 -0
  72. package/src/scss/base.scss +2 -0
  73. package/src/scss/functions/_global-functions.scss +6 -4
  74. package/src/scss/functions/_lx-icons-generated.scss +2 -0
  75. package/src/scss/variables/_globals.scss +8 -8
@@ -10,6 +10,8 @@
10
10
 
11
11
  @import '_variables';
12
12
 
13
+ @import 'atlas-custom-properties/_variables';
14
+
13
15
  @import '_mixins';
14
16
 
15
17
  // INSERT CUSTOM VARS
@@ -10,6 +10,8 @@
10
10
 
11
11
  @import '_variables';
12
12
 
13
+ @import 'atlas-custom-properties/_variables';
14
+
13
15
  @import '_mixins';
14
16
 
15
17
  @import '_components';
@@ -8,6 +8,8 @@
8
8
 
9
9
  @import '_variables';
10
10
 
11
+ @import 'atlas-custom-properties/_variables';
12
+
11
13
  @import '_mixins';
12
14
 
13
15
  // INSERT CUSTOM VARS
@@ -8,6 +8,8 @@
8
8
 
9
9
  @import '_variables';
10
10
 
11
+ @import 'atlas-custom-properties/_variables';
12
+
11
13
  @import '_mixins';
12
14
 
13
15
  @import '_components';
@@ -25,12 +25,14 @@
25
25
  $toggle-switch-padding,
26
26
  $label-spacer-x: 8px
27
27
  ) {
28
- @if ($toggle-switch-padding < 0) {
29
- $toggle-switch-width: $toggle-switch-width +
30
- abs($toggle-switch-padding);
28
+ @if not(is-css-var($toggle-switch-padding)) {
29
+ @if ($toggle-switch-padding < 0) {
30
+ $toggle-switch-width: $toggle-switch-width +
31
+ abs($toggle-switch-padding);
32
+ }
31
33
  }
32
34
 
33
- @return $toggle-switch-width + $label-spacer-x;
35
+ @return calc(#{$toggle-switch-width} + #{$label-spacer-x});
34
36
  }
35
37
 
36
38
  /// A function that combines two maps. It adds new key value pairs to the end of the map.
@@ -118,6 +118,8 @@
118
118
 
119
119
  'bookmarks': '<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline" clip-rule="evenodd" d="M235.363 338.109c11.92-10.059 29.355-10.059 41.275 0l107.363 90.599V64h-256v364.708l107.362-90.599Zm20.638 66.946 113.271 95.586c31.264 26.382 78.729 4.57 78.729-36.641V64c0-35.793-28.654-64-64-64h-256C92.655 0 64 28.207 64 64v400c0 41.211 47.466 63.023 78.73 36.641l113.271-95.586Z" fill-rule="evenodd" fill="#{$color}"/></svg>',
120
120
 
121
+ 'books-brush': '<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline" d="M3.992 14c0 .553-.446 1-.998 1H.998A.998.998 0 0 1 0 14v-1h3.992v1Zm4.989 0c0 .553-.446 1-.998 1H5.987a.998.998 0 0 1-.998-1v-1h3.992v1Zm4.523-8.549c.63.887 1.287 2.19 1.81 3.695 1.034 2.967.694 5.73.301 5.85-.393.118-2.409-1.931-3.442-4.898-.524-1.504-.816-2.918-.864-3.982a1.75 1.75 0 0 0 1.244.086c.427-.13.758-.407.95-.75ZM3.992 12H0V4h3.992v8Zm4.989 0H4.99V4h3.992v8Zm2.887-10.85c-.188.937.703.892 1.215 1.717.067.108.13.245.19.417.282.81-.193 1.679-1.06 1.942-.868.263-1.8-.18-2.082-.99a1.46 1.46 0 0 1-.048-.173 2.408 2.408 0 0 1 .214-1.787A2.708 2.708 0 0 1 11.898 1l-.03.15ZM2.994 1c.552 0 .998.447.998 1v1H0V2c0-.553.446-1 .998-1h1.996Zm4.989 0c.552 0 .998.447.998 1v1H4.99V2c0-.553.446-1 .998-1h1.996Z" fill="#{$color}"/></svg>',
122
+
121
123
  'books': '<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline books-1-spine-top" d="M96.1 32h-64C14.4 32 .1 46.3.1 64v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine-bottom" d="M.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32H.1v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-1-spine" fill="#{$color}" d="M.1 128h128v256H.1z"/><path class="lexicon-icon-outline books-2-spine-top" d="M256.1 32h-64c-17.7 0-32 14.3-32 32v32h128V64c0-17.7-14.3-32-32-32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine-bottom" d="M160.1 448c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32v-32h-128v32z" fill="#{$color}"/><path class="lexicon-icon-outline books-2-spine" fill="#{$color}" d="M160.1 128h128v256h-128z"/><path class="lexicon-icon-outline books-3-spine-top" d="m359.2 35.2-31 8.1c-17.1 4.5-27.4 21.9-22.9 39l8.1 31 92.9-24.2-8.1-31c-4.5-17.1-21.9-27.4-39-22.9z" fill="#{$color}"/><path class="lexicon-icon-outline books-3-spine" fill="#{$color}" d="m321.422 144.212 92.909-24.172 64.46 247.756-92.908 24.173z"/><path class="lexicon-icon-outline books-3-spine-bottom" d="M402 453.9c4.5 17.1 21.9 27.4 39 22.9l31-8.1c17.1-4.5 27.4-21.9 22.9-39l-8.1-31-92.9 24.2 8.1 31z" fill="#{$color}"/></svg>',
122
124
 
123
125
  'border-style': '<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path class="lexicon-icon-outline border-style-rectangle-1" d="M64.001 96c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32h384c17.674 0 32-14.327 32-32 0-17.673-14.326-32-32-32h-384Z" fill="#{$color}"/><path class="lexicon-icon-outline border-style-rectangle-2" d="M64.001 224c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32h128c17.674 0 32-14.327 32-32 0-17.673-14.326-32-32-32h-128Z" fill="#{$color}"/><path class="lexicon-icon-outline border-style-rectangle-3" d="M32.002 384c0-17.673 14.326-32 32-32H128c17.674 0 32 14.327 32 32 0 17.673-14.326 32-32 32h-64c-17.673 0-32-14.327-32-32Z" fill="#{$color}"/><path class="lexicon-icon-outline border-style-rectangle-4" d="M320.001 224c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32h128c17.674 0 32-14.327 32-32 0-17.673-14.326-32-32-32h-128Z" fill="#{$color}"/><path class="lexicon-icon-outline border-style-rectangle-5" d="M192.001 384c0-17.673 14.327-32 32-32h64c17.674 0 32 14.327 32 32 0 17.673-14.326 32-32 32h-64c-17.673 0-32-14.327-32-32Z" fill="#{$color}"/><path class="lexicon-icon-outline border-style-rectangle-6" d="M384.001 352c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32h64c17.674 0 32-14.327 32-32 0-17.673-14.326-32-32-32h-64Z" fill="#{$color}"/></svg>',
@@ -345,14 +345,14 @@ $spacers: () !default;
345
345
  $spacers: map-deep-merge(
346
346
  (
347
347
  0: 0rem,
348
- 1: $spacer * 0.25,
349
- 2: $spacer * 0.5,
350
- 3: $spacer,
351
- 4: $spacer * 1.5,
352
- 5: $spacer * 3,
353
- 6: $spacer * 4.5,
354
- 7: $spacer * 6,
355
- 8: $spacer * 7.5,
348
+ 1: calc(#{$spacer} * 0.25),
349
+ 2: calc(#{$spacer} * 0.5),
350
+ 3: calc(#{$spacer}),
351
+ 4: calc(#{$spacer} * 1.5),
352
+ 5: calc(#{$spacer} * 3),
353
+ 6: calc(#{$spacer} * 4.5),
354
+ 7: calc(#{$spacer} * 6),
355
+ 8: calc(#{$spacer} * 7.5),
356
356
  ),
357
357
  $spacers
358
358
  );