diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 18:41:44 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 18:41:44 +0000 |
commit | e8c2e17bc901ab139377e759f5ef931f8649b8c1 (patch) | |
tree | bebbeae1760c0cb5b5dea88fb268153a38938fab /vendor/twbs/bootstrap/scss/_reboot.scss | |
parent | 6fae291cc8ec69a74d0c1673186b3d8f319378d4 (diff) | |
download | volse-hubzilla-e8c2e17bc901ab139377e759f5ef931f8649b8c1.tar.gz volse-hubzilla-e8c2e17bc901ab139377e759f5ef931f8649b8c1.tar.bz2 volse-hubzilla-e8c2e17bc901ab139377e759f5ef931f8649b8c1.zip |
compser update twbs/bootstrap
Diffstat (limited to 'vendor/twbs/bootstrap/scss/_reboot.scss')
-rw-r--r-- | vendor/twbs/bootstrap/scss/_reboot.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vendor/twbs/bootstrap/scss/_reboot.scss b/vendor/twbs/bootstrap/scss/_reboot.scss index 6f73466d3..cd93bfe24 100644 --- a/vendor/twbs/bootstrap/scss/_reboot.scss +++ b/vendor/twbs/bootstrap/scss/_reboot.scss @@ -1,4 +1,4 @@ -// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix +// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix // Reboot // @@ -307,13 +307,13 @@ button { border-radius: 0; } -// Work around a Firefox/IE bug where the transparent `button` background -// results in a loss of the default `button` focus styles. -// -// Credit: https://github.com/suitcss/base/ -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; +// Explicitly remove focus outline in Chromium when it shouldn't be +// visible (e.g. as result of mouse click or touch tap). It already +// should be doing this automatically, but seems to currently be +// confused and applies its very visible two-tone outline anyway. + +button:focus:not(:focus-visible) { + outline: 0; } input, |