bootstrap 4.0.0.beta3 → 4.6.2

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 (114) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +15 -1
  3. data/CHANGELOG.md +2 -2
  4. data/README.md +2 -2
  5. data/Rakefile +4 -2
  6. data/assets/javascripts/bootstrap/alert.js +79 -68
  7. data/assets/javascripts/bootstrap/button.js +140 -78
  8. data/assets/javascripts/bootstrap/carousel.js +294 -158
  9. data/assets/javascripts/bootstrap/collapse.js +157 -133
  10. data/assets/javascripts/bootstrap/dropdown.js +257 -167
  11. data/assets/javascripts/bootstrap/modal.js +285 -204
  12. data/assets/javascripts/bootstrap/popover.js +101 -60
  13. data/assets/javascripts/bootstrap/scrollspy.js +127 -106
  14. data/assets/javascripts/bootstrap/tab.js +113 -101
  15. data/assets/javascripts/bootstrap/toast.js +267 -0
  16. data/assets/javascripts/bootstrap/tooltip.js +406 -188
  17. data/assets/javascripts/bootstrap/util.js +106 -55
  18. data/assets/javascripts/bootstrap-sprockets.js +1 -0
  19. data/assets/javascripts/bootstrap.js +1946 -1482
  20. data/assets/javascripts/bootstrap.min.js +4 -4
  21. data/assets/stylesheets/_bootstrap-grid.scss +7 -12
  22. data/assets/stylesheets/_bootstrap-reboot.scss +4 -4
  23. data/assets/stylesheets/_bootstrap.scss +6 -4
  24. data/assets/stylesheets/bootstrap/_alert.scss +3 -2
  25. data/assets/stylesheets/bootstrap/_badge.scss +8 -1
  26. data/assets/stylesheets/bootstrap/_breadcrumb.scss +10 -6
  27. data/assets/stylesheets/bootstrap/_button-group.scss +17 -20
  28. data/assets/stylesheets/bootstrap/_buttons.scss +23 -28
  29. data/assets/stylesheets/bootstrap/_card.scss +77 -61
  30. data/assets/stylesheets/bootstrap/_carousel.scss +72 -63
  31. data/assets/stylesheets/bootstrap/_close.scss +15 -9
  32. data/assets/stylesheets/bootstrap/_code.scss +6 -14
  33. data/assets/stylesheets/bootstrap/_custom-forms.scss +287 -43
  34. data/assets/stylesheets/bootstrap/_dropdown.scss +70 -9
  35. data/assets/stylesheets/bootstrap/_forms.scss +56 -42
  36. data/assets/stylesheets/bootstrap/_functions.scss +117 -13
  37. data/assets/stylesheets/bootstrap/_grid.scss +32 -11
  38. data/assets/stylesheets/bootstrap/_images.scss +4 -4
  39. data/assets/stylesheets/bootstrap/_input-group.scss +80 -25
  40. data/assets/stylesheets/bootstrap/_jumbotron.scss +2 -1
  41. data/assets/stylesheets/bootstrap/_list-group.scss +63 -24
  42. data/assets/stylesheets/bootstrap/_mixins.scss +9 -4
  43. data/assets/stylesheets/bootstrap/_modal.scss +96 -24
  44. data/assets/stylesheets/bootstrap/_nav.scss +14 -7
  45. data/assets/stylesheets/bootstrap/_navbar.scss +66 -45
  46. data/assets/stylesheets/bootstrap/_pagination.scss +10 -8
  47. data/assets/stylesheets/bootstrap/_popover.scss +56 -69
  48. data/assets/stylesheets/bootstrap/_print.scss +41 -19
  49. data/assets/stylesheets/bootstrap/_progress.scss +20 -6
  50. data/assets/stylesheets/bootstrap/_reboot.scss +88 -109
  51. data/assets/stylesheets/bootstrap/_spinners.scss +65 -0
  52. data/assets/stylesheets/bootstrap/_tables.scss +19 -14
  53. data/assets/stylesheets/bootstrap/_toasts.scss +46 -0
  54. data/assets/stylesheets/bootstrap/_tooltip.scss +6 -6
  55. data/assets/stylesheets/bootstrap/_transitions.scss +10 -20
  56. data/assets/stylesheets/bootstrap/_type.scss +19 -19
  57. data/assets/stylesheets/bootstrap/_utilities.scss +4 -0
  58. data/assets/stylesheets/bootstrap/_variables.scss +492 -215
  59. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +5 -3
  60. data/assets/stylesheets/bootstrap/mixins/_badge.scss +8 -3
  61. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +51 -10
  62. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +16 -1
  63. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +11 -9
  64. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +35 -26
  65. data/assets/stylesheets/bootstrap/mixins/_caret.scss +13 -16
  66. data/assets/stylesheets/bootstrap/mixins/_deprecate.scss +10 -0
  67. data/assets/stylesheets/bootstrap/mixins/_float.scss +6 -3
  68. data/assets/stylesheets/bootstrap/mixins/_forms.scss +102 -40
  69. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +7 -7
  70. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +36 -25
  71. data/assets/stylesheets/bootstrap/mixins/_grid.scss +34 -17
  72. data/assets/stylesheets/bootstrap/mixins/_hover.scss +27 -51
  73. data/assets/stylesheets/bootstrap/mixins/_image.scss +4 -4
  74. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +10 -13
  75. data/assets/stylesheets/bootstrap/mixins/_lists.scss +1 -1
  76. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +3 -2
  77. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +1 -1
  78. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +3 -3
  79. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +5 -6
  80. data/assets/stylesheets/bootstrap/mixins/_size.scss +1 -0
  81. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +11 -2
  82. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +7 -4
  83. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +3 -1
  84. data/assets/stylesheets/bootstrap/mixins/_transition.scss +20 -3
  85. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +1 -0
  86. data/assets/stylesheets/bootstrap/utilities/_background.scss +2 -2
  87. data/assets/stylesheets/bootstrap/utilities/_borders.scss +23 -2
  88. data/assets/stylesheets/bootstrap/utilities/_display.scss +6 -36
  89. data/assets/stylesheets/bootstrap/utilities/_embed.scss +7 -20
  90. data/assets/stylesheets/bootstrap/utilities/_flex.scss +5 -0
  91. data/assets/stylesheets/bootstrap/utilities/_float.scss +5 -3
  92. data/assets/stylesheets/bootstrap/utilities/_interactions.scss +5 -0
  93. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +5 -0
  94. data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -4
  95. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
  96. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +8 -0
  97. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +23 -1
  98. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +19 -0
  99. data/assets/stylesheets/bootstrap/utilities/_text.scss +28 -8
  100. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +4 -2
  101. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +228 -0
  102. data/bootstrap.gemspec +7 -4
  103. data/lib/bootstrap/engine.rb +3 -0
  104. data/lib/bootstrap/version.rb +4 -2
  105. data/lib/bootstrap.rb +10 -7
  106. data/tasks/updater/js.rb +18 -6
  107. data/tasks/updater/network.rb +8 -2
  108. data/test/dummy_rails/app/assets/config/manifest.js +3 -0
  109. data/test/dummy_rails/app/assets/stylesheets/.browserslistrc +1 -0
  110. data/test/gemfiles/rails_6_0.gemfile +7 -0
  111. data/test/support/dummy_rails_integration.rb +3 -1
  112. data/test/test_helper.rb +21 -15
  113. metadata +29 -16
  114. data/assets/stylesheets/bootstrap/mixins/_navbar-align.scss +0 -10
@@ -11,7 +11,7 @@
11
11
  // Horizontal gradient, from left to right
12
12
  //
13
13
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
14
- @mixin gradient-x($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
14
+ @mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
15
15
  background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
16
16
  background-repeat: repeat-x;
17
17
  }
@@ -19,27 +19,27 @@
19
19
  // Vertical gradient, from top to bottom
20
20
  //
21
21
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
22
- @mixin gradient-y($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
22
+ @mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
23
23
  background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
24
24
  background-repeat: repeat-x;
25
25
  }
26
26
 
27
- @mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
27
+ @mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
28
28
  background-image: linear-gradient($deg, $start-color, $end-color);
29
29
  background-repeat: repeat-x;
30
30
  }
31
- @mixin gradient-x-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
31
+ @mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
32
32
  background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
33
33
  background-repeat: no-repeat;
34
34
  }
35
- @mixin gradient-y-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
35
+ @mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
36
36
  background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
37
37
  background-repeat: no-repeat;
38
38
  }
39
- @mixin gradient-radial($inner-color: #555, $outer-color: #333) {
39
+ @mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
40
40
  background-image: radial-gradient(circle, $inner-color, $outer-color);
41
41
  background-repeat: no-repeat;
42
42
  }
43
- @mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) {
43
+ @mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
44
44
  background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
45
45
  }
@@ -8,20 +8,22 @@
8
8
  %grid-column {
9
9
  position: relative;
10
10
  width: 100%;
11
- min-height: 1px; // Prevent columns from collapsing when empty
12
- padding-right: ($gutter / 2);
13
- padding-left: ($gutter / 2);
11
+ padding-right: $gutter * .5;
12
+ padding-left: $gutter * .5;
14
13
  }
15
14
 
16
15
  @each $breakpoint in map-keys($breakpoints) {
17
16
  $infix: breakpoint-infix($breakpoint, $breakpoints);
18
17
 
19
- // Allow columns to stretch full width below their breakpoints
20
- @for $i from 1 through $columns {
21
- .col#{$infix}-#{$i} {
22
- @extend %grid-column;
18
+ @if $columns > 0 {
19
+ // Allow columns to stretch full width below their breakpoints
20
+ @for $i from 1 through $columns {
21
+ .col#{$infix}-#{$i} {
22
+ @extend %grid-column;
23
+ }
23
24
  }
24
25
  }
26
+
25
27
  .col#{$infix},
26
28
  .col#{$infix}-auto {
27
29
  @extend %grid-column;
@@ -34,33 +36,42 @@
34
36
  flex-grow: 1;
35
37
  max-width: 100%;
36
38
  }
37
- .col#{$infix}-auto {
38
- flex: 0 0 auto;
39
- width: auto;
40
- max-width: none; // Reset earlier grid tiers
41
- }
42
39
 
43
- @for $i from 1 through $columns {
44
- .col#{$infix}-#{$i} {
45
- @include make-col($i, $columns);
40
+ @if $grid-row-columns > 0 {
41
+ @for $i from 1 through $grid-row-columns {
42
+ .row-cols#{$infix}-#{$i} {
43
+ @include row-cols($i);
44
+ }
46
45
  }
47
46
  }
48
47
 
49
- .order#{$infix}-first {
50
- order: -1;
48
+ .col#{$infix}-auto {
49
+ @include make-col-auto();
51
50
  }
52
51
 
53
- @for $i from 1 through $columns {
54
- .order#{$infix}-#{$i} {
55
- order: $i;
52
+ @if $columns > 0 {
53
+ @for $i from 1 through $columns {
54
+ .col#{$infix}-#{$i} {
55
+ @include make-col($i, $columns);
56
+ }
56
57
  }
57
58
  }
58
59
 
59
- // `$columns - 1` because offsetting by the width of an entire row isn't possible
60
- @for $i from 0 through ($columns - 1) {
61
- @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
62
- .offset#{$infix}-#{$i} {
63
- @include make-col-offset($i, $columns);
60
+ .order#{$infix}-first { order: -1; }
61
+
62
+ .order#{$infix}-last { order: $columns + 1; }
63
+
64
+ @for $i from 0 through $columns {
65
+ .order#{$infix}-#{$i} { order: $i; }
66
+ }
67
+
68
+ @if $columns > 0 {
69
+ // `$columns - 1` because offsetting by the width of an entire row isn't possible
70
+ @for $i from 0 through ($columns - 1) {
71
+ @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
72
+ .offset#{$infix}-#{$i} {
73
+ @include make-col-offset($i, $columns);
74
+ }
64
75
  }
65
76
  }
66
77
  }
@@ -2,14 +2,20 @@
2
2
  //
3
3
  // Generate semantic grid columns with these mixins.
4
4
 
5
- @mixin make-container() {
5
+ @mixin make-container($gutter: $grid-gutter-width) {
6
6
  width: 100%;
7
- padding-right: ($grid-gutter-width / 2);
8
- padding-left: ($grid-gutter-width / 2);
7
+ padding-right: $gutter * .5;
8
+ padding-left: $gutter * .5;
9
9
  margin-right: auto;
10
10
  margin-left: auto;
11
11
  }
12
12
 
13
+ @mixin make-row($gutter: $grid-gutter-width) {
14
+ display: flex;
15
+ flex-wrap: wrap;
16
+ margin-right: -$gutter * .5;
17
+ margin-left: -$gutter * .5;
18
+ }
13
19
 
14
20
  // For each breakpoint, define the maximum width of the container in a media query
15
21
  @mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
@@ -18,35 +24,46 @@
18
24
  max-width: $container-max-width;
19
25
  }
20
26
  }
27
+ @include deprecate("The `make-container-max-widths` mixin", "v4.5.2", "v5");
21
28
  }
22
29
 
23
- @mixin make-row() {
24
- display: flex;
25
- flex-wrap: wrap;
26
- margin-right: ($grid-gutter-width / -2);
27
- margin-left: ($grid-gutter-width / -2);
28
- }
29
-
30
- @mixin make-col-ready() {
30
+ @mixin make-col-ready($gutter: $grid-gutter-width) {
31
31
  position: relative;
32
32
  // Prevent columns from becoming too narrow when at smaller grid tiers by
33
33
  // always setting `width: 100%;`. This works because we use `flex` values
34
34
  // later on to override this initial width.
35
35
  width: 100%;
36
- min-height: 1px; // Prevent collapsing
37
- padding-right: ($grid-gutter-width / 2);
38
- padding-left: ($grid-gutter-width / 2);
36
+ padding-right: $gutter * .5;
37
+ padding-left: $gutter * .5;
39
38
  }
40
39
 
41
40
  @mixin make-col($size, $columns: $grid-columns) {
42
- flex: 0 0 percentage($size / $columns);
41
+ flex: 0 0 percentage(divide($size, $columns));
43
42
  // Add a `max-width` to ensure content within each column does not blow out
44
43
  // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
45
44
  // do not appear to require this.
46
- max-width: percentage($size / $columns);
45
+ max-width: percentage(divide($size, $columns));
46
+ }
47
+
48
+ @mixin make-col-auto() {
49
+ flex: 0 0 auto;
50
+ width: auto;
51
+ max-width: 100%; // Reset earlier grid tiers
47
52
  }
48
53
 
49
54
  @mixin make-col-offset($size, $columns: $grid-columns) {
50
- $num: $size / $columns;
55
+ $num: divide($size, $columns);
51
56
  margin-left: if($num == 0, 0, percentage($num));
52
57
  }
58
+
59
+ // Row columns
60
+ //
61
+ // Specify on a parent element(e.g., .row) to force immediate children into NN
62
+ // numberof columns. Supports wrapping to new lines, but does not do a Masonry
63
+ // style grid.
64
+ @mixin row-cols($count) {
65
+ > * {
66
+ flex: 0 0 divide(100%, $count);
67
+ max-width: divide(100%, $count);
68
+ }
69
+ }
@@ -1,61 +1,37 @@
1
- // stylelint-disable indentation
2
- @mixin hover {
3
- // TODO: re-enable along with mq4-hover-shim
4
- // @if $enable-hover-media-query {
5
- // // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
6
- // // Currently shimmed by https://github.com/twbs/mq4-hover-shim
7
- // @media (hover: hover) {
8
- // &:hover { @content }
9
- // }
10
- // }
11
- // @else {
12
- &:hover { @content; }
13
- // }
14
- }
1
+ // Hover mixin and `$enable-hover-media-query` are deprecated.
2
+ //
3
+ // Originally added during our alphas and maintained during betas, this mixin was
4
+ // designed to prevent `:hover` stickiness on iOS-an issue where hover styles
5
+ // would persist after initial touch.
6
+ //
7
+ // For backward compatibility, we've kept these mixins and updated them to
8
+ // always return their regular pseudo-classes instead of a shimmed media query.
9
+ //
10
+ // Issue: https://github.com/twbs/bootstrap/issues/25195
15
11
 
12
+ @mixin hover() {
13
+ &:hover { @content; }
14
+ }
16
15
 
17
- @mixin hover-focus {
18
- @if $enable-hover-media-query {
19
- &:focus {
20
- @content;
21
- }
22
- @include hover { @content; }
23
- } @else {
24
- &:focus,
25
- &:hover {
26
- @content;
27
- }
16
+ @mixin hover-focus() {
17
+ &:hover,
18
+ &:focus {
19
+ @content;
28
20
  }
29
21
  }
30
22
 
31
- @mixin plain-hover-focus {
32
- @if $enable-hover-media-query {
33
- &,
34
- &:focus {
35
- @content;
36
- }
37
- @include hover { @content; }
38
- } @else {
39
- &,
40
- &:focus,
41
- &:hover {
42
- @content;
43
- }
23
+ @mixin plain-hover-focus() {
24
+ &,
25
+ &:hover,
26
+ &:focus {
27
+ @content;
44
28
  }
45
29
  }
46
30
 
47
- @mixin hover-focus-active {
48
- @if $enable-hover-media-query {
49
- &:focus,
50
- &:active {
51
- @content;
52
- }
53
- @include hover { @content; }
54
- } @else {
55
- &:focus,
56
- &:active,
57
- &:hover {
58
- @content;
59
- }
31
+ @mixin hover-focus-active() {
32
+ &:hover,
33
+ &:focus,
34
+ &:active {
35
+ @content;
60
36
  }
61
37
  }
@@ -7,7 +7,7 @@
7
7
  //
8
8
  // Keep images from scaling beyond the width of their parents.
9
9
 
10
- @mixin img-fluid {
10
+ @mixin img-fluid() {
11
11
  // Part 1: Set a maximum relative to the parent
12
12
  max-width: 100%;
13
13
  // Part 2: Override the height to auto, otherwise images will be stretched
@@ -20,17 +20,17 @@
20
20
  //
21
21
  // Short retina mixin for setting background-image and -size.
22
22
 
23
- // stylelint-disable indentation, media-query-list-comma-newline-after
24
23
  @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
25
24
  background-image: url($file-1x);
26
25
 
27
26
  // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
28
27
  // but doesn't convert dppx=>dpi.
29
28
  // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
30
- // Compatibility info: https://caniuse.com/#feat=css-media-resolution
29
+ // Compatibility info: https://caniuse.com/css-media-resolution
31
30
  @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
32
- only screen and (min-resolution: 2dppx) { // Standardized
31
+ only screen and (min-resolution: 2dppx) { // Standardized
33
32
  background-image: url($file-2x);
34
33
  background-size: $width-1x $height-1x;
35
34
  }
35
+ @include deprecate("`img-retina()`", "v4.3.0", "v5");
36
36
  }
@@ -4,21 +4,18 @@
4
4
  .list-group-item-#{$state} {
5
5
  color: $color;
6
6
  background-color: $background;
7
- }
8
-
9
- a.list-group-item-#{$state},
10
- button.list-group-item-#{$state} {
11
- color: $color;
12
7
 
13
- @include hover-focus {
14
- color: $color;
15
- background-color: darken($background, 5%);
16
- }
8
+ &.list-group-item-action {
9
+ @include hover-focus() {
10
+ color: $color;
11
+ background-color: darken($background, 5%);
12
+ }
17
13
 
18
- &.active {
19
- color: #fff;
20
- background-color: $color;
21
- border-color: $color;
14
+ &.active {
15
+ color: $white;
16
+ background-color: $color;
17
+ border-color: $color;
18
+ }
22
19
  }
23
20
  }
24
21
  }
@@ -1,7 +1,7 @@
1
1
  // Lists
2
2
 
3
3
  // Unstyled keeps list items block level, just removes default browser padding and list-style
4
- @mixin list-unstyled {
4
+ @mixin list-unstyled() {
5
5
  padding-left: 0;
6
6
  list-style: none;
7
7
  }
@@ -2,9 +2,10 @@
2
2
  //
3
3
  // Dividers (basically an hr) within dropdowns and nav lists
4
4
 
5
- @mixin nav-divider($color: #e5e5e5) {
5
+ @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) {
6
6
  height: 0;
7
- margin: ($spacer / 2) 0;
7
+ margin: $margin-y 0;
8
8
  overflow: hidden;
9
9
  border-top: 1px solid $color;
10
+ @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
10
11
  }
@@ -3,7 +3,7 @@
3
3
  @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
4
4
  .page-link {
5
5
  padding: $padding-y $padding-x;
6
- font-size: $font-size;
6
+ @include font-size($font-size);
7
7
  line-height: $line-height;
8
8
  }
9
9
 
@@ -1,17 +1,17 @@
1
- @mixin reset-text {
1
+ @mixin reset-text() {
2
2
  font-family: $font-family-base;
3
3
  // We deliberately do NOT reset font-size or word-wrap.
4
4
  font-style: normal;
5
5
  font-weight: $font-weight-normal;
6
6
  line-height: $line-height-base;
7
7
  text-align: left; // Fallback for where `start` is not supported
8
- text-align: start; // stylelint-disable-line declaration-block-no-duplicate-properties
8
+ text-align: start;
9
9
  text-decoration: none;
10
10
  text-shadow: none;
11
11
  text-transform: none;
12
12
  letter-spacing: normal;
13
13
  word-break: normal;
14
- word-spacing: normal;
15
14
  white-space: normal;
15
+ word-spacing: normal;
16
16
  line-break: auto;
17
17
  }
@@ -1,17 +1,17 @@
1
1
  // Only display content to screen readers
2
2
  //
3
- // See: http://a11yproject.com/posts/how-to-hide-content/
4
- // See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
3
+ // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
4
+ // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
5
5
 
6
- @mixin sr-only {
6
+ @mixin sr-only() {
7
7
  position: absolute;
8
8
  width: 1px;
9
9
  height: 1px;
10
10
  padding: 0;
11
+ margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686
11
12
  overflow: hidden;
12
13
  clip: rect(0, 0, 0, 0);
13
14
  white-space: nowrap;
14
- clip-path: inset(50%);
15
15
  border: 0;
16
16
  }
17
17
 
@@ -21,7 +21,7 @@
21
21
  //
22
22
  // Credit: HTML5 Boilerplate
23
23
 
24
- @mixin sr-only-focusable {
24
+ @mixin sr-only-focusable() {
25
25
  &:active,
26
26
  &:focus {
27
27
  position: static;
@@ -30,6 +30,5 @@
30
30
  overflow: visible;
31
31
  clip: auto;
32
32
  white-space: normal;
33
- clip-path: none;
34
33
  }
35
34
  }
@@ -3,4 +3,5 @@
3
3
  @mixin size($width, $height: $width) {
4
4
  width: $width;
5
5
  height: $height;
6
+ @include deprecate("`size()`", "v4.3.0", "v5");
6
7
  }
@@ -1,6 +1,6 @@
1
1
  // Tables
2
2
 
3
- @mixin table-row-variant($state, $background) {
3
+ @mixin table-row-variant($state, $background, $border: null) {
4
4
  // Exact selectors below required to override `.table-striped` and prevent
5
5
  // inheritance to nested tables.
6
6
  .table-#{$state} {
@@ -9,6 +9,15 @@
9
9
  > td {
10
10
  background-color: $background;
11
11
  }
12
+
13
+ @if $border != null {
14
+ th,
15
+ td,
16
+ thead th,
17
+ tbody + tbody {
18
+ border-color: $border;
19
+ }
20
+ }
12
21
  }
13
22
 
14
23
  // Hover states for `.table-hover`
@@ -17,7 +26,7 @@
17
26
  $hover-background: darken($background, 5%);
18
27
 
19
28
  .table-#{$state} {
20
- @include hover {
29
+ @include hover() {
21
30
  background-color: $hover-background;
22
31
 
23
32
  > td,
@@ -2,13 +2,16 @@
2
2
 
3
3
  // Typography
4
4
 
5
- @mixin text-emphasis-variant($parent, $color) {
5
+ @mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
6
6
  #{$parent} {
7
7
  color: $color !important;
8
8
  }
9
- a#{$parent} {
10
- @include hover-focus {
11
- color: darken($color, 10%) !important;
9
+ @if $emphasized-link-hover-darken-percentage != 0 {
10
+ a#{$parent} {
11
+ @include hover-focus() {
12
+ color: darken($color, $emphasized-link-hover-darken-percentage) !important;
13
+ }
12
14
  }
13
15
  }
16
+ @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
14
17
  }
@@ -1,9 +1,11 @@
1
1
  // CSS image replacement
2
- @mixin text-hide() {
2
+ @mixin text-hide($ignore-warning: false) {
3
3
  // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4
4
  font: 0/0 a;
5
5
  color: transparent;
6
6
  text-shadow: none;
7
7
  background-color: transparent;
8
8
  border: 0;
9
+
10
+ @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
9
11
  }
@@ -1,9 +1,26 @@
1
+ // stylelint-disable property-disallowed-list
1
2
  @mixin transition($transition...) {
3
+ @if length($transition) == 0 {
4
+ $transition: $transition-base;
5
+ }
6
+
7
+ @if length($transition) > 1 {
8
+ @each $value in $transition {
9
+ @if $value == null or $value == none {
10
+ @warn "The keyword 'none' or 'null' must be used as a single argument.";
11
+ }
12
+ }
13
+ }
14
+
2
15
  @if $enable-transitions {
3
- @if length($transition) == 0 {
4
- transition: $transition-base;
5
- } @else {
16
+ @if nth($transition, 1) != null {
6
17
  transition: $transition;
7
18
  }
19
+
20
+ @if $enable-prefers-reduced-motion-media-query and nth($transition, 1) != null and nth($transition, 1) != none {
21
+ @media (prefers-reduced-motion: reduce) {
22
+ transition: none;
23
+ }
24
+ }
8
25
  }
9
26
  }
@@ -4,4 +4,5 @@
4
4
 
5
5
  @mixin invisible($visibility) {
6
6
  visibility: $visibility !important;
7
+ @include deprecate("`invisible()`", "v4.3.0", "v5");
7
8
  }
@@ -1,12 +1,12 @@
1
1
  // stylelint-disable declaration-no-important
2
2
 
3
3
  @each $color, $value in $theme-colors {
4
- @include bg-variant(".bg-#{$color}", $value);
4
+ @include bg-variant(".bg-#{$color}", $value, true);
5
5
  }
6
6
 
7
7
  @if $enable-gradients {
8
8
  @each $color, $value in $theme-colors {
9
- @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
9
+ @include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
10
10
  }
11
11
  }
12
12
 
@@ -1,10 +1,15 @@
1
- // stylelint-disable declaration-no-important
1
+ // stylelint-disable property-disallowed-list, declaration-no-important
2
2
 
3
3
  //
4
4
  // Border
5
5
  //
6
6
 
7
- .border { border: $border-width solid $border-color !important; }
7
+ .border { border: $border-width solid $border-color !important; }
8
+ .border-top { border-top: $border-width solid $border-color !important; }
9
+ .border-right { border-right: $border-width solid $border-color !important; }
10
+ .border-bottom { border-bottom: $border-width solid $border-color !important; }
11
+ .border-left { border-left: $border-width solid $border-color !important; }
12
+
8
13
  .border-0 { border: 0 !important; }
9
14
  .border-top-0 { border-top: 0 !important; }
10
15
  .border-right-0 { border-right: 0 !important; }
@@ -25,30 +30,46 @@
25
30
  // Border-radius
26
31
  //
27
32
 
33
+ .rounded-sm {
34
+ border-radius: $border-radius-sm !important;
35
+ }
36
+
28
37
  .rounded {
29
38
  border-radius: $border-radius !important;
30
39
  }
40
+
31
41
  .rounded-top {
32
42
  border-top-left-radius: $border-radius !important;
33
43
  border-top-right-radius: $border-radius !important;
34
44
  }
45
+
35
46
  .rounded-right {
36
47
  border-top-right-radius: $border-radius !important;
37
48
  border-bottom-right-radius: $border-radius !important;
38
49
  }
50
+
39
51
  .rounded-bottom {
40
52
  border-bottom-right-radius: $border-radius !important;
41
53
  border-bottom-left-radius: $border-radius !important;
42
54
  }
55
+
43
56
  .rounded-left {
44
57
  border-top-left-radius: $border-radius !important;
45
58
  border-bottom-left-radius: $border-radius !important;
46
59
  }
47
60
 
61
+ .rounded-lg {
62
+ border-radius: $border-radius-lg !important;
63
+ }
64
+
48
65
  .rounded-circle {
49
66
  border-radius: 50% !important;
50
67
  }
51
68
 
69
+ .rounded-pill {
70
+ border-radius: $rounded-pill !important;
71
+ }
72
+
52
73
  .rounded-0 {
53
74
  border-radius: 0 !important;
54
75
  }