Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2020-06-04 16:59:24 +0300
committerMark Otto <otto@github.com>2020-06-16 05:04:19 +0300
commit8b7b234fd1c840a23ac2ca2ba69a3a2a2abf3100 (patch)
tree7aaadebf416a6a281c2c53fdf192e6725ce7be64 /scss
parent1a0a0858efa0e1e3c6bebd38058df8ad39ca27a5 (diff)
Switch to btn-check
Diffstat (limited to 'scss')
-rw-r--r--scss/_button-group.scss6
-rw-r--r--scss/_buttons.scss6
-rw-r--r--scss/forms/_form-check.scss2
-rw-r--r--scss/mixins/_buttons.scss12
4 files changed, 13 insertions, 13 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss
index a2cf7cf274..8be6c0f52f 100644
--- a/scss/_button-group.scss
+++ b/scss/_button-group.scss
@@ -14,8 +14,8 @@
// Bring the hover, focused, and "active" buttons to the front to overlay
// the borders properly
- > .btn-toggle:checked + .btn,
- > .btn-toggle:focus + .btn,
+ > .btn-check:checked + .btn,
+ > .btn-check:focus + .btn,
> .btn:hover,
> .btn:focus,
> .btn:active,
@@ -51,7 +51,7 @@
// - Target second buttons which are not part of toggle buttons
// - Target third or more child
// - Target buttons in a button group
- > :not(.btn-toggle) + .btn,
+ > :not(.btn-check) + .btn,
> .btn:nth-child(n + 3),
> .btn-group:not(:first-child) > .btn {
@include border-left-radius(0);
diff --git a/scss/_buttons.scss b/scss/_buttons.scss
index 67c70de3b1..e17d4895e1 100644
--- a/scss/_buttons.scss
+++ b/scss/_buttons.scss
@@ -24,14 +24,14 @@
text-decoration: if($link-hover-decoration == underline, none, null);
}
- .btn-toggle:focus + &,
+ .btn-check:focus + &,
&:focus {
outline: 0;
box-shadow: $btn-focus-box-shadow;
}
- .btn-toggle:checked + &,
- .btn-toggle:active + &,
+ .btn-check:checked + &,
+ .btn-check:active + &,
&:active,
&.active {
@include box-shadow($btn-active-box-shadow);
diff --git a/scss/forms/_form-check.scss b/scss/forms/_form-check.scss
index fef7be6fe0..f1635780fe 100644
--- a/scss/forms/_form-check.scss
+++ b/scss/forms/_form-check.scss
@@ -135,7 +135,7 @@
margin-right: $form-check-inline-margin-right;
}
-.btn-toggle {
+.btn-check {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
diff --git a/scss/mixins/_buttons.scss b/scss/mixins/_buttons.scss
index e8655105d5..09ef0cb38c 100644
--- a/scss/mixins/_buttons.scss
+++ b/scss/mixins/_buttons.scss
@@ -25,7 +25,7 @@
border-color: $hover-border;
}
- .btn-toggle:focus + &,
+ .btn-check:focus + &,
&:focus {
color: $hover-color;
@include gradient-bg($hover-background);
@@ -38,8 +38,8 @@
}
}
- .btn-toggle:checked + &,
- .btn-toggle:active + &,
+ .btn-check:checked + &,
+ .btn-check:active + &,
&:active,
&.active,
.show > &.dropdown-toggle {
@@ -85,13 +85,13 @@
border-color: $active-border;
}
- .btn-toggle:focus + &,
+ .btn-check:focus + &,
&:focus {
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
}
- .btn-toggle:checked + &,
- .btn-toggle:active + &,
+ .btn-check:checked + &,
+ .btn-check:active + &,
&:active,
&.active,
&.dropdown-toggle.show {