@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,343 @@
1
+ // This map outputs custom properties in the `:root` selector: use the Sass `map-merge` function to add additional custom properties to `:root`.
2
+
3
+ $c-root: () !default;
4
+ $c-root: map-merge(
5
+ (
6
+ --black: #000,
7
+ --white: #fff,
8
+
9
+ --gray-100: #f7f8f9,
10
+ --gray-200: #f1f2f5,
11
+ --gray-300: #e7e7ed,
12
+ --gray-400: #cdced9,
13
+ --gray-500: #a7a9bc,
14
+ --gray-600: #6b6c7e,
15
+ --gray-700: #495057,
16
+ --gray-800: #393a4a,
17
+ --gray-900: #272833,
18
+
19
+ --blue: #006eff,
20
+
21
+ --blue-d1: #006be6,
22
+ --blue-d2: #005fcc,
23
+ --blue-d3: #0053b3,
24
+ --blue-d4: #004799,
25
+ --blue-l1: #338fff,
26
+ --blue-l2: #66abff,
27
+ --blue-l3: #97c5ff,
28
+ --blue-l4: #cce3ff,
29
+ --blue-l5: #e5f1ff,
30
+
31
+ --indigo: #4d5fff,
32
+
33
+ --indigo-d1: #3347ff,
34
+ --indigo-d2: #1a30ff,
35
+ --indigo-d3: #001aff,
36
+ --indigo-d4: #0017e5,
37
+ --indigo-l1: #808cff,
38
+ --indigo-l2: #99a3ff,
39
+ --indigo-l3: #b2baff,
40
+ --indigo-l4: #ccd1ff,
41
+ --indigo-l5: #e5e8ff,
42
+
43
+ --purple: #a3f,
44
+
45
+ --purple-d1: #9f1aff,
46
+ --purple-d2: #9500ff,
47
+ --purple-d3: #8600e6,
48
+ --purple-d4: #70c,
49
+ --purple-l1: #bf66ff,
50
+ --purple-l2: #ca80ff,
51
+ --purple-l3: #d499ff,
52
+ --purple-l4: #dfb3ff,
53
+ --purple-l5: #f2e5ff,
54
+
55
+ --pink: #e50082,
56
+
57
+ --pink-d1: #cc0074,
58
+ --pink-d2: #b30065,
59
+ --pink-d3: #990057,
60
+ --pink-d4: #800048,
61
+ --pink-l1: #ff4db2,
62
+ --pink-l2: #ff80c8,
63
+ --pink-l3: #ff99d3,
64
+ --pink-l4: #ffb3de,
65
+ --pink-l5: #ffe5f4,
66
+
67
+ --red: #e60000,
68
+
69
+ --red-d1: #c00,
70
+ --red-d2: #b30000,
71
+ --red-d3: #900,
72
+ --red-d4: #800000,
73
+ --red-l1: #ff4d4d,
74
+ --red-l2: #f66,
75
+ --red-l3: #ff8080,
76
+ --red-l4: #f99,
77
+ --red-l5: #ffe5e5,
78
+
79
+ --orange: #cc4e00,
80
+
81
+ --orange-d1: #b34400,
82
+ --orange-d2: #993b00,
83
+ --orange-d3: #803100,
84
+ --orange-d4: #662700,
85
+ --orange-l1: #ff6200,
86
+ --orange-l2: #ff8133,
87
+ --orange-l3: #ffa166,
88
+ --orange-l4: #ffc099,
89
+ --orange-l5: #fff0e5,
90
+
91
+ --yellow: #fb0,
92
+
93
+ --yellow-d1: #e6a800,
94
+ --yellow-d2: #cc9600,
95
+ --yellow-d3: #b38900,
96
+ --yellow-d4: #997000,
97
+ --yellow-l1: #ffc933,
98
+ --yellow-l2: #ffd666,
99
+ --yellow-l3: #ffe499,
100
+ --yellow-l4: #fff1cc,
101
+ --yellow-l5: #fff8e5,
102
+
103
+ --green: #458613,
104
+
105
+ --green-d1: #397010,
106
+ --green-d2: #2e590d,
107
+ --green-d3: #22430a,
108
+ --green-d4: #162d06,
109
+ --green-l1: #53a117,
110
+ --green-l2: #67c91d,
111
+ --green-l3: #81e236,
112
+ --green-l4: #9de963,
113
+ --green-l5: #f1fce9,
114
+
115
+ --teal: #1b7e6e,
116
+
117
+ --teal-d1: #16695b,
118
+ --teal-d2: #125449,
119
+ --teal-d3: #0d3f37,
120
+ --teal-d4: #092a25,
121
+ --teal-l1: #24a892,
122
+ --teal-l2: #42d7be,
123
+ --teal-l3: #6ce0cc,
124
+ --teal-l4: #96e9db,
125
+ --teal-l5: #eafbf8,
126
+
127
+ --cyan: #0077b3,
128
+
129
+ --cyan-d1: #069,
130
+ --cyan-d2: #005580,
131
+ --cyan-d3: #046,
132
+ --cyan-d4: #00334d,
133
+ --cyan-l1: #0099e6,
134
+ --cyan-l2: #3bf,
135
+ --cyan-l3: #6cf,
136
+ --cyan-l4: #9df,
137
+ --cyan-l5: #e5f6ff,
138
+
139
+ --primary: #0b5fff,
140
+
141
+ --primary-d1: #0053f0,
142
+ --primary-d2: #004ad7,
143
+ --primary-l0: #5791ff,
144
+ --primary-l1: #80acff,
145
+ --primary-l2: #b3cdff,
146
+ --primary-l3: #f0f5ff,
147
+
148
+ --secondary: #6b6c7e,
149
+
150
+ --secondary-d1: #393a4a,
151
+ --secondary-d2: #30313f,
152
+ --secondary-l0: #9b92a5,
153
+ --secondary-l1: #a7a9bc,
154
+ --secondary-l2: #cdced9,
155
+ --secondary-l3: #e7e7ed,
156
+
157
+ --info: #2e5aac,
158
+
159
+ --info-d1: #294f98,
160
+ --info-d2: #234584,
161
+ --info-l1: #89a7e0,
162
+ --info-l2: #eef2fa,
163
+
164
+ --success: #287d3c,
165
+
166
+ --success-d1: #226a33,
167
+ --success-d2: #1c5629,
168
+ --success-l1: #5aca75,
169
+ --success-l2: #edf9f0,
170
+
171
+ --warning: #b95000,
172
+
173
+ --warning-d1: #9f4500,
174
+ --warning-d2: #863a00,
175
+ --warning-l1: #ff8f39,
176
+ --warning-l2: #fff4ec,
177
+
178
+ --danger: #da1414,
179
+
180
+ --danger-d1: #c31212,
181
+ --danger-d2: #ab1010,
182
+ --danger-l1: #f48989,
183
+ --danger-l2: #feefef,
184
+
185
+ --light: #f1f2f5,
186
+
187
+ --light-d1: #e2e4ea,
188
+ --light-d2: #d3d6e0,
189
+ --light-l1: #f7f8f9,
190
+ --light-l2: #fff,
191
+
192
+ --dark: #272833,
193
+ --dark-d1: #1c1c24,
194
+ --dark-d2: #111116,
195
+ --dark-l1: #30313f,
196
+ --dark-l2: #393a4a,
197
+
198
+ --spacer: 1rem,
199
+
200
+ --spacer-0: map-get($spacers, 0),
201
+ --spacer-1: map-get($spacers, 1),
202
+ --spacer-2: map-get($spacers, 2),
203
+ --spacer-3: map-get($spacers, 3),
204
+ --spacer-4: map-get($spacers, 4),
205
+ --spacer-5: map-get($spacers, 5),
206
+ --spacer-6: map-get($spacers, 6),
207
+ --spacer-7: map-get($spacers, 7),
208
+ --spacer-8: map-get($spacers, 8),
209
+ --spacer-9: map-get($spacers, 9),
210
+ --spacer-10: map-get($spacers, 10),
211
+ --line-height-lg: 1.5,
212
+ --line-height-sm: 1.5,
213
+
214
+ --line-height-base: 1.5,
215
+
216
+ --border-color: $gray-200,
217
+ --border-width: 0.0625rem,
218
+
219
+ --border-radius: 0.25rem,
220
+
221
+ --border-radius-lg: 0.375rem,
222
+ --border-radius-sm: 0.1875rem,
223
+
224
+ --rounded-0-border-radius: 0,
225
+ --rounded-border-radius: $border-radius,
226
+ --rounded-circle-border-radius: 50%,
227
+ --rounded-pill: 50rem,
228
+
229
+ --box-shadow: 0 0.5rem 1rem unquote('hsl(from #{$black} h s l / 0.15)'),
230
+ --box-shadow-lg: 0 1rem 3rem
231
+ unquote('hsl(from #{$black} h s l / 0.175)'),
232
+ --box-shadow-sm: 0 0.125rem 0.25rem
233
+ unquote('hsl(from #{$black} h s l / 0.075)'),
234
+ --transition-base: all 0.2s ease-in-out,
235
+ --transition-collapse: height 0.35s ease,
236
+ --transition-fade: opacity 0.15s linear,
237
+
238
+ --component-transition:
239
+ unquote(
240
+ 'color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out'
241
+ ),
242
+ --component-active-background-color: $primary,
243
+ --component-active-color: $white,
244
+
245
+ --component-focus-box-shadow:
246
+ unquote('0 0 0 0.125rem #{$white}, 0 0 0 0.25rem #{$primary-l1}'),
247
+ --component-focus-inset-box-shadow:
248
+ unquote(
249
+ 'inset 0 0 0 0.125rem #{$primary-l1}, inset 0 0 0 0.25rem #{$white}'
250
+ ),
251
+ --component-disabled-opacity: 0.4,
252
+
253
+ --container-max-sm: map-get($container-max-widths, 'sm'),
254
+ --container-max-md: map-get($container-max-widths, 'md'),
255
+ --container-max-lg: map-get($container-max-widths, 'lg'),
256
+ --container-max-xl: map-get($container-max-widths, 'xl'),
257
+ --font-family-monospace:
258
+ unquote(
259
+ "sfmono-regular, menlo, monaco, consolas, 'Liberation Mono', 'Courier New', monospace"
260
+ ),
261
+ --font-family-sans-serif:
262
+ unquote(
263
+ "system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, oxygen-sans, ubuntu, cantarell, 'Helvetica Neue', arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'"
264
+ ),
265
+ --font-family-serif: unquote("georgia, 'Times New Roman', times, serif"),
266
+ --font-family-base: $font-family-sans-serif,
267
+
268
+ --font-size-base: 1rem,
269
+
270
+ --font-size-lg: 1.125rem,
271
+ --font-size-sm: 0.875rem,
272
+
273
+ --font-weight-bold: 700,
274
+ --font-weight-bolder: 900,
275
+ --font-weight-light: 300,
276
+ --font-weight-lighter: lighter,
277
+ --font-weight-normal: 400,
278
+ --font-weight-semi-bold: 600,
279
+
280
+ --h1-font-size: 1.625rem,
281
+ --h2-font-size: 1.375rem,
282
+ --h3-font-size: 1.1875rem,
283
+ --h4-font-size: 1rem,
284
+ --h5-font-size: 0.875rem,
285
+ --h6-font-size: 0.8125rem,
286
+
287
+ --headings-color: inherit,
288
+ --headings-font-family: inherit,
289
+ --headings-font-weight: $font-weight-bold,
290
+ --headings-line-height: 1.2,
291
+ --headings-margin-bottom: 0.5rem,
292
+
293
+ --body-background-color: $white,
294
+ --body-color: $dark-d1,
295
+ --body-font-family: $font-family-base,
296
+ --body-font-size: $font-size-base,
297
+ --body-font-weight: $font-weight-base,
298
+ --body-line-height: $line-height-base,
299
+ --body-margin: 0,
300
+
301
+ --link-color: $primary,
302
+ --link-decoration: none,
303
+ --link-hover-color: $primary-d2,
304
+ --link-hover-decoration: underline,
305
+
306
+ --paragraph-margin-bottom: 1rem,
307
+
308
+ --display1-size: 6rem,
309
+ --display2-size: 5.5rem,
310
+ --display3-size: 4.5rem,
311
+ --display4-size: 3.5rem,
312
+
313
+ --display1-weight: 300,
314
+ --display2-weight: 300,
315
+ --display3-weight: 300,
316
+ --display4-weight: 300,
317
+
318
+ --display-line-height: $headings-line-height,
319
+
320
+ --lead-font-size: 1.25rem,
321
+ --lead-font-weight: 400,
322
+
323
+ --text-muted: $gray-500,
324
+
325
+ --blockquote-font-size: 1.25rem,
326
+
327
+ --blockquote-small-color: $gray-600,
328
+ --blockquote-small-font-size: $small-font-size,
329
+
330
+ --hr-border-color: unquote('hsl(from #{$black} h s l / 0.1)'),
331
+ --hr-border-width: $border-width,
332
+ --hr-margin-y: $spacer,
333
+
334
+ --code-color: $pink,
335
+ --code-font-size: 87.5%,
336
+
337
+ --focus-ring-animation-from-box-shadow:
338
+ unquote('0 0 0 0.25rem #{$white}, 0 0 0 0.75rem #{$primary-l2}'),
339
+ --focus-ring-animation-to-box-shadow:
340
+ unquote('0 0 0 0.125rem #{$white}, 0 0 0 0.25rem #{$primary-l0}'),
341
+ ),
342
+ $c-root
343
+ );