bootstrap-scss 5.1.3 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +5 -5
  3. package/_accordion.scss +146 -118
  4. package/_alert.scss +71 -57
  5. package/_badge.scss +38 -29
  6. package/_breadcrumb.scss +40 -28
  7. package/_button-group.scss +142 -139
  8. package/_buttons.scss +186 -111
  9. package/_card.scss +234 -216
  10. package/_carousel.scss +229 -229
  11. package/_close.scss +40 -40
  12. package/_containers.scss +41 -41
  13. package/_dropdown.scss +248 -240
  14. package/_forms.scss +9 -9
  15. package/_functions.scss +302 -302
  16. package/_grid.scss +33 -33
  17. package/_helpers.scss +10 -9
  18. package/_list-group.scss +191 -174
  19. package/_maps.scss +54 -0
  20. package/_mixins.scss +43 -43
  21. package/_modal.scss +237 -209
  22. package/_nav.scss +172 -139
  23. package/_navbar.scss +276 -335
  24. package/_offcanvas.scss +143 -83
  25. package/_pagination.scss +109 -64
  26. package/_placeholders.scss +51 -51
  27. package/_popover.scss +196 -158
  28. package/_progress.scss +59 -48
  29. package/_reboot.scss +610 -625
  30. package/_root.scss +73 -54
  31. package/_spinners.scss +85 -69
  32. package/_tables.scss +164 -155
  33. package/_toasts.scss +70 -51
  34. package/_tooltip.scss +120 -115
  35. package/_transitions.scss +27 -27
  36. package/_type.scss +106 -104
  37. package/_utilities.scss +647 -630
  38. package/_variables.scss +1633 -1641
  39. package/bootstrap-grid.scss +64 -67
  40. package/bootstrap-reboot.scss +9 -13
  41. package/bootstrap-utilities.scss +15 -18
  42. package/bootstrap.scss +51 -53
  43. package/forms/_floating-labels.scss +74 -63
  44. package/forms/_form-check.scss +175 -152
  45. package/forms/_form-control.scss +194 -219
  46. package/forms/_form-range.scss +91 -91
  47. package/forms/_form-select.scss +71 -72
  48. package/forms/_form-text.scss +11 -11
  49. package/forms/_input-group.scss +129 -121
  50. package/forms/_labels.scss +36 -36
  51. package/forms/_validation.scss +12 -12
  52. package/helpers/_clearfix.scss +3 -3
  53. package/helpers/_color-bg.scss +10 -0
  54. package/helpers/_colored-links.scss +12 -12
  55. package/helpers/_position.scss +36 -30
  56. package/helpers/_ratio.scss +26 -26
  57. package/helpers/_stacks.scss +15 -15
  58. package/helpers/_stretched-link.scss +15 -15
  59. package/helpers/_text-truncation.scss +7 -7
  60. package/helpers/_visually-hidden.scss +8 -8
  61. package/helpers/_vr.scss +8 -8
  62. package/mixins/_alert.scss +15 -11
  63. package/mixins/_backdrop.scss +14 -14
  64. package/mixins/_banner.scss +9 -0
  65. package/mixins/_border-radius.scss +78 -78
  66. package/mixins/_box-shadow.scss +18 -18
  67. package/mixins/_breakpoints.scss +127 -127
  68. package/mixins/_buttons.scss +70 -133
  69. package/mixins/_caret.scss +64 -64
  70. package/mixins/_clearfix.scss +9 -9
  71. package/mixins/_color-scheme.scss +7 -7
  72. package/mixins/_container.scss +11 -9
  73. package/mixins/_forms.scss +152 -144
  74. package/mixins/_gradients.scss +47 -47
  75. package/mixins/_grid.scss +151 -151
  76. package/mixins/_image.scss +16 -16
  77. package/mixins/_list-group.scss +24 -24
  78. package/mixins/_lists.scss +7 -7
  79. package/mixins/_pagination.scss +10 -31
  80. package/mixins/_reset-text.scss +17 -17
  81. package/mixins/_table-variants.scss +24 -21
  82. package/mixins/_transition.scss +26 -26
  83. package/mixins/_utilities.scss +97 -89
  84. package/mixins/_visually-hidden.scss +29 -29
  85. package/package.json +1 -1
  86. package/utilities/_api.scss +47 -47
  87. package/vendor/_rfs.scss +354 -354
package/_reboot.scss CHANGED
@@ -1,625 +1,610 @@
1
- // stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
-
3
-
4
- // Reboot
5
- //
6
- // Normalization of HTML elements, manually forked from Normalize.css to remove
7
- // styles targeting irrelevant browsers while applying new styles.
8
- //
9
- // Normalize is licensed MIT. https://github.com/necolas/normalize.css
10
-
11
-
12
- // Document
13
- //
14
- // Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
15
-
16
- *,
17
- *::before,
18
- *::after {
19
- box-sizing: border-box;
20
- }
21
-
22
-
23
- // Root
24
- //
25
- // Ability to the value of the root font sizes, affecting the value of `rem`.
26
- // null by default, thus nothing is generated.
27
-
28
- :root {
29
- @if $font-size-root != null {
30
- font-size: var(--#{$variable-prefix}root-font-size);
31
- }
32
-
33
- @if $enable-smooth-scroll {
34
- @media (prefers-reduced-motion: no-preference) {
35
- scroll-behavior: smooth;
36
- }
37
- }
38
- }
39
-
40
-
41
- // Body
42
- //
43
- // 1. Remove the margin in all browsers.
44
- // 2. As a best practice, apply a default `background-color`.
45
- // 3. Prevent adjustments of font size after orientation changes in iOS.
46
- // 4. Change the default tap highlight to be completely transparent in iOS.
47
-
48
- // scss-docs-start reboot-body-rules
49
- body {
50
- margin: 0; // 1
51
- font-family: var(--#{$variable-prefix}body-font-family);
52
- @include font-size(var(--#{$variable-prefix}body-font-size));
53
- font-weight: var(--#{$variable-prefix}body-font-weight);
54
- line-height: var(--#{$variable-prefix}body-line-height);
55
- color: var(--#{$variable-prefix}body-color);
56
- text-align: var(--#{$variable-prefix}body-text-align);
57
- background-color: var(--#{$variable-prefix}body-bg); // 2
58
- -webkit-text-size-adjust: 100%; // 3
59
- -webkit-tap-highlight-color: rgba($black, 0); // 4
60
- }
61
- // scss-docs-end reboot-body-rules
62
-
63
-
64
- // Content grouping
65
- //
66
- // 1. Reset Firefox's gray color
67
- // 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field
68
-
69
- hr {
70
- margin: $hr-margin-y 0;
71
- color: $hr-color; // 1
72
- background-color: currentColor;
73
- border: 0;
74
- opacity: $hr-opacity;
75
- }
76
-
77
- hr:not([size]) {
78
- height: $hr-height; // 2
79
- }
80
-
81
-
82
- // Typography
83
- //
84
- // 1. Remove top margins from headings
85
- // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
86
- // margin for easier control within type scales as it avoids margin collapsing.
87
-
88
- %heading {
89
- margin-top: 0; // 1
90
- margin-bottom: $headings-margin-bottom;
91
- font-family: $headings-font-family;
92
- font-style: $headings-font-style;
93
- font-weight: $headings-font-weight;
94
- line-height: $headings-line-height;
95
- color: $headings-color;
96
- }
97
-
98
- h1 {
99
- @extend %heading;
100
- @include font-size($h1-font-size);
101
- }
102
-
103
- h2 {
104
- @extend %heading;
105
- @include font-size($h2-font-size);
106
- }
107
-
108
- h3 {
109
- @extend %heading;
110
- @include font-size($h3-font-size);
111
- }
112
-
113
- h4 {
114
- @extend %heading;
115
- @include font-size($h4-font-size);
116
- }
117
-
118
- h5 {
119
- @extend %heading;
120
- @include font-size($h5-font-size);
121
- }
122
-
123
- h6 {
124
- @extend %heading;
125
- @include font-size($h6-font-size);
126
- }
127
-
128
-
129
- // Reset margins on paragraphs
130
- //
131
- // Similarly, the top margin on `<p>`s get reset. However, we also reset the
132
- // bottom margin to use `rem` units instead of `em`.
133
-
134
- p {
135
- margin-top: 0;
136
- margin-bottom: $paragraph-margin-bottom;
137
- }
138
-
139
-
140
- // Abbreviations
141
- //
142
- // 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin
143
- // 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
144
- // 3. Add explicit cursor to indicate changed behavior.
145
- // 4. Prevent the text-decoration to be skipped.
146
-
147
- abbr[title],
148
- abbr[data-bs-original-title] { // 1
149
- text-decoration: underline dotted; // 2
150
- cursor: help; // 3
151
- text-decoration-skip-ink: none; // 4
152
- }
153
-
154
-
155
- // Address
156
-
157
- address {
158
- margin-bottom: 1rem;
159
- font-style: normal;
160
- line-height: inherit;
161
- }
162
-
163
-
164
- // Lists
165
-
166
- ol,
167
- ul {
168
- padding-left: 2rem;
169
- }
170
-
171
- ol,
172
- ul,
173
- dl {
174
- margin-top: 0;
175
- margin-bottom: 1rem;
176
- }
177
-
178
- ol ol,
179
- ul ul,
180
- ol ul,
181
- ul ol {
182
- margin-bottom: 0;
183
- }
184
-
185
- dt {
186
- font-weight: $dt-font-weight;
187
- }
188
-
189
- // 1. Undo browser default
190
-
191
- dd {
192
- margin-bottom: .5rem;
193
- margin-left: 0; // 1
194
- }
195
-
196
-
197
- // Blockquote
198
-
199
- blockquote {
200
- margin: 0 0 1rem;
201
- }
202
-
203
-
204
- // Strong
205
- //
206
- // Add the correct font weight in Chrome, Edge, and Safari
207
-
208
- b,
209
- strong {
210
- font-weight: $font-weight-bolder;
211
- }
212
-
213
-
214
- // Small
215
- //
216
- // Add the correct font size in all browsers
217
-
218
- small {
219
- @include font-size($small-font-size);
220
- }
221
-
222
-
223
- // Mark
224
-
225
- mark {
226
- padding: $mark-padding;
227
- background-color: $mark-bg;
228
- }
229
-
230
-
231
- // Sub and Sup
232
- //
233
- // Prevent `sub` and `sup` elements from affecting the line height in
234
- // all browsers.
235
-
236
- sub,
237
- sup {
238
- position: relative;
239
- @include font-size($sub-sup-font-size);
240
- line-height: 0;
241
- vertical-align: baseline;
242
- }
243
-
244
- sub { bottom: -.25em; }
245
- sup { top: -.5em; }
246
-
247
-
248
- // Links
249
-
250
- a {
251
- color: $link-color;
252
- text-decoration: $link-decoration;
253
-
254
- &:hover {
255
- color: $link-hover-color;
256
- text-decoration: $link-hover-decoration;
257
- }
258
- }
259
-
260
- // And undo these styles for placeholder links/named anchors (without href).
261
- // It would be more straightforward to just use a[href] in previous block, but that
262
- // causes specificity issues in many other styles that are too complex to fix.
263
- // See https://github.com/twbs/bootstrap/issues/19402
264
-
265
- a:not([href]):not([class]) {
266
- &,
267
- &:hover {
268
- color: inherit;
269
- text-decoration: none;
270
- }
271
- }
272
-
273
-
274
- // Code
275
-
276
- pre,
277
- code,
278
- kbd,
279
- samp {
280
- font-family: $font-family-code;
281
- @include font-size(1em); // Correct the odd `em` font sizing in all browsers.
282
- direction: ltr #{"/* rtl:ignore */"};
283
- unicode-bidi: bidi-override;
284
- }
285
-
286
- // 1. Remove browser default top margin
287
- // 2. Reset browser default of `1em` to use `rem`s
288
- // 3. Don't allow content to break outside
289
-
290
- pre {
291
- display: block;
292
- margin-top: 0; // 1
293
- margin-bottom: 1rem; // 2
294
- overflow: auto; // 3
295
- @include font-size($code-font-size);
296
- color: $pre-color;
297
-
298
- // Account for some code outputs that place code tags in pre tags
299
- code {
300
- @include font-size(inherit);
301
- color: inherit;
302
- word-break: normal;
303
- }
304
- }
305
-
306
- code {
307
- @include font-size($code-font-size);
308
- color: $code-color;
309
- word-wrap: break-word;
310
-
311
- // Streamline the style when inside anchors to avoid broken underline and more
312
- a > & {
313
- color: inherit;
314
- }
315
- }
316
-
317
- kbd {
318
- padding: $kbd-padding-y $kbd-padding-x;
319
- @include font-size($kbd-font-size);
320
- color: $kbd-color;
321
- background-color: $kbd-bg;
322
- @include border-radius($border-radius-sm);
323
-
324
- kbd {
325
- padding: 0;
326
- @include font-size(1em);
327
- font-weight: $nested-kbd-font-weight;
328
- }
329
- }
330
-
331
-
332
- // Figures
333
- //
334
- // Apply a consistent margin strategy (matches our type styles).
335
-
336
- figure {
337
- margin: 0 0 1rem;
338
- }
339
-
340
-
341
- // Images and content
342
-
343
- img,
344
- svg {
345
- vertical-align: middle;
346
- }
347
-
348
-
349
- // Tables
350
- //
351
- // Prevent double borders
352
-
353
- table {
354
- caption-side: bottom;
355
- border-collapse: collapse;
356
- }
357
-
358
- caption {
359
- padding-top: $table-cell-padding-y;
360
- padding-bottom: $table-cell-padding-y;
361
- color: $table-caption-color;
362
- text-align: left;
363
- }
364
-
365
- // 1. Removes font-weight bold by inheriting
366
- // 2. Matches default `<td>` alignment by inheriting `text-align`.
367
- // 3. Fix alignment for Safari
368
-
369
- th {
370
- font-weight: $table-th-font-weight; // 1
371
- text-align: inherit; // 2
372
- text-align: -webkit-match-parent; // 3
373
- }
374
-
375
- thead,
376
- tbody,
377
- tfoot,
378
- tr,
379
- td,
380
- th {
381
- border-color: inherit;
382
- border-style: solid;
383
- border-width: 0;
384
- }
385
-
386
-
387
- // Forms
388
- //
389
- // 1. Allow labels to use `margin` for spacing.
390
-
391
- label {
392
- display: inline-block; // 1
393
- }
394
-
395
- // Remove the default `border-radius` that macOS Chrome adds.
396
- // See https://github.com/twbs/bootstrap/issues/24093
397
-
398
- button {
399
- // stylelint-disable-next-line property-disallowed-list
400
- border-radius: 0;
401
- }
402
-
403
- // Explicitly remove focus outline in Chromium when it shouldn't be
404
- // visible (e.g. as result of mouse click or touch tap). It already
405
- // should be doing this automatically, but seems to currently be
406
- // confused and applies its very visible two-tone outline anyway.
407
-
408
- button:focus:not(:focus-visible) {
409
- outline: 0;
410
- }
411
-
412
- // 1. Remove the margin in Firefox and Safari
413
-
414
- input,
415
- button,
416
- select,
417
- optgroup,
418
- textarea {
419
- margin: 0; // 1
420
- font-family: inherit;
421
- @include font-size(inherit);
422
- line-height: inherit;
423
- }
424
-
425
- // Remove the inheritance of text transform in Firefox
426
- button,
427
- select {
428
- text-transform: none;
429
- }
430
- // Set the cursor for non-`<button>` buttons
431
- //
432
- // Details at https://github.com/twbs/bootstrap/pull/30562
433
- [role="button"] {
434
- cursor: pointer;
435
- }
436
-
437
- select {
438
- // Remove the inheritance of word-wrap in Safari.
439
- // See https://github.com/twbs/bootstrap/issues/24990
440
- word-wrap: normal;
441
-
442
- // Undo the opacity change from Chrome
443
- &:disabled {
444
- opacity: 1;
445
- }
446
- }
447
-
448
- // Remove the dropdown arrow in Chrome from inputs built with datalists.
449
- // See https://stackoverflow.com/a/54997118
450
-
451
- [list]::-webkit-calendar-picker-indicator {
452
- display: none;
453
- }
454
-
455
- // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
456
- // controls in Android 4.
457
- // 2. Correct the inability to style clickable types in iOS and Safari.
458
- // 3. Opinionated: add "hand" cursor to non-disabled button elements.
459
-
460
- button,
461
- [type="button"], // 1
462
- [type="reset"],
463
- [type="submit"] {
464
- -webkit-appearance: button; // 2
465
-
466
- @if $enable-button-pointers {
467
- &:not(:disabled) {
468
- cursor: pointer; // 3
469
- }
470
- }
471
- }
472
-
473
- // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
474
-
475
- ::-moz-focus-inner {
476
- padding: 0;
477
- border-style: none;
478
- }
479
-
480
- // 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.
481
-
482
- textarea {
483
- resize: vertical; // 1
484
- }
485
-
486
- // 1. Browsers set a default `min-width: min-content;` on fieldsets,
487
- // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
488
- // So we reset that to ensure fieldsets behave more like a standard block element.
489
- // See https://github.com/twbs/bootstrap/issues/12359
490
- // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
491
- // 2. Reset the default outline behavior of fieldsets so they don't affect page layout.
492
-
493
- fieldset {
494
- min-width: 0; // 1
495
- padding: 0; // 2
496
- margin: 0; // 2
497
- border: 0; // 2
498
- }
499
-
500
- // 1. By using `float: left`, the legend will behave like a block element.
501
- // This way the border of a fieldset wraps around the legend if present.
502
- // 2. Fix wrapping bug.
503
- // See https://github.com/twbs/bootstrap/issues/29712
504
-
505
- legend {
506
- float: left; // 1
507
- width: 100%;
508
- padding: 0;
509
- margin-bottom: $legend-margin-bottom;
510
- @include font-size($legend-font-size);
511
- font-weight: $legend-font-weight;
512
- line-height: inherit;
513
-
514
- + * {
515
- clear: left; // 2
516
- }
517
- }
518
-
519
- // Fix height of inputs with a type of datetime-local, date, month, week, or time
520
- // See https://github.com/twbs/bootstrap/issues/18842
521
-
522
- ::-webkit-datetime-edit-fields-wrapper,
523
- ::-webkit-datetime-edit-text,
524
- ::-webkit-datetime-edit-minute,
525
- ::-webkit-datetime-edit-hour-field,
526
- ::-webkit-datetime-edit-day-field,
527
- ::-webkit-datetime-edit-month-field,
528
- ::-webkit-datetime-edit-year-field {
529
- padding: 0;
530
- }
531
-
532
- ::-webkit-inner-spin-button {
533
- height: auto;
534
- }
535
-
536
- // 1. Correct the outline style in Safari.
537
- // 2. This overrides the extra rounded corners on search inputs in iOS so that our
538
- // `.form-control` class can properly style them. Note that this cannot simply
539
- // be added to `.form-control` as it's not specific enough. For details, see
540
- // https://github.com/twbs/bootstrap/issues/11586.
541
-
542
- [type="search"] {
543
- outline-offset: -2px; // 1
544
- -webkit-appearance: textfield; // 2
545
- }
546
-
547
- // 1. A few input types should stay LTR
548
- // See https://rtlstyling.com/posts/rtl-styling#form-inputs
549
- // 2. RTL only output
550
- // See https://rtlcss.com/learn/usage-guide/control-directives/#raw
551
-
552
- /* rtl:raw:
553
- [type="tel"],
554
- [type="url"],
555
- [type="email"],
556
- [type="number"] {
557
- direction: ltr;
558
- }
559
- */
560
-
561
- // Remove the inner padding in Chrome and Safari on macOS.
562
-
563
- ::-webkit-search-decoration {
564
- -webkit-appearance: none;
565
- }
566
-
567
- // Remove padding around color pickers in webkit browsers
568
-
569
- ::-webkit-color-swatch-wrapper {
570
- padding: 0;
571
- }
572
-
573
-
574
- // Inherit font family and line height for file input buttons
575
-
576
- ::file-selector-button {
577
- font: inherit;
578
- }
579
-
580
- // 1. Change font properties to `inherit`
581
- // 2. Correct the inability to style clickable types in iOS and Safari.
582
-
583
- ::-webkit-file-upload-button {
584
- font: inherit; // 1
585
- -webkit-appearance: button; // 2
586
- }
587
-
588
- // Correct element displays
589
-
590
- output {
591
- display: inline-block;
592
- }
593
-
594
- // Remove border from iframe
595
-
596
- iframe {
597
- border: 0;
598
- }
599
-
600
- // Summary
601
- //
602
- // 1. Add the correct display in all browsers
603
-
604
- summary {
605
- display: list-item; // 1
606
- cursor: pointer;
607
- }
608
-
609
-
610
- // Progress
611
- //
612
- // Add the correct vertical alignment in Chrome, Firefox, and Opera.
613
-
614
- progress {
615
- vertical-align: baseline;
616
- }
617
-
618
-
619
- // Hidden attribute
620
- //
621
- // Always hide an element with the `hidden` HTML attribute.
622
-
623
- [hidden] {
624
- display: none !important;
625
- }
1
+ // stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
+
3
+
4
+ // Reboot
5
+ //
6
+ // Normalization of HTML elements, manually forked from Normalize.css to remove
7
+ // styles targeting irrelevant browsers while applying new styles.
8
+ //
9
+ // Normalize is licensed MIT. https://github.com/necolas/normalize.css
10
+
11
+
12
+ // Document
13
+ //
14
+ // Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
15
+
16
+ *,
17
+ *::before,
18
+ *::after {
19
+ box-sizing: border-box;
20
+ }
21
+
22
+
23
+ // Root
24
+ //
25
+ // Ability to the value of the root font sizes, affecting the value of `rem`.
26
+ // null by default, thus nothing is generated.
27
+
28
+ :root {
29
+ @if $font-size-root != null {
30
+ @include font-size(var(--#{$prefix}root-font-size));
31
+ }
32
+
33
+ @if $enable-smooth-scroll {
34
+ @media (prefers-reduced-motion: no-preference) {
35
+ scroll-behavior: smooth;
36
+ }
37
+ }
38
+ }
39
+
40
+
41
+ // Body
42
+ //
43
+ // 1. Remove the margin in all browsers.
44
+ // 2. As a best practice, apply a default `background-color`.
45
+ // 3. Prevent adjustments of font size after orientation changes in iOS.
46
+ // 4. Change the default tap highlight to be completely transparent in iOS.
47
+
48
+ // scss-docs-start reboot-body-rules
49
+ body {
50
+ margin: 0; // 1
51
+ font-family: var(--#{$prefix}body-font-family);
52
+ @include font-size(var(--#{$prefix}body-font-size));
53
+ font-weight: var(--#{$prefix}body-font-weight);
54
+ line-height: var(--#{$prefix}body-line-height);
55
+ color: var(--#{$prefix}body-color);
56
+ text-align: var(--#{$prefix}body-text-align);
57
+ background-color: var(--#{$prefix}body-bg); // 2
58
+ -webkit-text-size-adjust: 100%; // 3
59
+ -webkit-tap-highlight-color: rgba($black, 0); // 4
60
+ }
61
+ // scss-docs-end reboot-body-rules
62
+
63
+
64
+ // Content grouping
65
+ //
66
+ // 1. Reset Firefox's gray color
67
+
68
+ hr {
69
+ margin: $hr-margin-y 0;
70
+ color: $hr-color; // 1
71
+ border: 0;
72
+ border-top: $hr-border-width solid $hr-border-color;
73
+ opacity: $hr-opacity;
74
+ }
75
+
76
+
77
+ // Typography
78
+ //
79
+ // 1. Remove top margins from headings
80
+ // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
81
+ // margin for easier control within type scales as it avoids margin collapsing.
82
+
83
+ %heading {
84
+ margin-top: 0; // 1
85
+ margin-bottom: $headings-margin-bottom;
86
+ font-family: $headings-font-family;
87
+ font-style: $headings-font-style;
88
+ font-weight: $headings-font-weight;
89
+ line-height: $headings-line-height;
90
+ color: $headings-color;
91
+ }
92
+
93
+ h1 {
94
+ @extend %heading;
95
+ @include font-size($h1-font-size);
96
+ }
97
+
98
+ h2 {
99
+ @extend %heading;
100
+ @include font-size($h2-font-size);
101
+ }
102
+
103
+ h3 {
104
+ @extend %heading;
105
+ @include font-size($h3-font-size);
106
+ }
107
+
108
+ h4 {
109
+ @extend %heading;
110
+ @include font-size($h4-font-size);
111
+ }
112
+
113
+ h5 {
114
+ @extend %heading;
115
+ @include font-size($h5-font-size);
116
+ }
117
+
118
+ h6 {
119
+ @extend %heading;
120
+ @include font-size($h6-font-size);
121
+ }
122
+
123
+
124
+ // Reset margins on paragraphs
125
+ //
126
+ // Similarly, the top margin on `<p>`s get reset. However, we also reset the
127
+ // bottom margin to use `rem` units instead of `em`.
128
+
129
+ p {
130
+ margin-top: 0;
131
+ margin-bottom: $paragraph-margin-bottom;
132
+ }
133
+
134
+
135
+ // Abbreviations
136
+ //
137
+ // 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
138
+ // 2. Add explicit cursor to indicate changed behavior.
139
+ // 3. Prevent the text-decoration to be skipped.
140
+
141
+ abbr[title] {
142
+ text-decoration: underline dotted; // 1
143
+ cursor: help; // 2
144
+ text-decoration-skip-ink: none; // 3
145
+ }
146
+
147
+
148
+ // Address
149
+
150
+ address {
151
+ margin-bottom: 1rem;
152
+ font-style: normal;
153
+ line-height: inherit;
154
+ }
155
+
156
+
157
+ // Lists
158
+
159
+ ol,
160
+ ul {
161
+ padding-left: 2rem;
162
+ }
163
+
164
+ ol,
165
+ ul,
166
+ dl {
167
+ margin-top: 0;
168
+ margin-bottom: 1rem;
169
+ }
170
+
171
+ ol ol,
172
+ ul ul,
173
+ ol ul,
174
+ ul ol {
175
+ margin-bottom: 0;
176
+ }
177
+
178
+ dt {
179
+ font-weight: $dt-font-weight;
180
+ }
181
+
182
+ // 1. Undo browser default
183
+
184
+ dd {
185
+ margin-bottom: .5rem;
186
+ margin-left: 0; // 1
187
+ }
188
+
189
+
190
+ // Blockquote
191
+
192
+ blockquote {
193
+ margin: 0 0 1rem;
194
+ }
195
+
196
+
197
+ // Strong
198
+ //
199
+ // Add the correct font weight in Chrome, Edge, and Safari
200
+
201
+ b,
202
+ strong {
203
+ font-weight: $font-weight-bolder;
204
+ }
205
+
206
+
207
+ // Small
208
+ //
209
+ // Add the correct font size in all browsers
210
+
211
+ small {
212
+ @include font-size($small-font-size);
213
+ }
214
+
215
+
216
+ // Mark
217
+
218
+ mark {
219
+ padding: $mark-padding;
220
+ background-color: var(--#{$prefix}highlight-bg);
221
+ }
222
+
223
+
224
+ // Sub and Sup
225
+ //
226
+ // Prevent `sub` and `sup` elements from affecting the line height in
227
+ // all browsers.
228
+
229
+ sub,
230
+ sup {
231
+ position: relative;
232
+ @include font-size($sub-sup-font-size);
233
+ line-height: 0;
234
+ vertical-align: baseline;
235
+ }
236
+
237
+ sub { bottom: -.25em; }
238
+ sup { top: -.5em; }
239
+
240
+
241
+ // Links
242
+
243
+ a {
244
+ color: var(--#{$prefix}link-color);
245
+ text-decoration: $link-decoration;
246
+
247
+ &:hover {
248
+ color: var(--#{$prefix}link-hover-color);
249
+ text-decoration: $link-hover-decoration;
250
+ }
251
+ }
252
+
253
+ // And undo these styles for placeholder links/named anchors (without href).
254
+ // It would be more straightforward to just use a[href] in previous block, but that
255
+ // causes specificity issues in many other styles that are too complex to fix.
256
+ // See https://github.com/twbs/bootstrap/issues/19402
257
+
258
+ a:not([href]):not([class]) {
259
+ &,
260
+ &:hover {
261
+ color: inherit;
262
+ text-decoration: none;
263
+ }
264
+ }
265
+
266
+
267
+ // Code
268
+
269
+ pre,
270
+ code,
271
+ kbd,
272
+ samp {
273
+ font-family: $font-family-code;
274
+ @include font-size(1em); // Correct the odd `em` font sizing in all browsers.
275
+ }
276
+
277
+ // 1. Remove browser default top margin
278
+ // 2. Reset browser default of `1em` to use `rem`s
279
+ // 3. Don't allow content to break outside
280
+
281
+ pre {
282
+ display: block;
283
+ margin-top: 0; // 1
284
+ margin-bottom: 1rem; // 2
285
+ overflow: auto; // 3
286
+ @include font-size($code-font-size);
287
+ color: $pre-color;
288
+
289
+ // Account for some code outputs that place code tags in pre tags
290
+ code {
291
+ @include font-size(inherit);
292
+ color: inherit;
293
+ word-break: normal;
294
+ }
295
+ }
296
+
297
+ code {
298
+ @include font-size($code-font-size);
299
+ color: var(--#{$prefix}code-color);
300
+ word-wrap: break-word;
301
+
302
+ // Streamline the style when inside anchors to avoid broken underline and more
303
+ a > & {
304
+ color: inherit;
305
+ }
306
+ }
307
+
308
+ kbd {
309
+ padding: $kbd-padding-y $kbd-padding-x;
310
+ @include font-size($kbd-font-size);
311
+ color: $kbd-color;
312
+ background-color: $kbd-bg;
313
+ @include border-radius($border-radius-sm);
314
+
315
+ kbd {
316
+ padding: 0;
317
+ @include font-size(1em);
318
+ font-weight: $nested-kbd-font-weight;
319
+ }
320
+ }
321
+
322
+
323
+ // Figures
324
+ //
325
+ // Apply a consistent margin strategy (matches our type styles).
326
+
327
+ figure {
328
+ margin: 0 0 1rem;
329
+ }
330
+
331
+
332
+ // Images and content
333
+
334
+ img,
335
+ svg {
336
+ vertical-align: middle;
337
+ }
338
+
339
+
340
+ // Tables
341
+ //
342
+ // Prevent double borders
343
+
344
+ table {
345
+ caption-side: bottom;
346
+ border-collapse: collapse;
347
+ }
348
+
349
+ caption {
350
+ padding-top: $table-cell-padding-y;
351
+ padding-bottom: $table-cell-padding-y;
352
+ color: $table-caption-color;
353
+ text-align: left;
354
+ }
355
+
356
+ // 1. Removes font-weight bold by inheriting
357
+ // 2. Matches default `<td>` alignment by inheriting `text-align`.
358
+ // 3. Fix alignment for Safari
359
+
360
+ th {
361
+ font-weight: $table-th-font-weight; // 1
362
+ text-align: inherit; // 2
363
+ text-align: -webkit-match-parent; // 3
364
+ }
365
+
366
+ thead,
367
+ tbody,
368
+ tfoot,
369
+ tr,
370
+ td,
371
+ th {
372
+ border-color: inherit;
373
+ border-style: solid;
374
+ border-width: 0;
375
+ }
376
+
377
+
378
+ // Forms
379
+ //
380
+ // 1. Allow labels to use `margin` for spacing.
381
+
382
+ label {
383
+ display: inline-block; // 1
384
+ }
385
+
386
+ // Remove the default `border-radius` that macOS Chrome adds.
387
+ // See https://github.com/twbs/bootstrap/issues/24093
388
+
389
+ button {
390
+ // stylelint-disable-next-line property-disallowed-list
391
+ border-radius: 0;
392
+ }
393
+
394
+ // Explicitly remove focus outline in Chromium when it shouldn't be
395
+ // visible (e.g. as result of mouse click or touch tap). It already
396
+ // should be doing this automatically, but seems to currently be
397
+ // confused and applies its very visible two-tone outline anyway.
398
+
399
+ button:focus:not(:focus-visible) {
400
+ outline: 0;
401
+ }
402
+
403
+ // 1. Remove the margin in Firefox and Safari
404
+
405
+ input,
406
+ button,
407
+ select,
408
+ optgroup,
409
+ textarea {
410
+ margin: 0; // 1
411
+ font-family: inherit;
412
+ @include font-size(inherit);
413
+ line-height: inherit;
414
+ }
415
+
416
+ // Remove the inheritance of text transform in Firefox
417
+ button,
418
+ select {
419
+ text-transform: none;
420
+ }
421
+ // Set the cursor for non-`<button>` buttons
422
+ //
423
+ // Details at https://github.com/twbs/bootstrap/pull/30562
424
+ [role="button"] {
425
+ cursor: pointer;
426
+ }
427
+
428
+ select {
429
+ // Remove the inheritance of word-wrap in Safari.
430
+ // See https://github.com/twbs/bootstrap/issues/24990
431
+ word-wrap: normal;
432
+
433
+ // Undo the opacity change from Chrome
434
+ &:disabled {
435
+ opacity: 1;
436
+ }
437
+ }
438
+
439
+ // Remove the dropdown arrow only from text type inputs built with datalists in Chrome.
440
+ // See https://stackoverflow.com/a/54997118
441
+
442
+ [list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
443
+ display: none !important;
444
+ }
445
+
446
+ // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
447
+ // controls in Android 4.
448
+ // 2. Correct the inability to style clickable types in iOS and Safari.
449
+ // 3. Opinionated: add "hand" cursor to non-disabled button elements.
450
+
451
+ button,
452
+ [type="button"], // 1
453
+ [type="reset"],
454
+ [type="submit"] {
455
+ -webkit-appearance: button; // 2
456
+
457
+ @if $enable-button-pointers {
458
+ &:not(:disabled) {
459
+ cursor: pointer; // 3
460
+ }
461
+ }
462
+ }
463
+
464
+ // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
465
+
466
+ ::-moz-focus-inner {
467
+ padding: 0;
468
+ border-style: none;
469
+ }
470
+
471
+ // 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.
472
+
473
+ textarea {
474
+ resize: vertical; // 1
475
+ }
476
+
477
+ // 1. Browsers set a default `min-width: min-content;` on fieldsets,
478
+ // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
479
+ // So we reset that to ensure fieldsets behave more like a standard block element.
480
+ // See https://github.com/twbs/bootstrap/issues/12359
481
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
482
+ // 2. Reset the default outline behavior of fieldsets so they don't affect page layout.
483
+
484
+ fieldset {
485
+ min-width: 0; // 1
486
+ padding: 0; // 2
487
+ margin: 0; // 2
488
+ border: 0; // 2
489
+ }
490
+
491
+ // 1. By using `float: left`, the legend will behave like a block element.
492
+ // This way the border of a fieldset wraps around the legend if present.
493
+ // 2. Fix wrapping bug.
494
+ // See https://github.com/twbs/bootstrap/issues/29712
495
+
496
+ legend {
497
+ float: left; // 1
498
+ width: 100%;
499
+ padding: 0;
500
+ margin-bottom: $legend-margin-bottom;
501
+ @include font-size($legend-font-size);
502
+ font-weight: $legend-font-weight;
503
+ line-height: inherit;
504
+
505
+ + * {
506
+ clear: left; // 2
507
+ }
508
+ }
509
+
510
+ // Fix height of inputs with a type of datetime-local, date, month, week, or time
511
+ // See https://github.com/twbs/bootstrap/issues/18842
512
+
513
+ ::-webkit-datetime-edit-fields-wrapper,
514
+ ::-webkit-datetime-edit-text,
515
+ ::-webkit-datetime-edit-minute,
516
+ ::-webkit-datetime-edit-hour-field,
517
+ ::-webkit-datetime-edit-day-field,
518
+ ::-webkit-datetime-edit-month-field,
519
+ ::-webkit-datetime-edit-year-field {
520
+ padding: 0;
521
+ }
522
+
523
+ ::-webkit-inner-spin-button {
524
+ height: auto;
525
+ }
526
+
527
+ // 1. Correct the outline style in Safari.
528
+ // 2. This overrides the extra rounded corners on search inputs in iOS so that our
529
+ // `.form-control` class can properly style them. Note that this cannot simply
530
+ // be added to `.form-control` as it's not specific enough. For details, see
531
+ // https://github.com/twbs/bootstrap/issues/11586.
532
+
533
+ [type="search"] {
534
+ outline-offset: -2px; // 1
535
+ -webkit-appearance: textfield; // 2
536
+ }
537
+
538
+ // 1. A few input types should stay LTR
539
+ // See https://rtlstyling.com/posts/rtl-styling#form-inputs
540
+ // 2. RTL only output
541
+ // See https://rtlcss.com/learn/usage-guide/control-directives/#raw
542
+
543
+ /* rtl:raw:
544
+ [type="tel"],
545
+ [type="url"],
546
+ [type="email"],
547
+ [type="number"] {
548
+ direction: ltr;
549
+ }
550
+ */
551
+
552
+ // Remove the inner padding in Chrome and Safari on macOS.
553
+
554
+ ::-webkit-search-decoration {
555
+ -webkit-appearance: none;
556
+ }
557
+
558
+ // Remove padding around color pickers in webkit browsers
559
+
560
+ ::-webkit-color-swatch-wrapper {
561
+ padding: 0;
562
+ }
563
+
564
+
565
+ // 1. Inherit font family and line height for file input buttons
566
+ // 2. Correct the inability to style clickable types in iOS and Safari.
567
+
568
+ ::file-selector-button {
569
+ font: inherit; // 1
570
+ -webkit-appearance: button; // 2
571
+ }
572
+
573
+ // Correct element displays
574
+
575
+ output {
576
+ display: inline-block;
577
+ }
578
+
579
+ // Remove border from iframe
580
+
581
+ iframe {
582
+ border: 0;
583
+ }
584
+
585
+ // Summary
586
+ //
587
+ // 1. Add the correct display in all browsers
588
+
589
+ summary {
590
+ display: list-item; // 1
591
+ cursor: pointer;
592
+ }
593
+
594
+
595
+ // Progress
596
+ //
597
+ // Add the correct vertical alignment in Chrome, Firefox, and Opera.
598
+
599
+ progress {
600
+ vertical-align: baseline;
601
+ }
602
+
603
+
604
+ // Hidden attribute
605
+ //
606
+ // Always hide an element with the `hidden` HTML attribute.
607
+
608
+ [hidden] {
609
+ display: none !important;
610
+ }