From 942e313727d1ad886a1024c24fe4a9e8e2e0bb3e Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Wed, 20 Apr 2022 00:12:09 -0400 Subject: New upstream version 8.2.0. --- npm_assets/node_modules/bootstrap/scss/_card.scss | 10 +- .../node_modules/bootstrap/scss/_carousel.scss | 7 +- .../node_modules/bootstrap/scss/_custom-forms.scss | 12 +- npm_assets/node_modules/bootstrap/scss/_forms.scss | 20 +- .../node_modules/bootstrap/scss/_functions.scss | 48 ++++- .../node_modules/bootstrap/scss/_images.scss | 2 +- .../node_modules/bootstrap/scss/_input-group.scss | 3 + .../node_modules/bootstrap/scss/_jumbotron.scss | 2 +- npm_assets/node_modules/bootstrap/scss/_modal.scss | 4 +- .../node_modules/bootstrap/scss/_popover.scss | 18 +- npm_assets/node_modules/bootstrap/scss/_print.scss | 9 - .../node_modules/bootstrap/scss/_spinners.scss | 4 +- .../node_modules/bootstrap/scss/_tooltip.scss | 8 +- .../node_modules/bootstrap/scss/_variables.scss | 22 +- .../bootstrap/scss/bootstrap-grid.scss | 2 +- .../bootstrap/scss/bootstrap-reboot.scss | 2 +- .../node_modules/bootstrap/scss/bootstrap.scss | 2 +- .../node_modules/bootstrap/scss/mixins/_forms.scss | 16 +- .../bootstrap/scss/mixins/_grid-framework.scss | 4 +- .../node_modules/bootstrap/scss/mixins/_grid.scss | 22 +- .../bootstrap/scss/mixins/_screen-reader.scss | 2 +- .../bootstrap/scss/utilities/_embed.scss | 2 +- .../bootstrap/scss/utilities/_spacing.scss | 2 +- .../node_modules/bootstrap/scss/vendor/_rfs.scss | 228 ++++++++++++--------- 24 files changed, 265 insertions(+), 186 deletions(-) (limited to 'npm_assets/node_modules/bootstrap/scss') diff --git a/npm_assets/node_modules/bootstrap/scss/_card.scss b/npm_assets/node_modules/bootstrap/scss/_card.scss index faaa75e..a974163 100644 --- a/npm_assets/node_modules/bootstrap/scss/_card.scss +++ b/npm_assets/node_modules/bootstrap/scss/_card.scss @@ -58,7 +58,7 @@ } .card-subtitle { - margin-top: -$card-spacer-y / 2; + margin-top: -$card-spacer-y * .5; margin-bottom: 0; } @@ -109,15 +109,15 @@ // .card-header-tabs { - margin-right: -$card-spacer-x / 2; + margin-right: -$card-spacer-x * .5; margin-bottom: -$card-spacer-y; - margin-left: -$card-spacer-x / 2; + margin-left: -$card-spacer-x * .5; border-bottom: 0; } .card-header-pills { - margin-right: -$card-spacer-x / 2; - margin-left: -$card-spacer-x / 2; + margin-right: -$card-spacer-x * .5; + margin-left: -$card-spacer-x * .5; } // Card image diff --git a/npm_assets/node_modules/bootstrap/scss/_carousel.scss b/npm_assets/node_modules/bootstrap/scss/_carousel.scss index db30bed..25aaf58 100644 --- a/npm_assets/node_modules/bootstrap/scss/_carousel.scss +++ b/npm_assets/node_modules/bootstrap/scss/_carousel.scss @@ -95,8 +95,11 @@ align-items: center; // 2. vertically center contents justify-content: center; // 3. horizontally center contents width: $carousel-control-width; + padding: 0; color: $carousel-control-color; text-align: center; + background: none; + border: 0; opacity: $carousel-control-opacity; @include transition($carousel-control-transition); @@ -186,9 +189,9 @@ .carousel-caption { position: absolute; - right: (100% - $carousel-caption-width) / 2; + right: (100% - $carousel-caption-width) * .5; bottom: 20px; - left: (100% - $carousel-caption-width) / 2; + left: (100% - $carousel-caption-width) * .5; z-index: 10; padding-top: 20px; padding-bottom: 20px; diff --git a/npm_assets/node_modules/bootstrap/scss/_custom-forms.scss b/npm_assets/node_modules/bootstrap/scss/_custom-forms.scss index 06725ff..b3db8c4 100644 --- a/npm_assets/node_modules/bootstrap/scss/_custom-forms.scss +++ b/npm_assets/node_modules/bootstrap/scss/_custom-forms.scss @@ -26,7 +26,7 @@ left: 0; z-index: -1; // Put the input behind the label so it doesn't overlay text width: $custom-control-indicator-size; - height: ($font-size-base * $line-height-base + $custom-control-indicator-size) / 2; + height: ($font-size-base * $line-height-base + $custom-control-indicator-size) * .5; opacity: 0; &:checked ~ .custom-control-label::before { @@ -83,7 +83,7 @@ // Background-color and (when enabled) gradient &::before { position: absolute; - top: ($font-size-base * $line-height-base - $custom-control-indicator-size) / 2; + top: ($font-size-base * $line-height-base - $custom-control-indicator-size) * .5; left: -($custom-control-gutter + $custom-control-indicator-size); display: block; width: $custom-control-indicator-size; @@ -98,7 +98,7 @@ // Foreground (icon) &::after { position: absolute; - top: ($font-size-base * $line-height-base - $custom-control-indicator-size) / 2; + top: ($font-size-base * $line-height-base - $custom-control-indicator-size) * .5; left: -($custom-control-gutter + $custom-control-indicator-size); display: block; width: $custom-control-indicator-size; @@ -186,7 +186,7 @@ } &::after { - top: add(($font-size-base * $line-height-base - $custom-control-indicator-size) / 2, $custom-control-indicator-border-width * 2); + top: add(($font-size-base * $line-height-base - $custom-control-indicator-size) * .5, $custom-control-indicator-border-width * 2); left: add(-($custom-switch-width + $custom-control-gutter), $custom-control-indicator-border-width * 2); width: $custom-switch-indicator-size; height: $custom-switch-indicator-size; @@ -406,7 +406,7 @@ &::-webkit-slider-thumb { width: $custom-range-thumb-width; height: $custom-range-thumb-height; - margin-top: ($custom-range-track-height - $custom-range-thumb-height) / 2; // Webkit specific + margin-top: ($custom-range-track-height - $custom-range-thumb-height) * .5; // Webkit specific @include gradient-bg($custom-range-thumb-bg); border: $custom-range-thumb-border; @include border-radius($custom-range-thumb-border-radius); @@ -481,7 +481,7 @@ cursor: $custom-range-track-cursor; background-color: transparent; border-color: transparent; - border-width: $custom-range-thumb-height / 2; + border-width: $custom-range-thumb-height * .5; @include box-shadow($custom-range-track-box-shadow); } diff --git a/npm_assets/node_modules/bootstrap/scss/_forms.scss b/npm_assets/node_modules/bootstrap/scss/_forms.scss index 66a4efe..cde4663 100644 --- a/npm_assets/node_modules/bootstrap/scss/_forms.scss +++ b/npm_assets/node_modules/bootstrap/scss/_forms.scss @@ -30,12 +30,6 @@ border: 0; } - // Remove select outline from select box in FF - &:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 $input-color; - } - // Customize the `:focus` state to imitate native WebKit styles. @include form-control-focus($ignore-warning: true); @@ -69,6 +63,12 @@ input[type="month"] { } select.form-control { + // Remove select outline from select box in FF + &:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 $input-color; + } + &:focus::-ms-value { // Suppress the nested default white text on blue background highlight given to // the selected option text when the (still closed)