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:
authorPatrick H. Lauke <redux@splintered.co.uk>2021-01-10 19:13:08 +0300
committerGitHub <noreply@github.com>2021-01-10 19:13:08 +0300
commitd62d18f1726dd54166fa6c6a8b121dd3770d16c7 (patch)
tree388cc405bb5b00e821e22b5eef1684eb677004b5 /scss
parenta2ae2c364f0fe58bf2abbd87cfd5af5d0bf57326 (diff)
Consistently use outline:0 rather than outline:none (#32751)
just for code consistency, no actual effect on styling per se
Diffstat (limited to 'scss')
-rw-r--r--scss/_close.scss2
-rw-r--r--scss/forms/_form-range.scss2
2 files changed, 2 insertions, 2 deletions
diff --git a/scss/_close.scss b/scss/_close.scss
index db5d02787e..32a0f68ccd 100644
--- a/scss/_close.scss
+++ b/scss/_close.scss
@@ -22,7 +22,7 @@
}
&:focus {
- outline: none;
+ outline: 0;
box-shadow: $btn-close-focus-shadow;
opacity: $btn-close-focus-opacity;
}
diff --git a/scss/forms/_form-range.scss b/scss/forms/_form-range.scss
index b603a7bc35..ae1d841d55 100644
--- a/scss/forms/_form-range.scss
+++ b/scss/forms/_form-range.scss
@@ -12,7 +12,7 @@
appearance: none;
&:focus {
- outline: none;
+ outline: 0;
// Pseudo-elements must be split across multiple rulesets to have an effect.
// No box-shadow() mixin for focus accessibility.