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 /dist/css/bootstrap.css | |
| 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 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 59cbab4fd..697575059 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2102,7 +2102,7 @@ input[type="button"].btn-block { padding: 6px 12px; font-size: 14px; font-weight: normal; - line-height: 1.428571429; + line-height: 1; text-align: center; background-color: #eeeeee; border: 1px solid #cccccc; @@ -2112,14 +2112,12 @@ input[type="button"].btn-block { .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; - line-height: 1.5; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; - line-height: 1.33; border-radius: 6px; } @@ -3180,6 +3178,11 @@ button.close { z-index: 2; } +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus { + outline: none; +} + .btn-group .btn + .btn { margin-left: -1px; } |
