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