@clayui/css 3.64.0 → 3.68.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 +67 -134
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +50 -115
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +109 -74
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_alerts.scss +1 -0
- package/src/scss/atlas/variables/_dropdowns.scss +2 -2
- package/src/scss/atlas/variables/_forms.scss +6 -2
- package/src/scss/atlas/variables/_globals.scss +1 -1
- package/src/scss/cadmin/components/_alerts.scss +26 -6
- package/src/scss/cadmin/components/_aspect-ratio.scss +29 -14
- package/src/scss/cadmin/components/_badges.scss +26 -6
- package/src/scss/cadmin/components/_buttons.scss +129 -63
- package/src/scss/cadmin/components/_dropdowns.scss +22 -14
- package/src/scss/cadmin/components/_labels.scss +52 -12
- package/src/scss/cadmin/components/_popovers.scss +12 -4
- package/src/scss/cadmin/components/_print.scss +3 -3
- package/src/scss/cadmin/components/_reboot.scss +3 -3
- package/src/scss/cadmin/components/_stickers.scss +52 -12
- package/src/scss/cadmin/components/_utilities-functional-important.scss +49 -62
- package/src/scss/cadmin/components/_utilities.scss +7 -6
- package/src/scss/cadmin/variables/_alerts.scss +2 -0
- package/src/scss/cadmin/variables/_buttons.scss +23 -0
- package/src/scss/cadmin/variables/_dropdowns.scss +10 -10
- package/src/scss/cadmin/variables/_forms.scss +7 -3
- package/src/scss/cadmin/variables/_globals.scss +1 -1
- package/src/scss/cadmin/variables/_modals.scss +3 -2
- package/src/scss/cadmin/variables/_popovers.scss +3 -2
- package/src/scss/cadmin/variables/_utilities.scss +309 -0
- package/src/scss/components/_alerts.scss +53 -85
- package/src/scss/components/_aspect-ratio.scss +29 -14
- package/src/scss/components/_badges.scss +25 -5
- package/src/scss/components/_buttons.scss +100 -72
- package/src/scss/components/_custom-forms.scss +4 -12
- package/src/scss/components/_date-picker.scss +6 -23
- package/src/scss/components/_dropdowns.scss +30 -35
- package/src/scss/components/_forms.scss +16 -53
- package/src/scss/components/_icons.scss +4 -4
- package/src/scss/components/_labels.scss +56 -20
- package/src/scss/components/_list-group.scss +4 -9
- package/src/scss/components/_modals.scss +2 -6
- package/src/scss/components/_popovers.scss +12 -4
- package/src/scss/components/_print.scss +3 -3
- package/src/scss/components/_progress-bars.scss +2 -6
- package/src/scss/components/_reboot.scss +3 -3
- package/src/scss/components/_sidebar.scss +3 -1
- package/src/scss/components/_stickers.scss +53 -25
- package/src/scss/components/_type.scss +3 -3
- package/src/scss/components/_utilities-functional-important.scss +40 -18
- package/src/scss/components/_utilities.scss +7 -6
- package/src/scss/functions/_global-functions.scss +9 -9
- package/src/scss/functions/_type-conversion-functions.scss +6 -6
- package/src/scss/mixins/_alerts.scss +10 -24
- package/src/scss/mixins/_aspect-ratio.scss +51 -49
- package/src/scss/mixins/_badges.scss +140 -140
- package/src/scss/mixins/_buttons.scss +2 -6
- package/src/scss/mixins/_cards.scss +4 -10
- package/src/scss/mixins/_dropdown-menu.scss +19 -31
- package/src/scss/mixins/_globals.scss +2 -0
- package/src/scss/mixins/_grid.scss +59 -51
- package/src/scss/mixins/_labels.scss +228 -212
- package/src/scss/mixins/_menubar.scss +15 -46
- package/src/scss/mixins/_navbar.scss +41 -43
- package/src/scss/mixins/_pagination.scss +35 -71
- package/src/scss/mixins/_sheet.scss +2 -6
- package/src/scss/mixins/_stickers.scss +10 -19
- package/src/scss/mixins/_tbar.scss +10 -30
- package/src/scss/mixins/_utilities.scss +7 -7
- package/src/scss/variables/_alerts.scss +3 -0
- package/src/scss/variables/_dropdowns.scss +4 -4
- package/src/scss/variables/_forms.scss +3 -1
- package/src/scss/variables/_globals.scss +1 -1
- package/src/scss/variables/_modals.scss +3 -2
- package/src/scss/variables/_popovers.scss +3 -1
- package/src/scss/variables/_utilities.scss +22 -0
|
@@ -111,39 +111,35 @@
|
|
|
111
111
|
|
|
112
112
|
> a,
|
|
113
113
|
> button {
|
|
114
|
-
@include clay-link(
|
|
114
|
+
@include clay-link(map-get($map, link));
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
&.active {
|
|
118
118
|
> a,
|
|
119
119
|
> button {
|
|
120
|
-
@include clay-link(
|
|
121
|
-
setter(map-deep-get($map, link, active-class), ())
|
|
122
|
-
);
|
|
120
|
+
@include clay-link(map-deep-get($map, link, active-class));
|
|
123
121
|
}
|
|
124
122
|
}
|
|
125
123
|
|
|
126
124
|
&.disabled {
|
|
127
125
|
> a,
|
|
128
126
|
> button {
|
|
129
|
-
@include clay-link(
|
|
130
|
-
setter(map-deep-get($map, link, disabled), ())
|
|
131
|
-
);
|
|
127
|
+
@include clay-link(map-deep-get($map, link, disabled));
|
|
132
128
|
}
|
|
133
129
|
}
|
|
134
130
|
|
|
135
131
|
.dropdown-menu {
|
|
136
132
|
@include clay-dropdown-menu-variant(
|
|
137
|
-
|
|
133
|
+
map-get($map, dropdown-menu)
|
|
138
134
|
);
|
|
139
135
|
}
|
|
140
136
|
|
|
141
137
|
.lexicon-icon {
|
|
142
|
-
@include clay-css(map-
|
|
138
|
+
@include clay-css(map-get($map, lexicon-icon));
|
|
143
139
|
}
|
|
144
140
|
|
|
145
141
|
+ .pagination-results {
|
|
146
|
-
@include clay-css(map-
|
|
142
|
+
@include clay-css(map-get($map, pagination-results));
|
|
147
143
|
}
|
|
148
144
|
|
|
149
145
|
@if (map-get($map, media-breakpoint-down)) {
|
|
@@ -162,10 +158,7 @@
|
|
|
162
158
|
> a,
|
|
163
159
|
> button {
|
|
164
160
|
@include clay-link(
|
|
165
|
-
|
|
166
|
-
map-deep-get($media-breakpoint-down, link),
|
|
167
|
-
()
|
|
168
|
-
)
|
|
161
|
+
map-get($media-breakpoint-down, link)
|
|
169
162
|
);
|
|
170
163
|
}
|
|
171
164
|
|
|
@@ -173,13 +166,10 @@
|
|
|
173
166
|
> a,
|
|
174
167
|
> button {
|
|
175
168
|
@include clay-link(
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
active-class
|
|
181
|
-
),
|
|
182
|
-
()
|
|
169
|
+
map-deep-get(
|
|
170
|
+
$media-breakpoint-down,
|
|
171
|
+
link,
|
|
172
|
+
active-class
|
|
183
173
|
)
|
|
184
174
|
);
|
|
185
175
|
}
|
|
@@ -189,13 +179,10 @@
|
|
|
189
179
|
> a,
|
|
190
180
|
> button {
|
|
191
181
|
@include clay-link(
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
disabled
|
|
197
|
-
),
|
|
198
|
-
()
|
|
182
|
+
map-deep-get(
|
|
183
|
+
$media-breakpoint-down,
|
|
184
|
+
link,
|
|
185
|
+
disabled
|
|
199
186
|
)
|
|
200
187
|
);
|
|
201
188
|
}
|
|
@@ -203,28 +190,19 @@
|
|
|
203
190
|
|
|
204
191
|
.dropdown-menu {
|
|
205
192
|
@include clay-dropdown-menu-variant(
|
|
206
|
-
|
|
207
|
-
map-deep-get(
|
|
208
|
-
$media-breakpoint-down,
|
|
209
|
-
dropdown-menu
|
|
210
|
-
),
|
|
211
|
-
()
|
|
212
|
-
)
|
|
193
|
+
map-get($media-breakpoint-down, dropdown-menu)
|
|
213
194
|
);
|
|
214
195
|
}
|
|
215
196
|
|
|
216
197
|
.lexicon-icon {
|
|
217
198
|
@include clay-css(
|
|
218
|
-
map-
|
|
219
|
-
$media-breakpoint-down,
|
|
220
|
-
lexicon-icon
|
|
221
|
-
)
|
|
199
|
+
map-get($media-breakpoint-down, lexicon-icon)
|
|
222
200
|
);
|
|
223
201
|
}
|
|
224
202
|
|
|
225
203
|
+ .pagination-results {
|
|
226
204
|
@include clay-css(
|
|
227
|
-
map-
|
|
205
|
+
map-get(
|
|
228
206
|
$media-breakpoint-down,
|
|
229
207
|
pagination-results
|
|
230
208
|
)
|
|
@@ -317,7 +295,7 @@
|
|
|
317
295
|
}
|
|
318
296
|
|
|
319
297
|
.page-link {
|
|
320
|
-
@include clay-link(
|
|
298
|
+
@include clay-link(map-get($map, page-link));
|
|
321
299
|
}
|
|
322
300
|
|
|
323
301
|
.page-item:first-child .page-link,
|
|
@@ -334,10 +312,7 @@
|
|
|
334
312
|
&.active {
|
|
335
313
|
.page-link {
|
|
336
314
|
@include clay-link(
|
|
337
|
-
|
|
338
|
-
map-deep-get($map, page-link, active-class),
|
|
339
|
-
()
|
|
340
|
-
)
|
|
315
|
+
map-deep-get($map, page-link, active-class)
|
|
341
316
|
);
|
|
342
317
|
}
|
|
343
318
|
}
|
|
@@ -345,21 +320,19 @@
|
|
|
345
320
|
&.disabled {
|
|
346
321
|
.page-link {
|
|
347
322
|
@include clay-link(
|
|
348
|
-
|
|
323
|
+
map-deep-get($map, page-link, disabled)
|
|
349
324
|
);
|
|
350
325
|
}
|
|
351
326
|
}
|
|
352
327
|
}
|
|
353
328
|
|
|
354
329
|
.pagination {
|
|
355
|
-
@include clay-pagination-variant(
|
|
356
|
-
map-deep-get($map, pagination)
|
|
357
|
-
);
|
|
330
|
+
@include clay-pagination-variant(map-get($map, pagination));
|
|
358
331
|
}
|
|
359
332
|
|
|
360
333
|
.pagination-items-per-page {
|
|
361
334
|
@include clay-pagination-items-per-page-variant(
|
|
362
|
-
map-
|
|
335
|
+
map-get($map, pagination-items-per-page)
|
|
363
336
|
);
|
|
364
337
|
}
|
|
365
338
|
|
|
@@ -378,16 +351,13 @@
|
|
|
378
351
|
|
|
379
352
|
.page-item {
|
|
380
353
|
@include clay-css(
|
|
381
|
-
map-
|
|
354
|
+
map-get($media-breakpoint-down, page-item)
|
|
382
355
|
);
|
|
383
356
|
}
|
|
384
357
|
|
|
385
358
|
.page-link {
|
|
386
359
|
@include clay-link(
|
|
387
|
-
|
|
388
|
-
map-get($media-breakpoint-down, page-link),
|
|
389
|
-
()
|
|
390
|
-
)
|
|
360
|
+
map-get($media-breakpoint-down, page-link)
|
|
391
361
|
);
|
|
392
362
|
}
|
|
393
363
|
|
|
@@ -409,13 +379,10 @@
|
|
|
409
379
|
&.active {
|
|
410
380
|
.page-link {
|
|
411
381
|
@include clay-link(
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
active
|
|
417
|
-
),
|
|
418
|
-
()
|
|
382
|
+
map-deep-get(
|
|
383
|
+
$media-breakpoint-down,
|
|
384
|
+
page-link,
|
|
385
|
+
active
|
|
419
386
|
)
|
|
420
387
|
);
|
|
421
388
|
}
|
|
@@ -424,13 +391,10 @@
|
|
|
424
391
|
&.disabled {
|
|
425
392
|
.page-link {
|
|
426
393
|
@include clay-link(
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
disabled
|
|
432
|
-
),
|
|
433
|
-
()
|
|
394
|
+
map-deep-get(
|
|
395
|
+
$media-breakpoint-down,
|
|
396
|
+
page-link,
|
|
397
|
+
disabled
|
|
434
398
|
)
|
|
435
399
|
);
|
|
436
400
|
}
|
|
@@ -439,13 +403,13 @@
|
|
|
439
403
|
|
|
440
404
|
.pagination {
|
|
441
405
|
@include clay-pagination-variant(
|
|
442
|
-
map-
|
|
406
|
+
map-get($media-breakpoint-down, pagination)
|
|
443
407
|
);
|
|
444
408
|
}
|
|
445
409
|
|
|
446
410
|
.pagination-items-per-page {
|
|
447
411
|
@include clay-pagination-items-per-page-variant(
|
|
448
|
-
map-
|
|
412
|
+
map-get(
|
|
449
413
|
$media-breakpoint-down,
|
|
450
414
|
pagination-items-per-page
|
|
451
415
|
)
|
|
@@ -31,10 +31,6 @@
|
|
|
31
31
|
)
|
|
32
32
|
);
|
|
33
33
|
|
|
34
|
-
$btn-group-mobile: setter(map-get($mobile, btn-group), ());
|
|
35
|
-
|
|
36
|
-
$btn-group-item-mobile: setter(map-get($mobile, btn-group-item), ());
|
|
37
|
-
|
|
38
34
|
@if ($enabled) {
|
|
39
35
|
@include media-breakpoint-down($breakpoint-down) {
|
|
40
36
|
@include clay-css($mobile);
|
|
@@ -44,11 +40,11 @@
|
|
|
44
40
|
}
|
|
45
41
|
|
|
46
42
|
.btn-group {
|
|
47
|
-
@include clay-css($btn-group
|
|
43
|
+
@include clay-css(map-get($mobile, btn-group));
|
|
48
44
|
}
|
|
49
45
|
|
|
50
46
|
.btn-group-item {
|
|
51
|
-
@include clay-css($btn-group-item
|
|
47
|
+
@include clay-css(map-get($mobile, btn-group-item));
|
|
52
48
|
}
|
|
53
49
|
}
|
|
54
50
|
}
|
|
@@ -222,58 +222,49 @@
|
|
|
222
222
|
|
|
223
223
|
.lexicon-icon {
|
|
224
224
|
@include clay-css(
|
|
225
|
-
|
|
226
|
-
map-deep-get($map, inline-item, lexicon-icon),
|
|
227
|
-
()
|
|
228
|
-
)
|
|
225
|
+
map-deep-get($map, inline-item, lexicon-icon)
|
|
229
226
|
);
|
|
230
227
|
}
|
|
231
228
|
}
|
|
232
229
|
|
|
233
230
|
.lexicon-icon {
|
|
234
|
-
@include clay-css(
|
|
231
|
+
@include clay-css(map-get($map, lexicon-icon));
|
|
235
232
|
}
|
|
236
233
|
|
|
237
234
|
.sticker-img {
|
|
238
|
-
@include clay-css(
|
|
235
|
+
@include clay-css(map-get($map, sticker-img));
|
|
239
236
|
}
|
|
240
237
|
|
|
241
238
|
.sticker-overlay {
|
|
242
|
-
@include clay-css(
|
|
239
|
+
@include clay-css(map-get($map, sticker-overlay));
|
|
243
240
|
}
|
|
244
241
|
|
|
245
242
|
&.rounded {
|
|
246
|
-
@include clay-css(
|
|
243
|
+
@include clay-css(map-get($map, rounded));
|
|
247
244
|
|
|
248
245
|
.sticker-overlay {
|
|
249
246
|
@include clay-css(
|
|
250
|
-
|
|
247
|
+
map-deep-get($map, rounded, sticker-overlay)
|
|
251
248
|
);
|
|
252
249
|
}
|
|
253
250
|
}
|
|
254
251
|
|
|
255
252
|
&.rounded-circle {
|
|
256
|
-
@include clay-css(
|
|
253
|
+
@include clay-css(map-get($map, rounded-circle));
|
|
257
254
|
|
|
258
255
|
.sticker-overlay {
|
|
259
256
|
@include clay-css(
|
|
260
|
-
|
|
261
|
-
map-deep-get($map, rounded-circle, sticker-overlay),
|
|
262
|
-
()
|
|
263
|
-
)
|
|
257
|
+
map-deep-get($map, rounded-circle, sticker-overlay)
|
|
264
258
|
);
|
|
265
259
|
}
|
|
266
260
|
}
|
|
267
261
|
|
|
268
262
|
&.rounded-0 {
|
|
269
|
-
@include clay-css(
|
|
263
|
+
@include clay-css(map-get($map, rounded-0));
|
|
270
264
|
|
|
271
265
|
.sticker-overlay {
|
|
272
266
|
@include clay-css(
|
|
273
|
-
|
|
274
|
-
map-deep-get($map, rounded-0, sticker-overlay),
|
|
275
|
-
()
|
|
276
|
-
)
|
|
267
|
+
map-deep-get($map, rounded-0, sticker-overlay)
|
|
277
268
|
);
|
|
278
269
|
}
|
|
279
270
|
}
|
|
@@ -105,8 +105,6 @@
|
|
|
105
105
|
)
|
|
106
106
|
);
|
|
107
107
|
|
|
108
|
-
$nav: setter(map-get($map, nav), ());
|
|
109
|
-
|
|
110
108
|
$item: setter(map-get($map, item), ());
|
|
111
109
|
$item: map-merge(
|
|
112
110
|
$item,
|
|
@@ -139,12 +137,6 @@
|
|
|
139
137
|
)
|
|
140
138
|
);
|
|
141
139
|
|
|
142
|
-
$item-expand: setter(map-get($map, item-expand), ());
|
|
143
|
-
|
|
144
|
-
$divider-before: setter(map-get($map, divider-before), ());
|
|
145
|
-
|
|
146
|
-
$divider-after: setter(map-get($map, divider-after), ());
|
|
147
|
-
|
|
148
140
|
$btn: setter(map-get($map, btn), ());
|
|
149
141
|
$btn: map-merge(
|
|
150
142
|
$btn,
|
|
@@ -410,18 +402,6 @@
|
|
|
410
402
|
)
|
|
411
403
|
);
|
|
412
404
|
|
|
413
|
-
$component-action: setter(map-get($map, component-action), ());
|
|
414
|
-
|
|
415
|
-
$component-link: setter(map-get($map, component-link), ());
|
|
416
|
-
|
|
417
|
-
$component-title: setter(map-get($map, component-title), ());
|
|
418
|
-
|
|
419
|
-
$component-text: setter(map-get($map, component-text), ());
|
|
420
|
-
|
|
421
|
-
$component-label: setter(map-get($map, component-label), ());
|
|
422
|
-
|
|
423
|
-
$tbar-label-size: setter(map-get($map, tbar-label-size), ());
|
|
424
|
-
|
|
425
405
|
@include clay-css($base);
|
|
426
406
|
|
|
427
407
|
strong {
|
|
@@ -429,15 +409,15 @@
|
|
|
429
409
|
}
|
|
430
410
|
|
|
431
411
|
.component-action {
|
|
432
|
-
@include clay-link($component-action);
|
|
412
|
+
@include clay-link(map-get($map, component-action));
|
|
433
413
|
}
|
|
434
414
|
|
|
435
415
|
.component-link {
|
|
436
|
-
@include clay-link($component-link);
|
|
416
|
+
@include clay-link(map-get($map, component-link));
|
|
437
417
|
}
|
|
438
418
|
|
|
439
419
|
.tbar-nav {
|
|
440
|
-
@include clay-css($nav);
|
|
420
|
+
@include clay-css(map-get($map, nav));
|
|
441
421
|
}
|
|
442
422
|
|
|
443
423
|
.tbar-item {
|
|
@@ -445,15 +425,15 @@
|
|
|
445
425
|
}
|
|
446
426
|
|
|
447
427
|
.tbar-divider-before::before {
|
|
448
|
-
@include clay-css($divider-before);
|
|
428
|
+
@include clay-css(map-get($map, divider-before));
|
|
449
429
|
}
|
|
450
430
|
|
|
451
431
|
.tbar-divider-after::after {
|
|
452
|
-
@include clay-css($divider-after);
|
|
432
|
+
@include clay-css(map-get($map, divider-after));
|
|
453
433
|
}
|
|
454
434
|
|
|
455
435
|
.tbar-item-expand {
|
|
456
|
-
@include clay-css($item-expand);
|
|
436
|
+
@include clay-css(map-get($map, item-expand));
|
|
457
437
|
}
|
|
458
438
|
|
|
459
439
|
.tbar-btn {
|
|
@@ -509,19 +489,19 @@
|
|
|
509
489
|
}
|
|
510
490
|
|
|
511
491
|
.component-title {
|
|
512
|
-
@include clay-text-typography($component-title);
|
|
492
|
+
@include clay-text-typography(map-get($map, component-title));
|
|
513
493
|
}
|
|
514
494
|
|
|
515
495
|
.component-text {
|
|
516
|
-
@include clay-text-typography($component-text);
|
|
496
|
+
@include clay-text-typography(map-get($map, component-text));
|
|
517
497
|
}
|
|
518
498
|
|
|
519
499
|
.component-label {
|
|
520
|
-
@include clay-label-variant($component-label);
|
|
500
|
+
@include clay-label-variant(map-get($map, component-label));
|
|
521
501
|
}
|
|
522
502
|
|
|
523
503
|
.tbar-label {
|
|
524
|
-
@include clay-label-size($tbar-label-size);
|
|
504
|
+
@include clay-label-size(map-get($map, tbar-label-size));
|
|
525
505
|
}
|
|
526
506
|
}
|
|
527
507
|
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
resize: $direction;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
// *
|
|
33
|
-
// * SPDX-License-Identifier:
|
|
34
|
-
// * SPDX-
|
|
32
|
+
// * SPDX-SnippetBegin
|
|
33
|
+
// * SPDX-License-Identifier: Apache-2.0
|
|
34
|
+
// * SPDX-SnippetCopyrightText: © 2018 A11Y Project <https://a11yproject.com/posts/how-to-hide-content/>
|
|
35
35
|
// *
|
|
36
36
|
|
|
37
37
|
/// A Bootstrap 4 mixin that generates styles to only display content to screen readers.
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
width: 1px;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
// *
|
|
51
|
+
// * SPDX-SnippetEnd
|
|
52
52
|
|
|
53
|
-
// *
|
|
53
|
+
// * SPDX-SnippetBegin
|
|
54
54
|
// * SPDX-License-Identifier: MIT
|
|
55
|
-
// * SPDX-
|
|
55
|
+
// * SPDX-SnippetCopyrightText: © 2018 HTML5 Boilerplate <https://github.com/h5bp/main.css>
|
|
56
56
|
// *
|
|
57
57
|
|
|
58
58
|
/// A Bootstrap 4 mixin to display `.sr-only` content when focused. Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
// *
|
|
72
|
+
// * SPDX-SnippetEnd
|
|
73
73
|
|
|
74
74
|
/// A Bootstrap 4 mixin for generating `width` and `height` properties.
|
|
75
75
|
/// @deprecated
|
|
@@ -182,6 +182,8 @@ $alert-indicator: () !default;
|
|
|
182
182
|
$alert-indicator: map-deep-merge(
|
|
183
183
|
(
|
|
184
184
|
font-size: $alert-indicator-font-size,
|
|
185
|
+
line-height: 1,
|
|
186
|
+
vertical-align: 8%,
|
|
185
187
|
lead: (
|
|
186
188
|
margin-left: $alert-lead-spacer-x,
|
|
187
189
|
),
|
|
@@ -397,6 +399,7 @@ $alert-notification-sm-down: map-merge(
|
|
|
397
399
|
$alert-autofit-row: () !default;
|
|
398
400
|
$alert-autofit-row: map-deep-merge(
|
|
399
401
|
(
|
|
402
|
+
align-items: baseline,
|
|
400
403
|
margin-left: -0.5rem,
|
|
401
404
|
margin-right: -0.5rem,
|
|
402
405
|
width: auto,
|
|
@@ -217,16 +217,16 @@ $dropdown-item-base: map-deep-merge(
|
|
|
217
217
|
line-height: calc(#{$dropdown-font-size} * #{$line-height-base}),
|
|
218
218
|
),
|
|
219
219
|
'&.autofit-row': (
|
|
220
|
-
padding-left:
|
|
221
|
-
padding-right:
|
|
220
|
+
padding-left: calc(#{$dropdown-item-padding-x} - 0.25rem),
|
|
221
|
+
padding-right: calc(#{$dropdown-item-padding-x} - 0.25rem),
|
|
222
222
|
autofit-col: (
|
|
223
223
|
padding-left: 0.25rem,
|
|
224
224
|
padding-right: 0.25rem,
|
|
225
225
|
),
|
|
226
226
|
),
|
|
227
227
|
autofit-row: (
|
|
228
|
-
margin-left: 0.25rem,
|
|
229
|
-
margin-right: 0.25rem,
|
|
228
|
+
margin-left: -0.25rem,
|
|
229
|
+
margin-right: -0.25rem,
|
|
230
230
|
width: auto,
|
|
231
231
|
autofit-col: (
|
|
232
232
|
padding-left: 0.25rem,
|
|
@@ -116,7 +116,9 @@ $input-plaintext-color: $body-color !default;
|
|
|
116
116
|
|
|
117
117
|
/// @deprecated with no replacement
|
|
118
118
|
|
|
119
|
-
$input-height-border:
|
|
119
|
+
$input-height-border: calc(
|
|
120
|
+
#{$input-border-top-width} + #{$input-border-bottom-width}
|
|
121
|
+
) !default;
|
|
120
122
|
|
|
121
123
|
/// @deprecated with no replacement
|
|
122
124
|
|
|
@@ -35,7 +35,7 @@ $enable-grid-classes: true !default;
|
|
|
35
35
|
$enable-pointer-cursor-for-buttons: true !default;
|
|
36
36
|
$enable-print-styles: true !default;
|
|
37
37
|
$enable-responsive-font-sizes: false !default;
|
|
38
|
-
$enable-validation-icons:
|
|
38
|
+
$enable-validation-icons: false !default;
|
|
39
39
|
$enable-deprecation-messages: true !default;
|
|
40
40
|
|
|
41
41
|
// Deprecated, no longer affects any compiled CSS
|
|
@@ -19,8 +19,9 @@ $modal-content-border-color: rgba($black, 0.2) !default;
|
|
|
19
19
|
$modal-content-border-width: $border-width !default;
|
|
20
20
|
|
|
21
21
|
$modal-content-border-radius: $border-radius-lg !default;
|
|
22
|
-
$modal-content-inner-border-radius:
|
|
23
|
-
$modal-content-border-width
|
|
22
|
+
$modal-content-inner-border-radius: calc(
|
|
23
|
+
#{$modal-content-border-radius} - #{$modal-content-border-width}
|
|
24
|
+
) !default;
|
|
24
25
|
|
|
25
26
|
$modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, 0.5) !default;
|
|
26
27
|
$modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, 0.5) !default;
|
|
@@ -3,7 +3,9 @@ $popover-border-color: rgba($black, 0.2) !default;
|
|
|
3
3
|
$popover-border-width: $border-width !default;
|
|
4
4
|
|
|
5
5
|
$popover-border-radius: $border-radius-lg !default;
|
|
6
|
-
$popover-inner-border-radius:
|
|
6
|
+
$popover-inner-border-radius: calc(
|
|
7
|
+
#{$popover-border-radius} - #{$popover-border-width}
|
|
8
|
+
) !default;
|
|
7
9
|
|
|
8
10
|
$popover-box-shadow: 0 0.25rem 0.5rem rgba($black, 0.2) !default;
|
|
9
11
|
$popover-font-size: $font-size-sm !default;
|
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
$bg-checkered-fg: $gray-200 !default;
|
|
2
|
+
|
|
3
|
+
// .inline-scroller
|
|
4
|
+
|
|
2
5
|
$inline-scroller-max-height: 125px !default;
|
|
3
6
|
|
|
7
|
+
$inline-scroller: () !default;
|
|
8
|
+
$inline-scroller: map-deep-merge(
|
|
9
|
+
(
|
|
10
|
+
-webkit-overflow-scrolling: touch,
|
|
11
|
+
list-style: none,
|
|
12
|
+
margin: 0,
|
|
13
|
+
max-height: $inline-scroller-max-height,
|
|
14
|
+
overflow: auto,
|
|
15
|
+
padding: 0,
|
|
16
|
+
focus: (
|
|
17
|
+
outline: 0,
|
|
18
|
+
),
|
|
19
|
+
focus-visible: (
|
|
20
|
+
box-shadow: $component-focus-box-shadow,
|
|
21
|
+
)
|
|
22
|
+
),
|
|
23
|
+
$inline-scroller
|
|
24
|
+
);
|
|
25
|
+
|
|
4
26
|
// Autofit Row
|
|
5
27
|
|
|
6
28
|
$autofit-col-expand-min-width: 3.125rem !default; // 50px
|