@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,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM11.83 6.49 8.41 10.47C8.18 10.73 7.82 10.73 7.59 10.47L4.17 6.49C3.81 6.06 4.07 5.33 4.58 5.33H11.42C11.93 5.34 12.19 6.06 11.83 6.49Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM9.51 11.83 5.53 8.41C5.27 8.18 5.27 7.82 5.53 7.59L9.51 4.17C9.94 3.81 10.67 4.07 10.67 4.58V11.42C10.66 11.93 9.94 12.19 9.51 11.83Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM6.49 4.17 10.47 7.59C10.73 7.82 10.73 8.18 10.47 8.41L6.49 11.83C6.06 12.19 5.33 11.93 5.33 11.42V4.58C5.34 4.07 6.06 3.81 6.49 4.17Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM11.83 9.51 8.41 5.53C8.18 5.27 7.82 5.27 7.59 5.53L4.17 9.51C3.81 9.94 4.07 10.67 4.58 10.67H11.42C11.93 10.66 12.19 9.94 11.83 9.51Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <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" />
9
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0"?>
1
+ <?xml version="1.0"?>
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "link": "npm link",
57
57
  "prepublish": "yarn compile"
58
58
  },
59
- "version": "3.160.0"
59
+ "version": "3.162.0"
60
60
  }
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM11.83 6.49 8.41 10.47C8.18 10.73 7.82 10.73 7.59 10.47L4.17 6.49C3.81 6.06 4.07 5.33 4.58 5.33H11.42C11.93 5.34 12.19 6.06 11.83 6.49Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM9.51 11.83 5.53 8.41C5.27 8.18 5.27 7.82 5.53 7.59L9.51 4.17C9.94 3.81 10.67 4.07 10.67 4.58V11.42C10.66 11.93 9.94 12.19 9.51 11.83Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM6.49 4.17 10.47 7.59C10.73 7.82 10.73 8.18 10.47 8.41L6.49 11.83C6.06 12.19 5.33 11.93 5.33 11.42V4.58C5.34 4.07 6.06 3.81 6.49 4.17Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <path class="lexicon-icon-outline" clip-rule="evenodd" d="M3.33 0h9.34A3.33 3.33 0 0 1 16 3.33v9.34A3.33 3.33 0 0 1 12.67 16H3.33A3.33 3.33 0 0 1 0 12.67V3.33A3.33 3.33 0 0 1 3.33 0ZM11.83 9.51 8.41 5.53C8.18 5.27 7.82 5.27 7.59 5.53L4.17 9.51C3.81 9.94 4.07 10.67 4.58 10.67H11.42C11.93 10.66 12.19 9.94 11.83 9.51Z" fill-rule="evenodd" />
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <!--
2
+ * SPDX-FileCopyrightText: © 2026 Liferay, Inc. <https://liferay.com>
3
+ * SPDX-FileCopyrightText: © 2026 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
4
+ *
5
+ * SPDX-License-Identifier: BSD-3-Clause
6
+ -->
7
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
8
+ <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" />
9
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0"?>
1
+ <?xml version="1.0"?>
@@ -51,6 +51,7 @@
51
51
  @import 'components/_dual-listbox';
52
52
  @import 'components/_form-validation';
53
53
  @import 'components/_input-groups';
54
+ @import 'components/_keyboard-arrows-indicator';
54
55
  @import 'components/_list-group';
55
56
  @import 'components/_modals';
56
57
  @import 'components/_multi-step-nav';
@@ -84,5 +85,6 @@
84
85
  @import 'components/_utilities-functional-important';
85
86
 
86
87
  @import 'components/_loaders';
88
+ @import 'components/_focus-ring';
87
89
 
88
90
  @import 'components/_print';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Clay 3.160.0
2
+ * Clay 3.162.0
3
3
  *
4
4
  * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
5
5
  * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
@@ -1,9 +1,10 @@
1
1
  @import 'variables/_globals';
2
2
 
3
+ @import 'variables/_buttons';
4
+
3
5
  @import 'variables/_alerts';
4
6
  @import 'variables/_badges';
5
7
  @import 'variables/_breadcrumbs';
6
- @import 'variables/_buttons';
7
8
  @import 'variables/_labels';
8
9
  @import 'variables/_stickers';
9
10
 
@@ -22,18 +23,17 @@
22
23
  @import 'variables/_time';
23
24
 
24
25
  @import 'variables/_date-picker';
25
- @import 'variables/_icons';
26
26
  @import 'variables/_list-group';
27
27
  @import 'variables/_loaders';
28
28
  @import 'variables/_modals';
29
29
  @import 'variables/_multi-step-nav';
30
30
  @import 'variables/_navs';
31
31
 
32
+ @import 'variables/_icons';
33
+
32
34
  @import 'variables/_menubar';
33
35
  @import 'variables/_navbar';
34
36
 
35
- @import 'variables/_c-root';
36
-
37
37
  @import 'variables/_application-bar';
38
38
  @import 'variables/_management-bar';
39
39
  @import 'variables/_navigation-bar';
@@ -52,3 +52,5 @@
52
52
  @import 'variables/_type';
53
53
 
54
54
  @import 'variables/_utilities';
55
+
56
+ @import 'variables/_c-root';
@@ -110,7 +110,9 @@ $input-padding-y-sm: 0.25rem !default;
110
110
  $form-group-margin-bottom: 1.5rem !default; // 24px
111
111
  $form-group-margin-bottom-mobile: 1rem !default; // 16px
112
112
 
113
- $form-group-sm-input-label-margin-bottom: 0.1875rem !default; // 3px
113
+ $form-group-sm-input-label-font-size: 0.75rem !default; // 12px
114
+ $form-group-sm-input-label-line-height: 1.5 !default; // 150%
115
+ $form-group-sm-input-label-margin-bottom: 0.125rem !default; // 2px
114
116
  $form-group-sm-item-label-spacer: 1.5625rem !default; // 25px
115
117
 
116
118
  // Input Label (<label>)
@@ -347,16 +347,16 @@ $spacers: () !default;
347
347
  $spacers: map-deep-merge(
348
348
  (
349
349
  0: 0,
350
- 1: $spacer * 0.25,
351
- 2: $spacer * 0.5,
352
- 3: $spacer * 1,
353
- 4: $spacer * 1.5,
354
- 5: $spacer * 3,
355
- 6: $spacer * 4.5,
356
- 7: $spacer * 6,
357
- 8: $spacer * 7.5,
358
- 9: $spacer * 9,
359
- 10: $spacer * 10,
350
+ 1: calc(#{$spacer} * 0.25),
351
+ 2: calc(#{$spacer} * 0.5),
352
+ 3: calc(#{$spacer} * 1),
353
+ 4: calc(#{$spacer} * 1.5),
354
+ 5: calc(#{$spacer} * 3),
355
+ 6: calc(#{$spacer} * 4.5),
356
+ 7: calc(#{$spacer} * 6),
357
+ 8: calc(#{$spacer} * 7.5),
358
+ 9: calc(#{$spacer} * 9),
359
+ 10: calc(#{$spacer} * 10),
360
360
  ),
361
361
  $spacers
362
362
  );
@@ -1,7 +1,7 @@
1
1
  $clay-reorder-underlay-focus: () !default;
2
2
  $clay-reorder-underlay-focus: map-deep-merge(
3
3
  (
4
- box-shadow: null,
4
+ box-shadow: $input-focus-box-shadow,
5
5
  ),
6
6
  $clay-reorder-underlay-focus
7
7
  );
@@ -0,0 +1,66 @@
1
+ @import 'variables/_globals';
2
+ @import 'variables/_globals-z-index';
3
+
4
+ @import 'variables/_aspect-ratio';
5
+ @import 'variables/_images';
6
+
7
+ @import 'variables/_buttons';
8
+ @import 'variables/_resizer';
9
+
10
+ @import 'variables/_alerts';
11
+ @import 'variables/_badges';
12
+ @import 'variables/_breadcrumbs';
13
+ @import 'variables/_empty-state';
14
+ @import 'variables/_labels';
15
+ @import 'variables/_stickers';
16
+
17
+ @import 'variables/_cards';
18
+ @import 'variables/_dropdowns';
19
+
20
+ @import 'variables/_drilldown';
21
+ @import 'variables/_forms';
22
+ @import 'variables/_links';
23
+
24
+ @import 'variables/_range';
25
+ @import 'variables/_reorder';
26
+
27
+ @import 'variables/_clay-color';
28
+ @import 'variables/_custom-forms';
29
+ @import 'variables/_time';
30
+
31
+ @import 'variables/_date-picker';
32
+ @import 'variables/_dual-listbox';
33
+ @import 'variables/_list-group';
34
+ @import 'variables/_loaders';
35
+ @import 'variables/_modals';
36
+ @import 'variables/_multi-step-nav';
37
+ @import 'variables/_navs';
38
+
39
+ @import 'variables/_icons';
40
+
41
+ @import 'variables/_menubar';
42
+ @import 'variables/_navbar';
43
+
44
+ @import 'variables/_application-bar';
45
+ @import 'variables/_management-bar';
46
+ @import 'variables/_navigation-bar';
47
+ @import 'variables/_pagination';
48
+ @import 'variables/_panels';
49
+ @import 'variables/_popovers';
50
+ @import 'variables/_progress-bars';
51
+ @import 'variables/_quick-action';
52
+ @import 'variables/_sheets';
53
+ @import 'variables/_side-navigation';
54
+ @import 'variables/_sidebar';
55
+ @import 'variables/_slideout';
56
+ @import 'variables/_tables';
57
+ @import 'variables/_tbar';
58
+ @import 'variables/_timelines';
59
+ @import 'variables/_toggle-switch';
60
+ @import 'variables/_tooltip';
61
+ @import 'variables/_treeview';
62
+ @import 'variables/_type';
63
+
64
+ @import 'variables/_utilities';
65
+
66
+ @import 'variables/_c-root';