bootstrap 4.5.3 → 4.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/assets/javascripts/bootstrap-sprockets.js +7 -7
  4. data/assets/javascripts/bootstrap.js +69 -55
  5. data/assets/javascripts/bootstrap.min.js +3 -3
  6. data/assets/javascripts/bootstrap/alert.js +19 -6
  7. data/assets/javascripts/bootstrap/button.js +18 -5
  8. data/assets/javascripts/bootstrap/carousel.js +56 -16
  9. data/assets/javascripts/bootstrap/collapse.js +36 -7
  10. data/assets/javascripts/bootstrap/dropdown.js +39 -10
  11. data/assets/javascripts/bootstrap/modal.js +62 -33
  12. data/assets/javascripts/bootstrap/popover.js +41 -8
  13. data/assets/javascripts/bootstrap/scrollspy.js +36 -7
  14. data/assets/javascripts/bootstrap/tab.js +19 -6
  15. data/assets/javascripts/bootstrap/toast.js +36 -7
  16. data/assets/javascripts/bootstrap/tooltip.js +44 -12
  17. data/assets/javascripts/bootstrap/util.js +3 -3
  18. data/assets/stylesheets/_bootstrap-grid.scss +4 -3
  19. data/assets/stylesheets/_bootstrap-reboot.scss +3 -3
  20. data/assets/stylesheets/_bootstrap.scss +3 -3
  21. data/assets/stylesheets/bootstrap/_breadcrumb.scss +1 -3
  22. data/assets/stylesheets/bootstrap/_carousel.scss +1 -1
  23. data/assets/stylesheets/bootstrap/_custom-forms.scss +4 -2
  24. data/assets/stylesheets/bootstrap/_dropdown.scss +1 -1
  25. data/assets/stylesheets/bootstrap/_input-group.scss +20 -4
  26. data/assets/stylesheets/bootstrap/_nav.scss +1 -4
  27. data/assets/stylesheets/bootstrap/_navbar.scss +10 -2
  28. data/assets/stylesheets/bootstrap/_pagination.scss +2 -2
  29. data/assets/stylesheets/bootstrap/_progress.scss +1 -1
  30. data/assets/stylesheets/bootstrap/_reboot.scss +8 -8
  31. data/assets/stylesheets/bootstrap/_root.scss +0 -1
  32. data/assets/stylesheets/bootstrap/_spinners.scss +11 -2
  33. data/assets/stylesheets/bootstrap/_type.scss +1 -1
  34. data/assets/stylesheets/bootstrap/_variables.scss +8 -4
  35. data/assets/stylesheets/bootstrap/mixins/_forms.scss +8 -1
  36. data/assets/stylesheets/bootstrap/mixins/_image.scss +1 -1
  37. data/lib/bootstrap/version.rb +2 -2
  38. metadata +2 -2
@@ -35,11 +35,8 @@
35
35
  .nav-tabs {
36
36
  border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
37
37
 
38
- .nav-item {
39
- margin-bottom: -$nav-tabs-border-width;
40
- }
41
-
42
38
  .nav-link {
39
+ margin-bottom: -$nav-tabs-border-width;
43
40
  border: $nav-tabs-border-width solid transparent;
44
41
  @include border-top-radius($nav-tabs-border-radius);
45
42
 
@@ -136,8 +136,12 @@
136
136
  height: 1.5em;
137
137
  vertical-align: middle;
138
138
  content: "";
139
- background: no-repeat center center;
140
- background-size: 100% 100%;
139
+ background: 50% / 100% 100% no-repeat;
140
+ }
141
+
142
+ .navbar-nav-scroll {
143
+ max-height: $navbar-nav-scroll-max-height;
144
+ overflow-y: auto;
141
145
  }
142
146
 
143
147
  // Generate series of `.navbar-expand-*` responsive classes for configuring
@@ -199,6 +203,10 @@
199
203
  }
200
204
  }
201
205
 
206
+ .navbar-nav-scroll {
207
+ overflow: visible;
208
+ }
209
+
202
210
  .navbar-collapse {
203
211
  display: flex !important; // stylelint-disable-line declaration-no-important
204
212
 
@@ -66,9 +66,9 @@
66
66
  //
67
67
 
68
68
  .pagination-lg {
69
- @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);
69
+ @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $pagination-border-radius-lg);
70
70
  }
71
71
 
72
72
  .pagination-sm {
73
- @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);
73
+ @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $pagination-border-radius-sm);
74
74
  }
@@ -36,7 +36,7 @@
36
36
 
37
37
  @if $enable-transitions {
38
38
  .progress-bar-animated {
39
- animation: progress-bar-stripes $progress-bar-animation-timing;
39
+ animation: $progress-bar-animation-timing progress-bar-stripes;
40
40
 
41
41
  @if $enable-prefers-reduced-motion-media-query {
42
42
  @media (prefers-reduced-motion: reduce) {
@@ -1,4 +1,4 @@
1
- // stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
1
+ // stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
2
 
3
3
  // Reboot
4
4
  //
@@ -307,13 +307,13 @@ button {
307
307
  border-radius: 0;
308
308
  }
309
309
 
310
- // Work around a Firefox/IE bug where the transparent `button` background
311
- // results in a loss of the default `button` focus styles.
312
- //
313
- // Credit: https://github.com/suitcss/base/
314
- button:focus {
315
- outline: 1px dotted;
316
- outline: 5px auto -webkit-focus-ring-color;
310
+ // Explicitly remove focus outline in Chromium when it shouldn't be
311
+ // visible (e.g. as result of mouse click or touch tap). It already
312
+ // should be doing this automatically, but seems to currently be
313
+ // confused and applies its very visible two-tone outline anyway.
314
+
315
+ button:focus:not(:focus-visible) {
316
+ outline: 0;
317
317
  }
318
318
 
319
319
  input,
@@ -1,4 +1,3 @@
1
- // Do not forget to update getting-started/theming.md!
2
1
  :root {
3
2
  // Custom variable values only support SassScript inside `#{}`.
4
3
  @each $color, $value in $colors {
@@ -15,7 +15,7 @@
15
15
  border-right-color: transparent;
16
16
  // stylelint-disable-next-line property-disallowed-list
17
17
  border-radius: 50%;
18
- animation: spinner-border .75s linear infinite;
18
+ animation: .75s linear infinite spinner-border;
19
19
  }
20
20
 
21
21
  .spinner-border-sm {
@@ -47,10 +47,19 @@
47
47
  // stylelint-disable-next-line property-disallowed-list
48
48
  border-radius: 50%;
49
49
  opacity: 0;
50
- animation: spinner-grow .75s linear infinite;
50
+ animation: .75s linear infinite spinner-grow;
51
51
  }
52
52
 
53
53
  .spinner-grow-sm {
54
54
  width: $spinner-width-sm;
55
55
  height: $spinner-height-sm;
56
56
  }
57
+
58
+ @if $enable-prefers-reduced-motion-media-query {
59
+ @media (prefers-reduced-motion: reduce) {
60
+ .spinner-border,
61
+ .spinner-grow {
62
+ animation-duration: 1.5s;
63
+ }
64
+ }
65
+ }
@@ -1,4 +1,4 @@
1
- // stylelint-disable declaration-no-important, selector-list-comma-newline-after
1
+ // stylelint-disable selector-list-comma-newline-after
2
2
 
3
3
  //
4
4
  // Headings
@@ -274,7 +274,7 @@ $embed-responsive-aspect-ratios: join(
274
274
  // Font, line-height, and color for body text, headings, and more.
275
275
 
276
276
  // stylelint-disable value-keyword-case
277
- $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
277
+ $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
278
278
  $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
279
279
  $font-family-base: $font-family-sans-serif !default;
280
280
  // stylelint-enable value-keyword-case
@@ -583,7 +583,7 @@ $custom-select-disabled-bg: $gray-200 !default;
583
583
  $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
584
584
  $custom-select-indicator-color: $gray-800 !default;
585
585
  $custom-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") !default;
586
- $custom-select-background: escape-svg($custom-select-indicator) no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
586
+ $custom-select-background: escape-svg($custom-select-indicator) right $custom-select-padding-x center / $custom-select-bg-size no-repeat !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
587
587
 
588
588
  $custom-select-feedback-icon-padding-right: add(1em * .75, (2 * $custom-select-padding-y * .75) + $custom-select-padding-x + $custom-select-indicator-padding) !default;
589
589
  $custom-select-feedback-icon-position: center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;
@@ -731,6 +731,8 @@ $navbar-toggler-padding-x: .75rem !default;
731
731
  $navbar-toggler-font-size: $font-size-lg !default;
732
732
  $navbar-toggler-border-radius: $btn-border-radius !default;
733
733
 
734
+ $navbar-nav-scroll-max-height: 75vh !default;
735
+
734
736
  $navbar-dark-color: rgba($white, .5) !default;
735
737
  $navbar-dark-hover-color: rgba($white, .75) !default;
736
738
  $navbar-dark-active-color: $white !default;
@@ -772,12 +774,12 @@ $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
772
774
 
773
775
  $dropdown-link-color: $gray-900 !default;
774
776
  $dropdown-link-hover-color: darken($gray-900, 5%) !default;
775
- $dropdown-link-hover-bg: $gray-100 !default;
777
+ $dropdown-link-hover-bg: $gray-200 !default;
776
778
 
777
779
  $dropdown-link-active-color: $component-active-color !default;
778
780
  $dropdown-link-active-bg: $component-active-bg !default;
779
781
 
780
- $dropdown-link-disabled-color: $gray-600 !default;
782
+ $dropdown-link-disabled-color: $gray-500 !default;
781
783
 
782
784
  $dropdown-item-padding-y: .25rem !default;
783
785
  $dropdown-item-padding-x: 1.5rem !default;
@@ -816,6 +818,8 @@ $pagination-disabled-color: $gray-600 !default;
816
818
  $pagination-disabled-bg: $white !default;
817
819
  $pagination-disabled-border-color: $gray-300 !default;
818
820
 
821
+ $pagination-border-radius-sm: $border-radius-sm !default;
822
+ $pagination-border-radius-lg: $border-radius-lg !default;
819
823
 
820
824
  // Jumbotron
821
825
 
@@ -64,6 +64,13 @@
64
64
  color: color-yiq($color);
65
65
  background-color: rgba($color, $form-feedback-tooltip-opacity);
66
66
  @include border-radius($form-feedback-tooltip-border-radius);
67
+
68
+ // See https://github.com/twbs/bootstrap/pull/31557
69
+ // Align tooltip to form elements
70
+ .form-row > .col > &,
71
+ .form-row > [class*="col-"] > & {
72
+ left: $form-grid-gutter-width / 2;
73
+ }
67
74
  }
68
75
 
69
76
  @include form-validation-state-selector($state) {
@@ -108,7 +115,7 @@
108
115
 
109
116
  @if $enable-validation-icons {
110
117
  padding-right: $custom-select-feedback-icon-padding-right;
111
- background: $custom-select-background, escape-svg($icon) $custom-select-bg no-repeat $custom-select-feedback-icon-position / $custom-select-feedback-icon-size;
118
+ background: $custom-select-background, $custom-select-bg escape-svg($icon) $custom-select-feedback-icon-position / $custom-select-feedback-icon-size no-repeat;
112
119
  }
113
120
 
114
121
  &:focus {
@@ -26,7 +26,7 @@
26
26
  // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
27
27
  // but doesn't convert dppx=>dpi.
28
28
  // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
29
- // Compatibility info: https://caniuse.com/#feat=css-media-resolution
29
+ // Compatibility info: https://caniuse.com/css-media-resolution
30
30
  @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
31
31
  only screen and (min-resolution: 2dppx) { // Standardized
32
32
  background-image: url($file-2x);
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bootstrap
4
- VERSION = '4.5.3'
5
- BOOTSTRAP_SHA = 'a716fb03f965dc0846df479e14388b1b4b93d7ce'
4
+ VERSION = '4.6.0'
5
+ BOOTSTRAP_SHA = '6ffb0b48e455430f8a5359ed689ad64c1143fac2'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.3
4
+ version: 4.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twitter, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-08 00:00:00.000000000 Z
11
+ date: 2021-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: popper_js