diff options
| author | Mark Otto <[email protected]> | 2013-08-05 16:16:58 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-05 16:16:58 -0700 |
| commit | f3bd6dbf0356033e110fa13856c6ea28fa6623e9 (patch) | |
| tree | 902dad29f4a41df6bf3daee108aafdad65e85f52 /less/button-groups.less | |
| parent | ab090a29fb84a7127c8aeb9ab7916a10049a1e8a (diff) | |
| download | bootstrap-f3bd6dbf0356033e110fa13856c6ea28fa6623e9.tar.xz bootstrap-f3bd6dbf0356033e110fa13856c6ea28fa6623e9.zip | |
fixes #8647: remove focus outline on :focus of buttons in button groups
Diffstat (limited to 'less/button-groups.less')
| -rw-r--r-- | less/button-groups.less | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index 3b6a4e8b3..3ae18e92f 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -47,6 +47,10 @@ &.active { z-index: 2; } + &:focus { + // Remove focus outline when dropdown JS adds it after closing the menu + outline: none; + } } } |
