@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,533 @@
1
+ $popover-bg: var(--popover-background-color, $white) !default;
2
+ $popover-border-color: var(--popover-border-color, transparent) !default;
3
+ $popover-border-width: var(--popover-border-width, $border-width) !default;
4
+
5
+ $popover-border-radius: var(--popover-border-radius, $border-radius) !default;
6
+ $popover-inner-border-radius: var(
7
+ --popover-inner-border-radius,
8
+ calc(#{$popover-border-radius} - #{$popover-border-width})
9
+ ) !default;
10
+
11
+ $popover-box-shadow: var(
12
+ --popover-box-shadow,
13
+ 0 1px 15px -2px rgba(0, 0, 0, 0.2)
14
+ ) !default;
15
+ $popover-font-size: var(--popover-font-size, $font-size-sm) !default;
16
+ $popover-max-width: var(--popover-max-width, 232px) !default;
17
+
18
+ $popover-inline-scroller-max-height: var(
19
+ --popover-inline-scroller-max-height,
20
+ 238px
21
+ ) !default;
22
+
23
+ $popover-header-bg: var(--popover-header-background-color, $white) !default;
24
+ $popover-header-border-color: var(
25
+ --popover-header-border-color,
26
+ $gray-300
27
+ ) !default;
28
+ $popover-header-color: var(--popover-header-color, $gray-900) !default;
29
+ $popover-header-font-size: var(--popover-header-font-size, 14px) !default;
30
+ $popover-header-font-weight: var(
31
+ --popover-header-font-weight,
32
+ $font-weight-semi-bold
33
+ ) !default;
34
+ $popover-header-margin-x: var(--popover-header-margin-x, 16px) !default;
35
+ $popover-header-margin-y: var(--popover-header-margin-y, 0) !default;
36
+ $popover-header-padding-x: var(--popover-header-padding-x, 0) !default;
37
+ $popover-header-padding-y: var(--popover-header-padding-y, 12px) !default;
38
+
39
+ $popover-body-color: var(--popover-body-color, $gray-600) !default;
40
+ $popover-body-padding-x: var(--popover-body-padding-x, 16px) !default;
41
+ $popover-body-padding-y: var(--popover-body-padding-y, 12px) !default;
42
+
43
+ $popover-offset-border-width: var(
44
+ --popover-offset-border-width,
45
+ $popover-inner-border-radius
46
+ ) !default;
47
+
48
+ $popover-arrow-color: var(--popover-arrow-color, $popover-bg) !default;
49
+ $popover-arrow-height: var(--popover-arrow-height, 4.8px) !default;
50
+ $popover-arrow-offset: var(--popover-arrow-offset, 10px) !default;
51
+ $popover-arrow-width: var(
52
+ --popover-arrow-width,
53
+ calc(#{$popover-arrow-height} * 2)
54
+ ) !default;
55
+
56
+ $popover-arrow-outer-color: var(
57
+ --popover-arrow-outer-color,
58
+ transparent
59
+ ) !default;
60
+
61
+ $popover-bottom-arrow-color: var(
62
+ --popover-bottom-arrow-color,
63
+ $popover-header-bg
64
+ ) !default;
65
+ $popover-bottom-left-arrow-color: var(
66
+ --popover-bottom-left-arrow-color,
67
+ $popover-header-bg
68
+ ) !default;
69
+ $popover-bottom-right-arrow-color: var(
70
+ --popover-bottom-right-arrow-color,
71
+ $popover-header-bg
72
+ ) !default;
73
+ $popover-left-arrow-color: var(
74
+ --popover-left-arrow-color,
75
+ $popover-arrow-color
76
+ ) !default;
77
+ $popover-left-bottom-arrow-color: var(
78
+ --popover-left-bottom-arrow-color,
79
+ $popover-arrow-color
80
+ ) !default;
81
+ $popover-left-top-arrow-color: var(
82
+ --popover-left-top-arrow-color,
83
+ $popover-header-bg
84
+ ) !default;
85
+ $popover-right-arrow-color: var(
86
+ --popover-right-arrow-color,
87
+ $popover-arrow-color
88
+ ) !default;
89
+ $popover-right-bottom-arrow-color: var(
90
+ --popover-right-bottom-arrow-color,
91
+ $popover-arrow-color
92
+ ) !default;
93
+ $popover-right-top-arrow-color: var(
94
+ --popover-right-top-arrow-color,
95
+ $popover-header-bg
96
+ ) !default;
97
+ $popover-top-arrow-color: var(
98
+ --popover-top-arrow-color,
99
+ $popover-arrow-color
100
+ ) !default;
101
+ $popover-top-left-arrow-color: var(
102
+ --popover-top-left-arrow-color,
103
+ $popover-arrow-color
104
+ ) !default;
105
+ $popover-top-right-arrow-color: var(
106
+ --popover-top-right-arrow-color,
107
+ $popover-arrow-color
108
+ ) !default;
109
+
110
+ // .popover
111
+
112
+ $popover: () !default;
113
+ $popover: map-deep-merge(
114
+ (
115
+ background-clip: padding-box,
116
+ background-color: $popover-bg,
117
+ border:
118
+ var(
119
+ --popover-border,
120
+ $popover-border-width solid $popover-border-color
121
+ ),
122
+ border-radius: clay-enable-rounded($popover-border-radius),
123
+ box-shadow: clay-enable-shadows($popover-box-shadow),
124
+ display: block,
125
+ font-family: var(--popover-font-family, $font-family-base),
126
+ font-size: $popover-font-size,
127
+ font-style: normal,
128
+ font-weight: var(--popover-font-weight, $font-weight-normal),
129
+ left: var(--left, 0),
130
+ letter-spacing: var(--popover-letter-spacing, normal),
131
+ line-break: auto,
132
+ line-height: var(--popover-line-height, $line-height-base),
133
+ max-width: $popover-max-width,
134
+ position: absolute,
135
+ text-align: left,
136
+ text-decoration: none,
137
+ text-shadow: none,
138
+ text-transform: none,
139
+ top: 0,
140
+ white-space: normal,
141
+ word-break: normal,
142
+ word-spacing: normal,
143
+ word-wrap: break-word,
144
+
145
+ focus: (
146
+ box-shadow: $component-focus-box-shadow,
147
+ outline: 0,
148
+ ),
149
+
150
+ arrow: (
151
+ display: block,
152
+ height: $popover-arrow-height,
153
+ margin: 0 $popover-border-radius,
154
+ position: absolute,
155
+ width: $popover-arrow-width,
156
+
157
+ before: (
158
+ border-color: transparent,
159
+ border-style: solid,
160
+ content: '',
161
+ display: block,
162
+ position: absolute,
163
+ ),
164
+
165
+ after: (
166
+ border-color: transparent,
167
+ border-style: solid,
168
+ content: '',
169
+ display: block,
170
+ position: absolute,
171
+ ),
172
+ ),
173
+
174
+ inline-scroller: (
175
+ max-height: $popover-inline-scroller-max-height,
176
+ ),
177
+ ),
178
+ $popover
179
+ );
180
+
181
+ // Popovers
182
+
183
+ $popovers: () !default;
184
+ $popovers: map-deep-merge(
185
+ (
186
+ popover: $popover,
187
+ ),
188
+ $popovers
189
+ );
190
+
191
+ // .popover-header
192
+
193
+ $popover-header: () !default;
194
+ $popover-header: map-deep-merge(
195
+ (
196
+ color: $popover-header-color,
197
+ background-color: $popover-header-bg,
198
+ border-bottom: $popover-border-width solid
199
+ unquote('hsl(from #{$popover-header-bg} h s calc(l - 5))'),
200
+ border-color: $popover-header-border-color,
201
+ border-top-left-radius:
202
+ clay-enable-rounded($popover-offset-border-width),
203
+ border-top-right-radius:
204
+ clay-enable-rounded($popover-offset-border-width),
205
+ font-size: $popover-header-font-size,
206
+ font-weight: $popover-header-font-weight,
207
+ margin-bottom: $popover-header-margin-y,
208
+ margin-left: $popover-header-margin-x,
209
+ margin-right: $popover-header-margin-x,
210
+ margin-top: $popover-header-margin-y,
211
+ padding: $popover-header-padding-y $popover-header-padding-x,
212
+
213
+ empty: (
214
+ display: none,
215
+ ),
216
+ ),
217
+ $popover-header
218
+ );
219
+
220
+ // Popover Headers
221
+
222
+ $popover-headers: () !default;
223
+ $popover-headers: map-deep-merge(
224
+ (
225
+ popover-header: $popover-header,
226
+ ),
227
+ $popover-headers
228
+ );
229
+
230
+ // .popover-body
231
+
232
+ $popover-body: () !default;
233
+ $popover-body: map-merge(
234
+ (
235
+ border-bottom-left-radius:
236
+ clay-enable-rounded($popover-offset-border-width),
237
+ border-bottom-right-radius:
238
+ clay-enable-rounded($popover-offset-border-width),
239
+ color: $popover-body-color,
240
+ padding: $popover-body-padding-y $popover-body-padding-x,
241
+ ),
242
+ $popover-body
243
+ );
244
+
245
+ // Popover Bodies
246
+
247
+ $popover-bodies: () !default;
248
+ $popover-bodies: map-deep-merge(
249
+ (
250
+ popover-body: $popover-body,
251
+ ),
252
+ $popover-bodies
253
+ );
254
+
255
+ // Popover Widths
256
+
257
+ $popover-widths: () !default;
258
+ $popover-widths: map-deep-merge(
259
+ (
260
+ popover-width-lg: (
261
+ max-width: var(--popover-width-lg-max-width, 421px),
262
+ ),
263
+ ),
264
+ $popover-widths
265
+ );
266
+
267
+ // .clay-popover-top, .clay-popover-top-left, .clay-popover-top-right
268
+
269
+ $clay-popover-top: () !default;
270
+ $clay-popover-top: map-deep-merge(
271
+ (
272
+ margin-bottom: $popover-arrow-height,
273
+
274
+ arrow: (
275
+ left: 50%,
276
+ margin-left: calc(#{$popover-arrow-width} * -0.5),
277
+ bottom:
278
+ calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1),
279
+ margin: 0,
280
+
281
+ before: (
282
+ border-top-color: $popover-arrow-outer-color,
283
+ border-width: $popover-arrow-height
284
+ calc(#{$popover-arrow-width} * 0.5) 0,
285
+ bottom: 0,
286
+ ),
287
+
288
+ after: (
289
+ border-top-color: $popover-top-arrow-color,
290
+ border-width: $popover-arrow-height
291
+ calc(#{$popover-arrow-width} * 0.5) 0,
292
+ bottom: $popover-border-width,
293
+ ),
294
+ ),
295
+ ),
296
+ $clay-popover-top
297
+ );
298
+
299
+ // .clay-popover-top-left
300
+
301
+ $clay-popover-top-left: () !default;
302
+ $clay-popover-top-left: map-deep-merge(
303
+ (
304
+ arrow: (
305
+ left: $popover-arrow-offset,
306
+ margin: 0,
307
+
308
+ after: (
309
+ border-top-color: $popover-top-left-arrow-color,
310
+ ),
311
+ ),
312
+ ),
313
+ $clay-popover-top-left
314
+ );
315
+
316
+ // .clay-popover-top-right
317
+
318
+ $clay-popover-top-right: () !default;
319
+ $clay-popover-top-right: map-deep-merge(
320
+ (
321
+ arrow: (
322
+ left: auto,
323
+ margin: 0,
324
+ right: $popover-arrow-offset,
325
+
326
+ after: (
327
+ border-top-color: $popover-top-right-arrow-color,
328
+ ),
329
+ ),
330
+ ),
331
+ $clay-popover-top-right
332
+ );
333
+
334
+ // .clay-popover-right, .clay-popover-right-bottom, .clay-popover-right-top
335
+
336
+ $clay-popover-right: () !default;
337
+ $clay-popover-right: map-deep-merge(
338
+ (
339
+ margin-left: $popover-arrow-height,
340
+
341
+ arrow: (
342
+ height: $popover-arrow-width,
343
+ left:
344
+ calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1),
345
+ margin: calc(#{$popover-arrow-height} * -0.5) 0 0,
346
+ top: 50%,
347
+ width: $popover-arrow-height,
348
+
349
+ before: (
350
+ border-right-color: $popover-arrow-outer-color,
351
+ border-width: calc(#{$popover-arrow-width} * 0.5)
352
+ $popover-arrow-height calc(#{$popover-arrow-width} * 0.5) 0,
353
+ left: 0,
354
+ ),
355
+
356
+ after: (
357
+ border-right-color: $popover-right-arrow-color,
358
+ border-width: calc(#{$popover-arrow-width} * 0.5)
359
+ $popover-arrow-height calc(#{$popover-arrow-width} * 0.5) 0,
360
+ left: $popover-border-width,
361
+ ),
362
+ ),
363
+ ),
364
+ $clay-popover-right
365
+ );
366
+
367
+ // .clay-popover-right-bottom
368
+
369
+ $clay-popover-right-bottom: () !default;
370
+ $clay-popover-right-bottom: map-deep-merge(
371
+ (
372
+ arrow: (
373
+ bottom: $popover-arrow-offset,
374
+ margin: 0,
375
+ top: auto,
376
+
377
+ after: (
378
+ border-right-color: $popover-right-bottom-arrow-color,
379
+ ),
380
+ ),
381
+ ),
382
+ $clay-popover-right-bottom
383
+ );
384
+
385
+ // .clay-popover-right-top
386
+
387
+ $clay-popover-right-top: () !default;
388
+ $clay-popover-right-top: map-deep-merge(
389
+ (
390
+ arrow: (
391
+ margin: 0,
392
+ top: $popover-arrow-offset,
393
+
394
+ after: (
395
+ border-right-color: $popover-right-top-arrow-color,
396
+ ),
397
+ ),
398
+ ),
399
+ $clay-popover-right-top
400
+ );
401
+
402
+ // .clay-popover-bottom, .clay-popover-bottom-left, .clay-popover-bottom-right
403
+
404
+ $clay-popover-bottom: () !default;
405
+ $clay-popover-bottom: map-deep-merge(
406
+ (
407
+ margin-top: $popover-arrow-height,
408
+
409
+ arrow: (
410
+ left: 50%,
411
+ margin: 0 0 0 calc(#{$popover-arrow-width} * -0.5),
412
+ top:
413
+ calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1),
414
+ before: (
415
+ border-bottom-color: $popover-arrow-outer-color,
416
+ border-width: 0 calc(#{$popover-arrow-width} * 0.5)
417
+ $popover-arrow-height calc(#{$popover-arrow-width} * 0.5),
418
+ top: 0,
419
+ ),
420
+
421
+ after: (
422
+ border-bottom-color: $popover-bottom-arrow-color,
423
+ border-width: 0 calc(#{$popover-arrow-width} * 0.5)
424
+ $popover-arrow-height calc(#{$popover-arrow-width} * 0.5),
425
+ top: $popover-border-width,
426
+ ),
427
+ ),
428
+ ),
429
+ $clay-popover-bottom
430
+ );
431
+
432
+ // .clay-popover-bottom-left
433
+
434
+ $clay-popover-bottom-left: () !default;
435
+ $clay-popover-bottom-left: map-deep-merge(
436
+ (
437
+ arrow: (
438
+ left: $popover-arrow-offset,
439
+ margin: 0,
440
+
441
+ after: (
442
+ border-bottom-color: $popover-bottom-left-arrow-color,
443
+ ),
444
+ ),
445
+ ),
446
+ $clay-popover-bottom-left
447
+ );
448
+
449
+ // .clay-popover-bottom-right
450
+
451
+ $clay-popover-bottom-right: () !default;
452
+ $clay-popover-bottom-right: map-deep-merge(
453
+ (
454
+ arrow: (
455
+ left: auto,
456
+ margin: 0,
457
+ right: $popover-arrow-offset,
458
+
459
+ after: (
460
+ border-bottom-color: $popover-bottom-right-arrow-color,
461
+ ),
462
+ ),
463
+ ),
464
+ $clay-popover-bottom-right
465
+ );
466
+
467
+ // .clay-popover-left, .clay-popover-left-bottom, .clay-popover-left-top
468
+
469
+ $clay-popover-left: () !default;
470
+ $clay-popover-left: map-deep-merge(
471
+ (
472
+ margin-right: $popover-arrow-height,
473
+
474
+ arrow: (
475
+ height: $popover-arrow-width,
476
+ margin: calc(#{$popover-arrow-height} * -0.5) 0 0,
477
+ right:
478
+ calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1),
479
+ top: 50%,
480
+ width: $popover-arrow-height,
481
+
482
+ before: (
483
+ border-left-color: $popover-arrow-outer-color,
484
+ border-width: calc(#{$popover-arrow-width} * 0.5) 0
485
+ calc(#{$popover-arrow-width} * 0.5) $popover-arrow-height,
486
+ right: 0,
487
+ ),
488
+
489
+ after: (
490
+ border-left-color: $popover-left-arrow-color,
491
+ border-width: calc(#{$popover-arrow-width} * 0.5) 0
492
+ calc(#{$popover-arrow-width} * 0.5) $popover-arrow-height,
493
+ right: $popover-border-width,
494
+ ),
495
+ ),
496
+ ),
497
+ $clay-popover-left
498
+ );
499
+
500
+ // .clay-popover-left-bottom
501
+
502
+ $clay-popover-left-bottom: () !default;
503
+ $clay-popover-left-bottom: map-deep-merge(
504
+ (
505
+ arrow: (
506
+ bottom: $popover-arrow-offset,
507
+ margin: 0,
508
+ top: auto,
509
+
510
+ after: (
511
+ border-left-color: $popover-left-bottom-arrow-color,
512
+ ),
513
+ ),
514
+ ),
515
+ $clay-popover-left-bottom
516
+ );
517
+
518
+ // .clay-popover-left-top
519
+
520
+ $clay-popover-left-top: () !default;
521
+ $clay-popover-left-top: map-deep-merge(
522
+ (
523
+ arrow: (
524
+ margin: 0,
525
+ top: $popover-arrow-offset,
526
+
527
+ after: (
528
+ border-left-color: $popover-left-top-arrow-color,
529
+ ),
530
+ ),
531
+ ),
532
+ $clay-popover-left-top
533
+ );
@@ -0,0 +1,149 @@
1
+ $progress-bg: var(--progress-background-color, $gray-200) !default;
2
+ $progress-border-radius: var(--progress-border-radius, 100px) !default;
3
+ $progress-box-shadow: var(--progress-box-shadow, none) !default;
4
+ $progress-font-size: var(--progress-font-size, 9px) !default;
5
+ $progress-height: var(--progress-height, 8px) !default;
6
+ $progress-min-width: var(--progress-min-width, 100px) !default;
7
+
8
+ $progress-bar-animation-timing: var(
9
+ --progress-bar-animation-timing,
10
+ 1s linear infinite
11
+ ) !default;
12
+ $progress-bar-bg: var(--progress-bar-background-color, $primary) !default;
13
+ $progress-bar-box-shadow: var(--progress-bar-box-shadow, null) !default;
14
+ $progress-bar-color: var(--progress-bar-color, $white) !default;
15
+ $progress-bar-transition: var(
16
+ --progress-bar-transition,
17
+ width 0.6s ease
18
+ ) !default;
19
+
20
+ // Progress Sizes
21
+
22
+ $progress-border-radius-lg: var(--progress-border-radius-lg, 100px) !default;
23
+ $progress-font-size-lg: var(--progress-font-size-lg, $font-size-lg) !default;
24
+ $progress-height-lg: var(
25
+ --progress-height-lg,
26
+ calc(#{$progress-height} * 2)
27
+ ) !default;
28
+
29
+ // Progress Group
30
+
31
+ $progress-group-subtitle: () !default;
32
+ $progress-group-subtitle: map-deep-merge(
33
+ (
34
+ font-size: var(--progress-group-subtitle-font-size, 12px),
35
+ font-weight:
36
+ var(--progress-group-subtitle-font-weight, $font-weight-normal),
37
+ ),
38
+ $progress-group-subtitle
39
+ );
40
+
41
+ $progress-group-addon-font-size: var(
42
+ --progress-group-addon-font-size,
43
+ 14px
44
+ ) !default;
45
+ $progress-group-addon-font-weight: var(
46
+ --progress-group-addon-font-weight,
47
+ $font-weight-semi-bold
48
+ ) !default;
49
+ $progress-group-addon-spacer-x: var(
50
+ --progress-group-addon-spacer-x,
51
+ 16px
52
+ ) !default;
53
+
54
+ $progress-group-addon: () !default;
55
+ $progress-group-addon: map-deep-merge(
56
+ (
57
+ font-size: $progress-group-addon-font-size,
58
+ font-weight: $progress-group-addon-font-weight,
59
+ margin-right: $progress-group-addon-spacer-x,
60
+ min-width: var(--progress-group-addon-min-width, 32px),
61
+ text-align: var(--progress-group-addon-text-align, center),
62
+ first-child: (
63
+ padding-left: 0,
64
+ ),
65
+
66
+ last-child: (
67
+ padding-right: 0,
68
+ ),
69
+ ),
70
+ $progress-group-addon
71
+ );
72
+
73
+ $progress-group-stacked-progress-margin-bottom: var(
74
+ --progress-group-stacked-progress-margin-bottom,
75
+ 4px
76
+ ) !default;
77
+ $progress-group-stacked-progress-margin-top: var(
78
+ --progress-group-stacked-progress-margin-top,
79
+ 4px
80
+ ) !default;
81
+
82
+ // Progress Variants
83
+
84
+ $progress-group-feedback-color: var(
85
+ --progress-group-feedback-color,
86
+ $primary
87
+ ) !default;
88
+
89
+ $progress-bar-danger-bg: var(
90
+ --progress-bar-danger-background-color,
91
+ $danger
92
+ ) !default;
93
+ $progress-group-feedback-danger-color: var(
94
+ --progress-group-feedback-danger-color,
95
+ $progress-bar-danger-bg
96
+ ) !default;
97
+
98
+ $progress-bar-info-bg: var(
99
+ --progress-bar-info-background-color,
100
+ $info
101
+ ) !default;
102
+ $progress-group-feedback-info-color: var(
103
+ --progress-group-feedback-info-color,
104
+ $progress-bar-info-bg
105
+ ) !default;
106
+
107
+ $progress-bar-success-bg: var(
108
+ --progress-bar-success-background-color,
109
+ $success
110
+ ) !default;
111
+ $progress-group-feedback-success-color: var(
112
+ --progress-group-feedback-success-color,
113
+ $progress-bar-success-bg
114
+ ) !default;
115
+
116
+ $progress-bar-warning-bg: var(
117
+ --progress-bar-warning-background-color,
118
+ $warning
119
+ ) !default;
120
+ $progress-group-feedback-warning-color: var(
121
+ --progress-group-feedback-warning-color,
122
+ $progress-bar-warning-bg
123
+ ) !default;
124
+
125
+ $progress-palette: () !default;
126
+ $progress-palette: map-deep-merge(
127
+ (
128
+ success: (
129
+ bar-bg: $progress-bar-success-bg,
130
+ group-feedback-color: $progress-group-feedback-success-color,
131
+ ),
132
+
133
+ info: (
134
+ bar-bg: $progress-bar-info-bg,
135
+ group-feedback-color: $progress-group-feedback-info-color,
136
+ ),
137
+
138
+ warning: (
139
+ bar-bg: $progress-bar-warning-bg,
140
+ group-feedback-color: $progress-group-feedback-warning-color,
141
+ ),
142
+
143
+ danger: (
144
+ bar-bg: $progress-bar-danger-bg,
145
+ group-feedback-color: $progress-group-feedback-danger-color,
146
+ ),
147
+ ),
148
+ $progress-palette
149
+ );
@@ -0,0 +1,28 @@
1
+ $quick-action-font-size: var(--quick-action-font-size, 16px) !default;
2
+ $quick-action-padding-x: var(--quick-action-padding-x, 0px) !default;
3
+ $quick-action-padding-y: var(--quick-action-padding-y, 0px) !default;
4
+
5
+ $quick-action-item-margin-x: var(--quick-action-item-margin-x, 8px) !default;
6
+ $quick-action-item-margin-y: var(--quick-action-item-margin-y, 0px) !default;
7
+ $quick-action-item-padding-x: var(--quick-action-item-padding-x, 0px) !default;
8
+ $quick-action-item-padding-y: var(--quick-action-item-padding-y, 0px) !default;
9
+
10
+ $quick-action-item-min-height: var(
11
+ --quick-action-item-min-height,
12
+ 32px
13
+ ) !default;
14
+ $quick-action-item-min-width: var(--quick-action-item-min-width, 32px) !default;
15
+
16
+ $quick-action-item-border-radius: var(
17
+ --quick-action-item-border-radius,
18
+ $border-radius
19
+ ) !default;
20
+
21
+ $quick-action-item-disabled-cursor: var(
22
+ --quick-action-item-disabled-cursor,
23
+ $disabled-cursor
24
+ ) !default;
25
+ $quick-action-item-disabled-opacity: var(
26
+ --quick-action-item-disabled-opacity,
27
+ $component-disabled-opacity
28
+ ) !default;