diff options
| author | Mark Otto <[email protected]> | 2013-09-06 09:50:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-06 09:50:38 -0700 |
| commit | 8bea86e2efed39af9d7469b20593d639532b84d0 (patch) | |
| tree | 9d78f0bba5534ed62745a36975a34d399ab0edaf /dist/css/bootstrap.css | |
| parent | e5038a339c69c78e8a4b8de702a6b871c3653c04 (diff) | |
| download | bootstrap-8bea86e2efed39af9d7469b20593d639532b84d0.tar.xz bootstrap-8bea86e2efed39af9d7469b20593d639532b84d0.zip | |
fixes #10024: Use negative margin to fix the border between button and input in input groups
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 81f16da51..62a4257a0 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3791,6 +3791,14 @@ textarea.input-group-sm > .input-group-btn > .btn { white-space: nowrap; } +.input-group-btn:first-child > .btn { + margin-right: -1px; +} + +.input-group-btn:last-child > .btn { + margin-left: -1px; +} + .input-group-btn > .btn { position: relative; } |
