@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,488 @@
1
+ $list-group-bg: var(--list-group-bg, $white) !default;
2
+ $list-group-border-color: var(--list-group-border-color, $gray-300) !default;
3
+ $list-group-border-width: var(
4
+ --list-group-border-width,
5
+ $border-width
6
+ ) !default;
7
+
8
+ $list-group-border-radius: var(
9
+ --list-group-border-radius,
10
+ $border-radius
11
+ ) !default;
12
+
13
+ $list-group-box-shadow: var(--list-group-box-shadow, none) !default;
14
+ $list-group-color: var(--list-group-color, inherit) !default;
15
+ $list-group-font-size: var(--list-group-font-size, 14px) !default;
16
+ $list-group-margin-bottom: var(--list-group-margin-bottom, 24px) !default;
17
+ $list-group-margin-top: var(--list-group-margin-top, 0px) !default;
18
+
19
+ // List Group Item Action
20
+
21
+ $list-group-action-color: var(--list-group-action-color, $gray-700) !default;
22
+
23
+ $list-group-hover-bg: var(--list-group-hover-bg, $primary-l3) !default;
24
+
25
+ $list-group-action-hover-color: var(
26
+ --list-group-action-hover-color,
27
+ $list-group-action-color
28
+ ) !default;
29
+
30
+ $list-group-action-active-bg: var(
31
+ --list-group-action-active-bg,
32
+ $gray-200
33
+ ) !default;
34
+ $list-group-action-active-color: var(
35
+ --list-group-action-active-color,
36
+ $body-color
37
+ ) !default;
38
+
39
+ // List Group Item
40
+
41
+ $list-group-item-padding-x: var(--list-group-item-padding-x, 16px) !default;
42
+ $list-group-item-padding-y: var(--list-group-item-padding-y, 16px) !default;
43
+
44
+ // Use values flex-start, flex-end, or center
45
+
46
+ $list-group-item-flex-align-items: flex-start !default;
47
+
48
+ $list-group-item-flex-checkbox-offset-top: var(
49
+ --list-group-item-flex-checkbox-offset-top,
50
+ 3px
51
+ ) !default;
52
+ $list-group-item-flex-offset-top: var(
53
+ --list-group-item-flex-offset-top,
54
+ 1px
55
+ ) !default;
56
+ $list-group-item-flex-list-group-title-offset-top: var(
57
+ --list-group-item-flex-list-group-title-offset-top,
58
+ -4px
59
+ ) !default;
60
+
61
+ $list-group-item-flex: () !default;
62
+ $list-group-item-flex: map-deep-merge(
63
+ (
64
+ display: flex,
65
+ margin-bottom:
66
+ var(
67
+ --list-group-item-flex-margin-bottom,
68
+ calc(#{$list-group-border-width} * -1)
69
+ ),
70
+ padding-left:
71
+ var(
72
+ --list-group-item-flex-padding-left,
73
+ calc(#{$list-group-item-padding-x} * 0.5)
74
+ ),
75
+ padding-right:
76
+ var(
77
+ --list-group-item-flex-padding-right,
78
+ calc(#{$list-group-item-padding-x} * 0.5)
79
+ ),
80
+ autofit-col: (
81
+ justify-content:
82
+ var(
83
+ --list-group-item-flex-autofit-col-justify-content,
84
+ $list-group-item-flex-align-items
85
+ ),
86
+ padding-left:
87
+ var(
88
+ --list-group-item-flex-autofit-col-padding-left,
89
+ calc(#{$list-group-item-padding-x} * 0.5)
90
+ ),
91
+ padding-right:
92
+ var(
93
+ --list-group-item-flex-autofit-col-padding-right,
94
+ calc(#{$list-group-item-padding-x} * 0.5)
95
+ ),
96
+ ),
97
+ ),
98
+ $list-group-item-flex
99
+ );
100
+
101
+ $list-group-active-bg: var(
102
+ --list-group-active-bg,
103
+ $list-group-hover-bg
104
+ ) !default;
105
+ $list-group-active-border-color: var(
106
+ --list-group-active-border-color,
107
+ $list-group-border-color
108
+ ) !default;
109
+ $list-group-active-color: var(--list-group-active-color, $gray-900) !default;
110
+
111
+ $list-group-disabled-bg: var(--list-group-disabled-bg, $list-group-bg) !default;
112
+ $list-group-disabled-color: var(
113
+ --list-group-disabled-color,
114
+ $gray-600
115
+ ) !default;
116
+
117
+ // List Group Header
118
+
119
+ $list-group-header-bg: var(--list-group-header-bg, $gray-100) !default;
120
+ $list-group-header-padding-x: var(
121
+ --list-group-header-padding-x,
122
+ $list-group-item-padding-x
123
+ ) !default;
124
+ $list-group-header-padding-y: var(--list-group-header-padding-y, 8px) !default;
125
+
126
+ $list-group-header-title: () !default;
127
+ $list-group-header-title: map-deep-merge(
128
+ (
129
+ color: var(--list-group-header-title-color, $gray-600),
130
+ font-size: var(--list-group-header-title-font-size, 12px),
131
+ font-weight:
132
+ var(--list-group-header-title-font-weight, $font-weight-semi-bold),
133
+ line-height:
134
+ var(--list-group-header-title-line-height, $headings-line-height),
135
+ margin-bottom: var(--list-group-header-title-margin-bottom, 0),
136
+ text-transform: var(--list-group-header-title-text-transform, uppercase),
137
+ ),
138
+ $list-group-header-title
139
+ );
140
+
141
+ // List Group Title
142
+
143
+ $list-group-title-link: () !default;
144
+ $list-group-title-link: map-deep-merge(
145
+ (
146
+ border-radius: 1px,
147
+ color: $gray-900,
148
+ display: var(--list-group-title-link-display, inline-block),
149
+ text-decoration: var(--list-group-title-link-text-decoration, underline),
150
+ transition:
151
+ var(
152
+ --list-group-title-link-transition,
153
+ box-shadow 0.15s ease-in-out
154
+ ),
155
+ max-width: var(--list-group-title-link-max-width, 100%),
156
+ hover: (
157
+ color: var(--list-group-title-link-hover-color, $gray-900),
158
+ ),
159
+
160
+ focus: (
161
+ box-shadow:
162
+ var(
163
+ --list-group-title-link-focus-box-shadow,
164
+ $component-focus-box-shadow
165
+ ),
166
+ outline: 0,
167
+ ),
168
+ ),
169
+ $list-group-title-link
170
+ );
171
+
172
+ $list-group-title: () !default;
173
+ $list-group-title: map-deep-merge(
174
+ (
175
+ color: var(--list-group-title-color, $gray-900),
176
+ font-size: var(--list-group-title-font-size, 14px),
177
+ font-weight: var(--list-group-title-font-weight, $font-weight-semi-bold),
178
+ line-height: var(--list-group-title-line-height, 1.45),
179
+ margin-bottom: var(--list-group-title-margin-bottom, 0),
180
+ margin-top:
181
+ var(
182
+ --list-group-title-margin-top,
183
+ $list-group-item-flex-list-group-title-offset-top
184
+ ),
185
+ href: $list-group-title-link,
186
+ ),
187
+ $list-group-title
188
+ );
189
+
190
+ $list-group-title-active-color: var(
191
+ --list-group-title-active-color,
192
+ $list-group-active-color
193
+ ) !default;
194
+
195
+ // List Group Subtitle
196
+
197
+ $list-group-subtitle-link: () !default;
198
+ $list-group-subtitle-link: map-deep-merge(
199
+ (
200
+ border-radius: 1px,
201
+ color: var(--list-group-subtitle-link-color, $gray-600),
202
+ display: inline-block,
203
+ max-width: 100%,
204
+ transition:
205
+ var(
206
+ --list-group-subtitle-link-transition,
207
+ box-shadow 0.15s ease-in-out
208
+ ),
209
+ hover: (
210
+ color: var(--list-group-subtitle-link-hover-color, $gray-900),
211
+ ),
212
+
213
+ focus: (
214
+ box-shadow:
215
+ var(
216
+ --list-group-subtitle-link-focus-box-shadow,
217
+ $component-focus-box-shadow
218
+ ),
219
+ outline: 0,
220
+ ),
221
+ ),
222
+ $list-group-subtitle-link
223
+ );
224
+
225
+ $list-group-subtitle: () !default;
226
+ $list-group-subtitle: map-deep-merge(
227
+ (
228
+ color: var(--list-group-subtitle-color, $gray-600),
229
+ margin-bottom: var(--list-group-subtitle-margin-bottom, 0),
230
+ href: $list-group-subtitle-link,
231
+ ),
232
+ $list-group-subtitle
233
+ );
234
+
235
+ // List Group Text
236
+
237
+ $list-group-text-link: () !default;
238
+ $list-group-text-link: map-deep-merge(
239
+ (
240
+ border-radius: 1px,
241
+ color: var(--list-group-text-link-color, $gray-600),
242
+ display: inline-block,
243
+ max-width: 100%,
244
+ transition:
245
+ var(--list-group-text-link-transition, box-shadow 0.15s ease-in-out),
246
+ hover: (
247
+ color: var(--list-group-text-link-hover-color, $gray-900),
248
+ ),
249
+
250
+ focus: (
251
+ box-shadow:
252
+ var(
253
+ --list-group-text-link-focus-box-shadow,
254
+ $component-focus-box-shadow
255
+ ),
256
+ outline: 0,
257
+ ),
258
+ ),
259
+ $list-group-text-link
260
+ );
261
+
262
+ $list-group-text: () !default;
263
+ $list-group-text: map-deep-merge(
264
+ (
265
+ color: var(--list-group-text-color, $gray-600),
266
+ margin-bottom: var(--list-group-text-margin-bottom, 0),
267
+ href: $list-group-text-link,
268
+ ),
269
+ $list-group-text
270
+ );
271
+
272
+ $list-group-text-active-color: $list-group-active-color !default;
273
+
274
+ // List Group Subtext
275
+
276
+ $list-group-subtext-link: () !default;
277
+ $list-group-subtext-link: map-deep-merge(
278
+ (
279
+ border-radius: 1px,
280
+ color: var(--list-group-subtext-link-color, $gray-600),
281
+ display: inline-block,
282
+ max-width: 100%,
283
+ transition:
284
+ var(
285
+ --list-group-subtext-link-transition,
286
+ box-shadow 0.15s ease-in-out
287
+ ),
288
+ hover: (
289
+ color: var(--list-group-subtext-link-hover-color, $gray-900),
290
+ ),
291
+
292
+ focus: (
293
+ box-shadow:
294
+ var(
295
+ --list-group-subtext-link-focus-box-shadow,
296
+ $component-focus-box-shadow
297
+ ),
298
+ outline: 0,
299
+ ),
300
+ ),
301
+ $list-group-subtext-link
302
+ );
303
+
304
+ $list-group-subtext: () !default;
305
+ $list-group-subtext: map-deep-merge(
306
+ (
307
+ color: var(--list-group-subtext-color, $gray-600),
308
+ margin-bottom: var(--list-group-subtext-margin-bottom, 0),
309
+ margin-top: var(--list-group-subtext-margin-top, 8px),
310
+ href: $list-group-subtext-link,
311
+ ),
312
+ $list-group-subtext
313
+ );
314
+
315
+ $list-group-subtext-active-color: var(
316
+ --list-group-subtext-active-color,
317
+ $gray-600
318
+ ) !default;
319
+
320
+ // List Group Detail
321
+
322
+ $list-group-detail-margin-bottom: var(
323
+ --list-group-detail-margin-bottom,
324
+ 0rem
325
+ ) !default;
326
+ $list-group-detail-margin-top: var(
327
+ --list-group-detail-margin-top,
328
+ 0rem
329
+ ) !default;
330
+
331
+ $list-group-link-color: var(--list-group-link-color, $gray-900) !default;
332
+
333
+ $list-group-link-hover-color: var(
334
+ --list-group-link-hover-color,
335
+ $list-group-link-color
336
+ ) !default;
337
+
338
+ $list-group-link-active-color: var(
339
+ --list-group-link-active-color,
340
+ $list-group-link-color
341
+ ) !default;
342
+
343
+ $list-group: () !default;
344
+ $list-group: map-deep-merge(
345
+ (
346
+ border-radius: clay-enable-rounded($list-group-border-radius),
347
+ box-shadow: clay-enable-shadows($list-group-box-shadow),
348
+ color: $list-group-color,
349
+ display: flex,
350
+ flex-direction: column,
351
+ font-size: $list-group-font-size,
352
+ margin-bottom: $list-group-margin-bottom,
353
+ margin-top: $list-group-margin-top,
354
+ padding-left: 0,
355
+
356
+ list-group: (
357
+ box-shadow: if($list-group-box-shadow != null, none, null),
358
+ ),
359
+ ),
360
+ $list-group
361
+ );
362
+
363
+ // List Group Item Variants
364
+
365
+ // @deprecated as of v3.142.2 with no replacement
366
+
367
+ $list-group-item-theme-colors: () !default;
368
+ $list-group-item-theme-colors: map-deep-merge(
369
+ (
370
+ 'primary': (),
371
+ 'secondary': (),
372
+ 'success': (),
373
+ 'info': (),
374
+ 'warning': (),
375
+ 'danger': (),
376
+ 'light': (),
377
+ 'dark': (),
378
+ ),
379
+ $list-group-item-theme-colors
380
+ );
381
+
382
+ // List Group Notification
383
+
384
+ $list-group-notification-item-border-bottom-color: var(
385
+ --list-group-notification-item-border-bottom-color,
386
+ $list-group-border-color
387
+ ) !default;
388
+ $list-group-notification-item-border-left-color: var(
389
+ --list-group-notification-item-border-left-color,
390
+ $list-group-border-color
391
+ ) !default;
392
+ $list-group-notification-item-border-right-color: var(
393
+ --list-group-notification-item-border-right-color,
394
+ $list-group-border-color
395
+ ) !default;
396
+ $list-group-notification-item-border-top-color: var(
397
+ --list-group-notification-item-border-top-color,
398
+ $list-group-border-color
399
+ ) !default;
400
+
401
+ $list-group-notification-item-active-border-bottom-color: var(
402
+ --list-group-notification-item-active-border-bottom-color,
403
+ $list-group-active-border-color
404
+ ) !default;
405
+ $list-group-notification-item-active-border-left-color: var(
406
+ --list-group-notification-item-active-border-left-color,
407
+ $list-group-active-border-color
408
+ ) !default;
409
+ $list-group-notification-item-active-border-right-color: var(
410
+ --list-group-notification-item-active-border-right-color,
411
+ $list-group-active-border-color
412
+ ) !default;
413
+ $list-group-notification-item-active-border-top-color: var(
414
+ --list-group-notification-item-active-border-top-color,
415
+ $list-group-active-border-color
416
+ ) !default;
417
+
418
+ $list-group-notification-item-border-bottom-width: var(
419
+ --list-group-notification-item-border-bottom-width,
420
+ 1px
421
+ ) !default;
422
+ $list-group-notification-item-border-left-width: var(
423
+ --list-group-notification-item-border-left-width,
424
+ 1px
425
+ ) !default;
426
+ $list-group-notification-item-border-right-width: var(
427
+ --list-group-notification-item-border-right-width,
428
+ 1px
429
+ ) !default;
430
+ $list-group-notification-item-border-top-width: var(
431
+ --list-group-notification-item-border-top-width,
432
+ 1px
433
+ ) !default;
434
+
435
+ $list-group-notification-item: () !default;
436
+
437
+ $list-group-notification-item-primary: () !default;
438
+ $list-group-notification-item-primary: map-deep-merge(
439
+ (
440
+ border-left-color:
441
+ var(
442
+ --list-group-notification-item-primary-border-left-color,
443
+ unquote('hsl(from #{$component-active-bg} h s calc(l + 22.94))')
444
+ ),
445
+ border-left-width:
446
+ var(--list-group-notification-item-primary-border-left-width, 8px),
447
+ border-bottom-left-radius:
448
+ var(
449
+ --list-group-notification-item-primary-border-bottom-left-radius,
450
+ 0
451
+ ),
452
+ border-top-left-radius:
453
+ var(
454
+ --list-group-notification-item-primary-border-top-left-radius,
455
+ 0
456
+ ),
457
+ active-border-left-color:
458
+ var(
459
+ --list-group-notification-item-primary-active-border-left-color,
460
+ unquote('hsl(from #{$component-active-bg} h s calc(l + 22.94))')
461
+ ),
462
+ ),
463
+ $list-group-notification-item-primary
464
+ );
465
+
466
+ // List Group Sm
467
+
468
+ $list-group-sm-item: () !default;
469
+ $list-group-sm-item: map-merge(
470
+ (
471
+ padding-bottom: var(--list-group-sm-item-padding-bottom, 6.5px),
472
+ padding-top: var(--list-group-sm-item-padding-top, 6.5px),
473
+ ),
474
+ $list-group-sm-item
475
+ );
476
+
477
+ $list-group-sm-quick-action-menu: () !default;
478
+ $list-group-sm-quick-action-menu: map-merge(
479
+ (
480
+ margin-bottom:
481
+ var(--list-group-sm-quick-action-menu-margin-bottom, -6.5px),
482
+ margin-top: var(--list-group-sm-quick-action-menu-margin-top, -6.5px),
483
+ padding-bottom:
484
+ var(--list-group-sm-quick-action-menu-padding-bottom, 6.5px),
485
+ padding-top: var(--list-group-sm-quick-action-menu-padding-top, 6.5px),
486
+ ),
487
+ $list-group-sm-quick-action-menu
488
+ );
@@ -0,0 +1,226 @@
1
+ // Loading Animation
2
+
3
+ // @deprecated as of v3.x with no replacement
4
+
5
+ $loading-icon-font-size: 40px !default; // 40px
6
+
7
+ // @deprecated as of v3.x with no replacement
8
+
9
+ $loading-icon-font-size-sm: 16px !default; // 16px
10
+
11
+ // Loading Animation
12
+
13
+ $loading-animation: () !default;
14
+ $loading-animation: map-deep-merge(
15
+ (
16
+ display: var(--loading-animation-display, block),
17
+ height: var(--loading-animation-height, 1em),
18
+ margin-left: var(--loading-animation-margin-left, auto),
19
+ margin-right: var(--loading-animation-margin-right, auto),
20
+ overflow: var(--loading-animation-overflow, hidden),
21
+ position: var(--loading-animation-position, relative),
22
+ text-align: var(--loading-animation-text-align, left),
23
+ vertical-align: var(--loading-animation-vertical-align, middle),
24
+ width: var(--loading-animation-width, 1em),
25
+ before: (
26
+ animation:
27
+ var(
28
+ --loading-animation-before-animation,
29
+ loading-animation-circle 1s linear infinite
30
+ ),
31
+ border-radius: var(--loading-animation-before-border-radius, 50%),
32
+ box-shadow:
33
+ var(
34
+ --loading-animation-before-box-shadow,
35
+ -0.03125em -0.375em 0 0 currentColor
36
+ ),
37
+ content: var(--loading-animation-before-content, ''),
38
+ height: var(--loading-animation-before-height, 0.25em),
39
+ left: var(--loading-animation-before-left, 50%),
40
+ margin-left: var(--loading-animation-before-margin-left, -0.125em),
41
+ margin-top: var(--loading-animation-before-margin-top, -0.125em),
42
+ position: var(--loading-animation-before-position, absolute),
43
+ top: var(--loading-animation-before-top, 50%),
44
+ width: var(--loading-animation-before-width, 0.25em),
45
+ ),
46
+
47
+ after: (
48
+ animation:
49
+ var(
50
+ --loading-animation-animation,
51
+ loading-animation-circle 1s linear infinite
52
+ ),
53
+ background-color:
54
+ var(--loading-animation-background-color, currentColor),
55
+ border-radius: var(--loading-animation-border-radius, 50%),
56
+ content: var(--loading-animation-content, ''),
57
+ display: var(--loading-animation-display, block),
58
+ height: var(--loading-animation-height, 1em),
59
+ -webkit-mask: var(--loading-animation--webkit-mask, #{conic-gradient(
60
+ transparent 10%,
61
+ #000
62
+ ), linear-gradient(#000 0 0) content-box}),
63
+ -webkit-mask-composite: var(--loading-animation--webkit-mask-composite, source-out),
64
+ mask-composite: var(--loading-animation-mask-composite, subtract),
65
+ padding: var(--loading-animation-padding, 0.25em),
66
+ width: var(--loading-animation-width, 1em),
67
+ ),
68
+ ),
69
+ $loading-animation
70
+ );
71
+
72
+ // .loading-animation-squares
73
+
74
+ $loading-animation-squares: () !default;
75
+ $loading-animation-squares: map-deep-merge(
76
+ (
77
+ display: block,
78
+ height: 1em,
79
+ margin-left: auto,
80
+ margin-right: auto,
81
+ position: relative,
82
+ text-align: left,
83
+ vertical-align: middle,
84
+ width: 1em,
85
+
86
+ before: (
87
+ animation: loading-animation-squares-box-1 2.4s ease-in-out infinite,
88
+ background-color: currentColor,
89
+ border-radius: 0.2em,
90
+ content: '',
91
+ display: block,
92
+ font-size: 0.3125em,
93
+ height: 1em,
94
+ left: 0,
95
+ opacity: 0.4,
96
+ position: absolute,
97
+ top: 0,
98
+ transform: scale(1),
99
+ width: 1em,
100
+ ),
101
+
102
+ after: (
103
+ animation: loading-animation-squares-box-2 2.4s ease-in-out infinite,
104
+ background-color: currentColor,
105
+ border-radius: 0.2em,
106
+ content: '',
107
+ display: block,
108
+ font-size: 0.3125em,
109
+ height: 1em,
110
+ left: calc(100% - 1.5em),
111
+ opacity: 1,
112
+ position: absolute,
113
+ top: calc(100% - 1.5em),
114
+ transform: scale(2),
115
+ width: 1em,
116
+ ),
117
+
118
+ 'prefers-reduced-motion': (
119
+ display: block,
120
+ height: 1em,
121
+ margin-left: auto,
122
+ margin-right: auto,
123
+ overflow: hidden,
124
+ position: relative,
125
+ text-align: left,
126
+ vertical-align: middle,
127
+ width: 1em,
128
+
129
+ '&::before': (
130
+ animation: loading-animation-circle 1s linear infinite,
131
+ background-color: transparent,
132
+ border-radius: 50%,
133
+ box-shadow: -0.03125em -0.375em 0 0 currentColor,
134
+ content: '',
135
+ display: block,
136
+ font-size: inherit,
137
+ height: 0.25em,
138
+ left: 50%,
139
+ margin-left: -0.125em,
140
+ margin-top: -0.125em,
141
+ opacity: inherit,
142
+ position: absolute,
143
+ top: 50%,
144
+ transform: none,
145
+ width: 0.25em,
146
+ ),
147
+
148
+ '&::after': (
149
+ animation: loading-animation-circle 1s linear infinite,
150
+ background-color: currentColor,
151
+ border-radius: 50%,
152
+ content: '',
153
+ display: block,
154
+ font-size: inherit,
155
+ height: 1em,
156
+ left: auto,
157
+
158
+ -webkit-mask: #{conic-gradient(transparent 10%, #000),
159
+ linear-gradient(#000 0 0) content-box},
160
+ -webkit-mask-composite: source-out,
161
+
162
+ mask-composite: subtract,
163
+ padding: 0.25em,
164
+ position: relative,
165
+ top: auto,
166
+ transform: none,
167
+ width: 1em,
168
+ ),
169
+ ),
170
+ ),
171
+ $loading-animation-squares
172
+ );
173
+
174
+ // Loading Animation Sizes
175
+
176
+ $loading-animation-sizes: () !default;
177
+ $loading-animation-sizes: map-deep-merge(
178
+ (
179
+ loading-animation-xs: (
180
+ font-size: var(--loading-animation-xs-font-size, 10px),
181
+ ),
182
+
183
+ loading-animation-sm: (
184
+ font-size:
185
+ var(
186
+ --loading-animation-sm-font-size,
187
+ $loading-icon-font-size-sm
188
+ ),
189
+ ),
190
+
191
+ loading-animation-md: (
192
+ font-size: var(--loading-animation-md-font-size, 32px),
193
+ ),
194
+
195
+ loading-animation-lg: (
196
+ font-size: var(--loading-animation-lg-font-size, 64px),
197
+ ),
198
+ ),
199
+ $loading-animation-sizes
200
+ );
201
+
202
+ // Loading Animation Variants
203
+
204
+ $loading-animation-light: () !default;
205
+ $loading-animation-light: map-deep-merge(
206
+ (
207
+ color: var(--loading-animation-light-color, $white),
208
+ ),
209
+ $loading-animation-light
210
+ );
211
+
212
+ $loading-animation-palette: () !default;
213
+ $loading-animation-palette: map-deep-merge(
214
+ (
215
+ loading-animation-primary: (
216
+ color: var(--loading-animation-primary-color, $primary),
217
+ ),
218
+
219
+ loading-animation-secondary: (
220
+ color: var(--loading-animation-secondary-color, $secondary),
221
+ ),
222
+
223
+ loading-animation-light: $loading-animation-light,
224
+ ),
225
+ $loading-animation-palette
226
+ );