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
diff options
context:
space:
mode:
authorShohei Yoshida <fellows3@gmail.com>2019-03-18 02:27:59 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-03-18 02:27:59 +0300
commit5e459e9b52bf333e420361b8f31b8206d389bd2c (patch)
tree6563cc9f13b852798892c34301e10f509ca64349 /scss/_forms.scss
parentad0f5f153c821237309b0ef5f19e49b8dad358f8 (diff)
Workaround for MS edge bug (#28275)
Diffstat (limited to 'scss/_forms.scss')
-rw-r--r--scss/_forms.scss4
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss
index e31a47312e..677162b8c6 100644
--- a/scss/_forms.scss
+++ b/scss/_forms.scss
@@ -210,7 +210,9 @@ textarea.form-control {
margin-top: $form-check-input-margin-y;
margin-left: -$form-check-input-gutter;
- &:disabled ~ .form-check-label {
+ // Use disabled attribute instead of :disabled pseudo-class
+ // Workaround for: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/11295231
+ &[disabled] ~ .form-check-label {
color: $text-muted;
}
}