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.
- checksums.yaml +5 -5
- data/.travis.yml +15 -1
- data/CHANGELOG.md +2 -2
- data/README.md +2 -2
- data/Rakefile +4 -2
- data/assets/javascripts/bootstrap/alert.js +79 -68
- data/assets/javascripts/bootstrap/button.js +140 -78
- data/assets/javascripts/bootstrap/carousel.js +294 -158
- data/assets/javascripts/bootstrap/collapse.js +157 -133
- data/assets/javascripts/bootstrap/dropdown.js +257 -167
- data/assets/javascripts/bootstrap/modal.js +285 -204
- data/assets/javascripts/bootstrap/popover.js +101 -60
- data/assets/javascripts/bootstrap/scrollspy.js +127 -106
- data/assets/javascripts/bootstrap/tab.js +113 -101
- data/assets/javascripts/bootstrap/toast.js +267 -0
- data/assets/javascripts/bootstrap/tooltip.js +406 -188
- data/assets/javascripts/bootstrap/util.js +106 -55
- data/assets/javascripts/bootstrap-sprockets.js +1 -0
- data/assets/javascripts/bootstrap.js +1946 -1482
- data/assets/javascripts/bootstrap.min.js +4 -4
- data/assets/stylesheets/_bootstrap-grid.scss +7 -12
- data/assets/stylesheets/_bootstrap-reboot.scss +4 -4
- data/assets/stylesheets/_bootstrap.scss +6 -4
- data/assets/stylesheets/bootstrap/_alert.scss +3 -2
- data/assets/stylesheets/bootstrap/_badge.scss +8 -1
- data/assets/stylesheets/bootstrap/_breadcrumb.scss +10 -6
- data/assets/stylesheets/bootstrap/_button-group.scss +17 -20
- data/assets/stylesheets/bootstrap/_buttons.scss +23 -28
- data/assets/stylesheets/bootstrap/_card.scss +77 -61
- data/assets/stylesheets/bootstrap/_carousel.scss +72 -63
- data/assets/stylesheets/bootstrap/_close.scss +15 -9
- data/assets/stylesheets/bootstrap/_code.scss +6 -14
- data/assets/stylesheets/bootstrap/_custom-forms.scss +287 -43
- data/assets/stylesheets/bootstrap/_dropdown.scss +70 -9
- data/assets/stylesheets/bootstrap/_forms.scss +56 -42
- data/assets/stylesheets/bootstrap/_functions.scss +117 -13
- data/assets/stylesheets/bootstrap/_grid.scss +32 -11
- data/assets/stylesheets/bootstrap/_images.scss +4 -4
- data/assets/stylesheets/bootstrap/_input-group.scss +80 -25
- data/assets/stylesheets/bootstrap/_jumbotron.scss +2 -1
- data/assets/stylesheets/bootstrap/_list-group.scss +63 -24
- data/assets/stylesheets/bootstrap/_mixins.scss +9 -4
- data/assets/stylesheets/bootstrap/_modal.scss +96 -24
- data/assets/stylesheets/bootstrap/_nav.scss +14 -7
- data/assets/stylesheets/bootstrap/_navbar.scss +66 -45
- data/assets/stylesheets/bootstrap/_pagination.scss +10 -8
- data/assets/stylesheets/bootstrap/_popover.scss +56 -69
- data/assets/stylesheets/bootstrap/_print.scss +41 -19
- data/assets/stylesheets/bootstrap/_progress.scss +20 -6
- data/assets/stylesheets/bootstrap/_reboot.scss +88 -109
- data/assets/stylesheets/bootstrap/_spinners.scss +65 -0
- data/assets/stylesheets/bootstrap/_tables.scss +19 -14
- data/assets/stylesheets/bootstrap/_toasts.scss +46 -0
- data/assets/stylesheets/bootstrap/_tooltip.scss +6 -6
- data/assets/stylesheets/bootstrap/_transitions.scss +10 -20
- data/assets/stylesheets/bootstrap/_type.scss +19 -19
- data/assets/stylesheets/bootstrap/_utilities.scss +4 -0
- data/assets/stylesheets/bootstrap/_variables.scss +492 -215
- data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +5 -3
- data/assets/stylesheets/bootstrap/mixins/_badge.scss +8 -3
- data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +51 -10
- data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +16 -1
- data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +11 -9
- data/assets/stylesheets/bootstrap/mixins/_buttons.scss +35 -26
- data/assets/stylesheets/bootstrap/mixins/_caret.scss +13 -16
- data/assets/stylesheets/bootstrap/mixins/_deprecate.scss +10 -0
- data/assets/stylesheets/bootstrap/mixins/_float.scss +6 -3
- data/assets/stylesheets/bootstrap/mixins/_forms.scss +102 -40
- data/assets/stylesheets/bootstrap/mixins/_gradients.scss +7 -7
- data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +36 -25
- data/assets/stylesheets/bootstrap/mixins/_grid.scss +34 -17
- data/assets/stylesheets/bootstrap/mixins/_hover.scss +27 -51
- data/assets/stylesheets/bootstrap/mixins/_image.scss +4 -4
- data/assets/stylesheets/bootstrap/mixins/_list-group.scss +10 -13
- data/assets/stylesheets/bootstrap/mixins/_lists.scss +1 -1
- data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +3 -2
- data/assets/stylesheets/bootstrap/mixins/_pagination.scss +1 -1
- data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +3 -3
- data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +5 -6
- data/assets/stylesheets/bootstrap/mixins/_size.scss +1 -0
- data/assets/stylesheets/bootstrap/mixins/_table-row.scss +11 -2
- data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +7 -4
- data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +3 -1
- data/assets/stylesheets/bootstrap/mixins/_transition.scss +20 -3
- data/assets/stylesheets/bootstrap/mixins/_visibility.scss +1 -0
- data/assets/stylesheets/bootstrap/utilities/_background.scss +2 -2
- data/assets/stylesheets/bootstrap/utilities/_borders.scss +23 -2
- data/assets/stylesheets/bootstrap/utilities/_display.scss +6 -36
- data/assets/stylesheets/bootstrap/utilities/_embed.scss +7 -20
- data/assets/stylesheets/bootstrap/utilities/_flex.scss +5 -0
- data/assets/stylesheets/bootstrap/utilities/_float.scss +5 -3
- data/assets/stylesheets/bootstrap/utilities/_interactions.scss +5 -0
- data/assets/stylesheets/bootstrap/utilities/_overflow.scss +5 -0
- data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -4
- data/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
- data/assets/stylesheets/bootstrap/utilities/_sizing.scss +8 -0
- data/assets/stylesheets/bootstrap/utilities/_spacing.scss +23 -1
- data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +19 -0
- data/assets/stylesheets/bootstrap/utilities/_text.scss +28 -8
- data/assets/stylesheets/bootstrap/utilities/_visibility.scss +4 -2
- data/assets/stylesheets/bootstrap/vendor/_rfs.scss +228 -0
- data/bootstrap.gemspec +7 -4
- data/lib/bootstrap/engine.rb +3 -0
- data/lib/bootstrap/version.rb +4 -2
- data/lib/bootstrap.rb +10 -7
- data/tasks/updater/js.rb +18 -6
- data/tasks/updater/network.rb +8 -2
- data/test/dummy_rails/app/assets/config/manifest.js +3 -0
- data/test/dummy_rails/app/assets/stylesheets/.browserslistrc +1 -0
- data/test/gemfiles/rails_6_0.gemfile +7 -0
- data/test/support/dummy_rails_integration.rb +3 -1
- data/test/test_helper.rb +21 -15
- metadata +29 -16
- 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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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(
|
|
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
|
-
|
|
12
|
-
padding-
|
|
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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
@
|
|
44
|
-
|
|
45
|
-
|
|
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
|
-
.
|
|
50
|
-
|
|
48
|
+
.col#{$infix}-auto {
|
|
49
|
+
@include make-col-auto();
|
|
51
50
|
}
|
|
52
51
|
|
|
53
|
-
@
|
|
54
|
-
|
|
55
|
-
|
|
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
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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:
|
|
8
|
-
padding-left:
|
|
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-
|
|
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
|
-
|
|
37
|
-
padding-
|
|
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
|
|
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
|
|
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
|
|
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
|
-
//
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
8
|
-
//
|
|
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
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
8
|
+
&.list-group-item-action {
|
|
9
|
+
@include hover-focus() {
|
|
10
|
+
color: $color;
|
|
11
|
+
background-color: darken($background, 5%);
|
|
12
|
+
}
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
&.active {
|
|
15
|
+
color: $white;
|
|
16
|
+
background-color: $color;
|
|
17
|
+
border-color: $color;
|
|
18
|
+
}
|
|
22
19
|
}
|
|
23
20
|
}
|
|
24
21
|
}
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
//
|
|
3
3
|
// Dividers (basically an hr) within dropdowns and nav lists
|
|
4
4
|
|
|
5
|
-
@mixin nav-divider($color:
|
|
5
|
+
@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) {
|
|
6
6
|
height: 0;
|
|
7
|
-
margin:
|
|
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
|
}
|
|
@@ -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;
|
|
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:
|
|
4
|
-
// See: https://
|
|
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
|
}
|
|
@@ -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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
|
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
|
}
|
|
@@ -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
|
|
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
|
}
|