@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,60 @@
1
+ $application-bar-size: () !default;
2
+ $application-bar-size: map-deep-merge(
3
+ (
4
+ title-font-size: 1.125rem,
5
+ ),
6
+ $application-bar-size
7
+ );
8
+
9
+ $application-bar-base: () !default;
10
+ $application-bar-base: map-deep-merge(
11
+ (
12
+ navbar-nav: (
13
+ nav-link: (
14
+ border-radius: $border-radius,
15
+ outline: 0,
16
+ transition: box-shadow 0.15s ease-in-out,
17
+
18
+ focus: (
19
+ box-shadow: $component-focus-box-shadow,
20
+ ),
21
+
22
+ disabled: (
23
+ box-shadow: none,
24
+ ),
25
+ ),
26
+ ),
27
+ ),
28
+ $application-bar-base
29
+ );
30
+
31
+ $application-bar-dark: () !default;
32
+ $application-bar-dark: map-deep-merge(
33
+ (
34
+ background-color: $dark-l1,
35
+
36
+ navbar-nav: (
37
+ nav-link: (
38
+ font-weight: $font-weight-semi-bold,
39
+
40
+ hover: (
41
+ background-color: rgba(255, 255, 255, 0.03),
42
+ ),
43
+
44
+ focus: (
45
+ background-color: rgba(255, 255, 255, 0.03),
46
+ ),
47
+
48
+ active: (
49
+ background-color: rgba(255, 255, 255, 0.06),
50
+ ),
51
+
52
+ disabled: (
53
+ background-color: transparent,
54
+ opacity: 0.5,
55
+ ),
56
+ ),
57
+ ),
58
+ ),
59
+ $application-bar-dark
60
+ );
@@ -0,0 +1,26 @@
1
+ $aspect-ratio-sizes: () !default;
2
+ $aspect-ratio-sizes: map-deep-merge(
3
+ (
4
+ aspect-ratio-3-to-2: (
5
+ height: 2,
6
+ width: 3,
7
+ ),
8
+ aspect-ratio-4-to-3: (
9
+ height: 3,
10
+ width: 4,
11
+ ),
12
+ aspect-ratio-8-to-3: (
13
+ height: 3,
14
+ width: 8,
15
+ ),
16
+ aspect-ratio-8-to-5: (
17
+ height: 5,
18
+ width: 8,
19
+ ),
20
+ aspect-ratio-16-to-9: (
21
+ height: 9,
22
+ width: 16,
23
+ ),
24
+ ),
25
+ $aspect-ratio-sizes
26
+ );
@@ -0,0 +1,341 @@
1
+ // .badge
2
+
3
+ $badge-border-color: var(--badge-border-color, transparent) !default;
4
+ $badge-border-radius: var(--badge-border-radius, $rounded-pill) !default;
5
+ $badge-border-style: solid !default;
6
+ $badge-border-width: var(--badge-border-width, 1px) !default;
7
+ $badge-font-size: var(--badge-font-size, 0.625rem) !default;
8
+ $badge-font-weight: var(--badge-font-weight, $font-weight-semi-bold) !default;
9
+ $badge-line-height: var(--badge-line-height, 1.1) !default;
10
+ $badge-padding-x: var(--badge-padding-x, 0.25rem) !default;
11
+ $badge-padding-y: var(--badge-padding-y, 0.09375rem) !default;
12
+ $badge-transition: $component-transition !default;
13
+
14
+ $badge-spacer-x: var(--badge-spacer-x, 0.25rem) !default;
15
+ $badge-spacer-y: var(--badge-spacer-y, 0.125rem) !default;
16
+
17
+ $badge-focus-width: $input-btn-focus-width !default;
18
+
19
+ // .badge a
20
+
21
+ $badge-link-color: var(--badge-link-color, $white) !default;
22
+ $badge-link-text-decoration: var(
23
+ --badge-link-text-decoration,
24
+ underline
25
+ ) !default;
26
+
27
+ $badge-link-hover-color: var(--badge-link-hover-color, $white) !default;
28
+ $badge-link-hover-text-decoration: var(
29
+ --badge-link-hover-text-decoration,
30
+ none
31
+ ) !default;
32
+
33
+ $badge: () !default;
34
+ $badge: map-deep-merge(
35
+ (
36
+ border-color: $badge-border-color,
37
+ border-radius: clay-enable-rounded($badge-border-radius),
38
+ border-style: $badge-border-style,
39
+ border-width: $badge-border-width,
40
+ display: inline-flex,
41
+ font-size: $badge-font-size,
42
+ font-weight: $badge-font-weight,
43
+ line-height: $badge-line-height,
44
+ margin-bottom: $badge-spacer-y,
45
+ margin-right: $badge-spacer-x,
46
+ margin-top: $badge-spacer-y,
47
+ max-width: 100%,
48
+ padding-bottom: $badge-padding-y,
49
+ padding-left: $badge-padding-x,
50
+ padding-right: $badge-padding-x,
51
+ padding-top: $badge-padding-y,
52
+ text-align: center,
53
+ transition: clay-enable-transitions($badge-transition),
54
+ white-space: inherit,
55
+ word-wrap: break-word,
56
+
57
+ empty: (
58
+ display: none,
59
+ ),
60
+
61
+ href: (
62
+ hover: (
63
+ text-decoration: none,
64
+ ),
65
+
66
+ focus: (
67
+ box-shadow: $component-focus-box-shadow,
68
+ outline: 0,
69
+ ),
70
+ ),
71
+
72
+ link: (
73
+ color: $badge-link-color,
74
+ text-decoration: $badge-link-text-decoration,
75
+
76
+ hover: (
77
+ color: $badge-link-hover-color,
78
+ text-decoration: $badge-link-hover-text-decoration,
79
+ ),
80
+
81
+ focus: (
82
+ color: $badge-link-hover-color,
83
+ text-decoration: $badge-link-hover-text-decoration,
84
+ ),
85
+ ),
86
+
87
+ c-inner: (
88
+ margin: calc(#{$badge-padding-y} * -1)
89
+ calc(#{$badge-padding-x} * -1),
90
+ max-width: none,
91
+ ),
92
+ ),
93
+ $badge
94
+ );
95
+
96
+ // .badge-item .lexicon-icon
97
+
98
+ $badge-lexicon-icon-height: var(--badge-lexicon-icon-height, 0.875em) !default;
99
+ $badge-lexicon-icon-margin-top: var(
100
+ --badge-lexicon-icon-margin-top,
101
+ 0px
102
+ ) !default;
103
+ $badge-lexicon-icon-width: var(--badge-lexicon-icon-width, 0.875em) !default;
104
+
105
+ // .badge-item-expand
106
+
107
+ $badge-item-expand-min-width: 6px !default;
108
+
109
+ // .badge-item-before, .badge-item-after
110
+
111
+ $badge-item-spacer-x: var(--badge-item-spacer-x, 0.85714em) !default;
112
+
113
+ // .badge-item .close
114
+
115
+ $badge-close: () !default;
116
+ $badge-close: map-deep-merge(
117
+ (
118
+ color: inherit,
119
+ opacity: 1,
120
+ border-radius: 1px,
121
+ display: inline-flex,
122
+ font-size: inherit,
123
+ height: auto,
124
+ width: auto,
125
+
126
+ hover: (
127
+ color: inherit,
128
+ opacity: 1,
129
+ ),
130
+
131
+ focus: (
132
+ opacity: 1,
133
+ ),
134
+ ),
135
+ $badge-close
136
+ );
137
+
138
+ // .badge-pill
139
+
140
+ $badge-pill-border-radius: 10rem !default;
141
+ $badge-pill-padding-x: 0.6em !default;
142
+
143
+ $badge-pill: () !default;
144
+ $badge-pill: map-deep-merge(
145
+ (
146
+ border-radius: clay-enable-rounded($badge-pill-border-radius),
147
+ padding-left: $badge-pill-padding-x,
148
+ padding-right: $badge-pill-padding-x,
149
+ ),
150
+ $badge-pill
151
+ );
152
+
153
+ // .badge-primary
154
+
155
+ $badge-primary: () !default;
156
+ $badge-primary: map-deep-merge(
157
+ (
158
+ background-color: var(--badge-primary-background-color, $primary),
159
+ border-color: var(--badge-primary-border-color, transparent),
160
+ color: var(--badge-primary-color, $white),
161
+ href: (
162
+ hover: (
163
+ background-color:
164
+ var(--badge-primary-hover-background-color, $primary-d1),
165
+ border-color:
166
+ var(--badge-primary-hover-border-color, transparent),
167
+ color: var(--badge-primary-hover-color, $white),
168
+ ),
169
+
170
+ focus: (),
171
+ ),
172
+
173
+ link: (),
174
+ ),
175
+ $badge-primary
176
+ );
177
+
178
+ // .badge-secondary
179
+
180
+ $badge-secondary: () !default;
181
+ $badge-secondary: map-deep-merge(
182
+ (
183
+ background-color: var(--badge-secondary-background-color, $secondary-l3),
184
+ border-color: var(--badge-secondary-border-color, transparent),
185
+ color: var(--badge-secondary-color, $gray-900),
186
+ href: (
187
+ hover: (
188
+ background-color:
189
+ var(--badge-secondary-hover-background-color, $secondary-l2),
190
+ border-color:
191
+ var(--badge-secondary-hover-border-color, transparent),
192
+ color: var(--badge-secondary-hover-color, $gray-900),
193
+ ),
194
+
195
+ focus: (),
196
+ ),
197
+
198
+ link: (),
199
+ ),
200
+ $badge-secondary
201
+ );
202
+
203
+ // .badge-success
204
+
205
+ $badge-success: () !default;
206
+ $badge-success: map-deep-merge(
207
+ (
208
+ background-color: var(--badge-success-background-color, $success),
209
+ border-color: var(--badge-success-border-color, transparent),
210
+ color: var(--badge-success-color, $white),
211
+ href: (
212
+ hover: (
213
+ background-color:
214
+ var(--badge-success-hover-background-color, $success-d1),
215
+ border-color:
216
+ var(--badge-success-hover-border-color, transparent),
217
+ color: var(--badge-success-hover-color, $white),
218
+ ),
219
+
220
+ focus: (),
221
+ ),
222
+
223
+ link: (),
224
+ ),
225
+ $badge-success
226
+ );
227
+
228
+ // .badge-info
229
+
230
+ $badge-info: () !default;
231
+ $badge-info: map-deep-merge(
232
+ (
233
+ background-color: var(--badge-info-background-color, $info),
234
+ border-color: var(--badge-info-border-color, transparent),
235
+ color: var(--badge-info-color, $white),
236
+ href: (
237
+ hover: (
238
+ background-color:
239
+ var(--badge-info-hover-background-color, $info-d1),
240
+ border-color: var(--badge-info-hover-border-color, transparent),
241
+ color: var(--badge-info-hover-color, $white),
242
+ ),
243
+
244
+ focus: (),
245
+ ),
246
+
247
+ link: (),
248
+ ),
249
+ $badge-info
250
+ );
251
+
252
+ // .badge-warning
253
+
254
+ $badge-warning: () !default;
255
+ $badge-warning: map-deep-merge(
256
+ (
257
+ background-color: var(--badge-warning-background-color, $warning),
258
+ border-color: var(--badge-warning-border-color, transparent),
259
+ color: var(--badge-warning-color, $white),
260
+ href: (
261
+ hover: (
262
+ background-color:
263
+ var(--badge-warning-hover-background-color, $warning-d1),
264
+ border-color:
265
+ var(--badge-warning-hover-border-color, transparent),
266
+ color: var(--badge-warning-hover-color, $white),
267
+ ),
268
+
269
+ focus: (),
270
+ ),
271
+
272
+ link: (),
273
+ ),
274
+ $badge-warning
275
+ );
276
+
277
+ // .badge-danger
278
+
279
+ $badge-danger: () !default;
280
+ $badge-danger: map-deep-merge(
281
+ (
282
+ background-color: var(--badge-danger-background-color, $danger),
283
+ border-color: var(--badge-danger-border-color, transparent),
284
+ color: var(--badge-danger-color, $white),
285
+ href: (
286
+ hover: (
287
+ background-color:
288
+ var(--badge-danger-hover-background-color, $danger-d1),
289
+ border-color:
290
+ var(--badge-danger-hover-border-color, transparent),
291
+ color: var(--badge-danger-hover-color, $white),
292
+ ),
293
+
294
+ focus: (),
295
+ ),
296
+
297
+ link: (),
298
+ ),
299
+ $badge-danger
300
+ );
301
+
302
+ $badge-palette: () !default;
303
+ $badge-palette: map-deep-merge(
304
+ (
305
+ primary: $badge-primary,
306
+
307
+ secondary: $badge-secondary,
308
+
309
+ success: $badge-success,
310
+
311
+ info: $badge-info,
312
+
313
+ warning: $badge-warning,
314
+
315
+ danger: $badge-danger,
316
+
317
+ light: (),
318
+ dark: (),
319
+ '.badge-translucent.badge-primary': (),
320
+ '.badge-translucent.badge-info, .badge-beta': (),
321
+ '.badge-translucent.badge-success': (),
322
+ '.badge-translucent.badge-warning': (),
323
+ '.badge-translucent.badge-danger': (),
324
+ '%clay-dark-badge-translucent-primary': (),
325
+ '.clay-dark .badge-translucent.badge-primary': (),
326
+ '.clay-dark.badge-translucent.badge-primary': (),
327
+ '%clay-dark-badge-translucent-info': (),
328
+ '.clay-dark .badge-translucent.badge-info, .badge-beta-dark': (),
329
+ '.clay-dark.badge-translucent.badge-info': (),
330
+ '%clay-dark-badge-translucent-success': (),
331
+ '.clay-dark .badge-translucent.badge-success': (),
332
+ '.clay-dark.badge-translucent.badge-success': (),
333
+ '%clay-dark-badge-translucent-warning': (),
334
+ '.clay-dark .badge-translucent.badge-warning': (),
335
+ '.clay-dark.badge-translucent.badge-warning': (),
336
+ '%clay-dark-badge-translucent-danger': (),
337
+ '.clay-dark .badge-translucent.badge-danger': (),
338
+ '.clay-dark.badge-translucent.badge-danger': (),
339
+ ),
340
+ $badge-palette
341
+ );
@@ -0,0 +1,193 @@
1
+ // .breadcrumb
2
+
3
+ $breadcrumb-bg: transparent !default;
4
+ $breadcrumb-border-radius: clay-enable-rounded($border-radius) !default;
5
+ $breadcrumb-font-size: 0.875rem !default;
6
+ $breadcrumb-font-weight: $font-weight-normal !default;
7
+ $breadcrumb-margin-bottom: 0 !default;
8
+ $breadcrumb-padding-x: 0.125rem !default;
9
+ $breadcrumb-padding-y: 0.59375rem !default;
10
+ $breadcrumb-text-transform: none !default;
11
+
12
+ $breadcrumb-link-color: $gray-600 !default;
13
+ $breadcrumb-link-text-decoration: $link-decoration !default;
14
+
15
+ $breadcrumb-link-hover-color: $breadcrumb-link-color !default;
16
+ $breadcrumb-link-hover-text-decoration: $link-hover-decoration !default;
17
+
18
+ $breadcrumb: () !default;
19
+ $breadcrumb: map-merge(
20
+ (
21
+ background-color: var(--breadcrumb-background-color, $breadcrumb-bg),
22
+ border-radius:
23
+ var(--breadcrumb-border-radius, $breadcrumb-border-radius),
24
+ display: flex,
25
+ flex-wrap: wrap,
26
+ font-size: var(--breadcrumb-font-size, $breadcrumb-font-size),
27
+ font-weight: var(--breadcrumb-font-weight, $breadcrumb-font-weight),
28
+ list-style: none,
29
+ margin-bottom:
30
+ var(--breadcrumb-margin-bottom, $breadcrumb-margin-bottom),
31
+ padding: var(--breadcrumb-padding-y, $breadcrumb-padding-y)
32
+ var(--breadcrumb-padding-x, $breadcrumb-padding-x),
33
+ ),
34
+ $breadcrumb
35
+ );
36
+
37
+ // .breadcrumb-item + .breadcrumb-item::before
38
+
39
+ $breadcrumb-divider: quote('/') !default;
40
+
41
+ $breadcrumb-divider-color: $breadcrumb-link-color !default;
42
+ $breadcrumb-divider-font-family: null !default;
43
+ $breadcrumb-divider-font-weight: null !default;
44
+
45
+ $breadcrumb-divider-svg-icon: clay-icon(angle-right, #6b6c7e) !default;
46
+ $breadcrumb-divider-svg-icon-height: 0.6em !default;
47
+ $breadcrumb-divider-svg-icon-width: $breadcrumb-divider-svg-icon-height !default;
48
+
49
+ // Breadcrumb Item
50
+
51
+ $breadcrumb-active-color: $gray-900 !default;
52
+ $breadcrumb-active-font-weight: $font-weight-semi-bold !default;
53
+
54
+ $breadcrumb-item: () !default;
55
+ $breadcrumb-item: map-deep-merge(
56
+ (
57
+ font-size: var(--breadcrumb-font-size, $breadcrumb-font-size),
58
+ font-weight: var(--breadcrumb-font-weight, $breadcrumb-font-weight),
59
+ margin-right: 0.5em,
60
+ position: relative,
61
+
62
+ active: (
63
+ color: var(--breadcrumb-active-color, $breadcrumb-active-color),
64
+ font-weight:
65
+ var(
66
+ --breadcrumb-active-font-weight,
67
+ $breadcrumb-active-font-weight
68
+ ),
69
+ ),
70
+
71
+ breadcrumb-item: (
72
+ padding-left: 1em,
73
+
74
+ before: (
75
+ color:
76
+ var(--breadcrumb-divider-color, $breadcrumb-divider-color),
77
+ display: block,
78
+ float: left,
79
+ background-image:
80
+ var(
81
+ --breadcrumb-divider-svg-icon,
82
+ $breadcrumb-divider-svg-icon
83
+ ),
84
+ background-repeat: no-repeat,
85
+ background-size: 100%,
86
+ content: '',
87
+ height:
88
+ var(
89
+ --breadcrumb-divider-svg-icon-height,
90
+ $breadcrumb-divider-svg-icon-height
91
+ ),
92
+ left: 0,
93
+ margin-top: calc(#{$breadcrumb-divider-svg-icon-height} / -2),
94
+ padding: 0,
95
+ position: absolute,
96
+ top: 50%,
97
+ width:
98
+ var(
99
+ --breadcrumb-divider-svg-icon-width,
100
+ $breadcrumb-divider-svg-icon-width
101
+ ),
102
+ ),
103
+ ),
104
+
105
+ dropdown-toggle: (
106
+ text-decoration: none,
107
+
108
+ hover: (
109
+ text-decoration: none,
110
+ ),
111
+
112
+ focus: (
113
+ text-decoration: none,
114
+ ),
115
+ ),
116
+ ),
117
+ $breadcrumb-item
118
+ );
119
+
120
+ // Breadcrumb Text Truncate
121
+
122
+ $breadcrumb-text-truncate-icon-spacer-x: 0.875rem !default;
123
+ $breadcrumb-text-truncate-max-width: 18.75rem -
124
+ $breadcrumb-text-truncate-icon-spacer-x !default;
125
+ $breadcrumb-text-truncate-max-width-mobile: 9.375rem -
126
+ $breadcrumb-text-truncate-icon-spacer-x !default;
127
+
128
+ $breadcrumb-text-truncate: () !default;
129
+ $breadcrumb-text-truncate: map-merge(
130
+ (
131
+ display: inline-block,
132
+ max-width: $breadcrumb-text-truncate-max-width,
133
+ overflow: hidden,
134
+ text-decoration: inherit,
135
+ text-overflow: ellipsis,
136
+ vertical-align: bottom,
137
+ white-space: nowrap,
138
+ ),
139
+ $breadcrumb-text-truncate
140
+ );
141
+
142
+ // Breadcrumb Link
143
+
144
+ $breadcrumb-link: () !default;
145
+ $breadcrumb-link: map-deep-merge(
146
+ (
147
+ border-radius: 1px,
148
+ color: var(--breadcrumb-link-color, $breadcrumb-link-color),
149
+ display: block,
150
+ line-height: 1.5rem,
151
+ text-decoration:
152
+ var(
153
+ --breadcrumb-link-text-decoration,
154
+ $breadcrumb-link-text-decoration
155
+ ),
156
+ text-transform:
157
+ var(--breadcrumb-link-text-transform, $breadcrumb-text-transform),
158
+ transition: box-shadow 0.15s ease-in-out,
159
+
160
+ hover: (
161
+ color:
162
+ var(--breadcrumb-link-hover-color, $breadcrumb-link-hover-color),
163
+ text-decoration:
164
+ var(
165
+ --breadcrumb-link-hover-text-decoration,
166
+ $breadcrumb-link-hover-text-decoration
167
+ ),
168
+ ),
169
+
170
+ focus: (),
171
+ ),
172
+ $breadcrumb-link
173
+ );
174
+
175
+ // Breadcrumb Item Expand
176
+
177
+ $breadcrumb-toggle: () !default;
178
+ $breadcrumb-toggle: map-merge(
179
+ (
180
+ color: $breadcrumb-link-color,
181
+ flex-shrink: 0,
182
+ margin-top: $breadcrumb-padding-y,
183
+ ),
184
+ $breadcrumb-toggle
185
+ );
186
+
187
+ $breadcrumb-bar: () !default;
188
+ $breadcrumb-bar: map-deep-merge(
189
+ (
190
+ display: flex,
191
+ ),
192
+ $breadcrumb-bar
193
+ );