diff options
| author | Mark Otto <[email protected]> | 2011-12-27 17:39:34 -0600 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-27 17:39:34 -0600 |
| commit | 704d713aadbfcd27e39226cb0d1b2243d52dde0a (patch) | |
| tree | 7a241a9f27481151df65888cda571e6aec08d2c1 /bootstrap.css | |
| parent | 53c6dbff0d6dd781df421f07acdd9e98719b41bf (diff) | |
| download | bootstrap-704d713aadbfcd27e39226cb0d1b2243d52dde0a.tar.xz bootstrap-704d713aadbfcd27e39226cb0d1b2243d52dde0a.zip | |
border radius on large button toolbar
Diffstat (limited to 'bootstrap.css')
| -rw-r--r-- | bootstrap.css | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/bootstrap.css b/bootstrap.css index e83f46258..1d0a29b51 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Tue Dec 27 17:02:48 CST 2011 + * Date: Tue Dec 27 17:38:27 CST 2011 */ html, body { margin: 0; @@ -1628,6 +1628,23 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { -moz-border-radius-bottomright: 4px; border-bottom-right-radius: 4px; } +.btn-group .btn.large:first-child { + margin-left: 0; + -webkit-border-top-left-radius: 6px; + -moz-border-radius-topleft: 6px; + border-top-left-radius: 6px; + -webkit-border-bottom-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + border-bottom-left-radius: 6px; +} +.btn-group .btn.large:last-child { + -webkit-border-top-right-radius: 6px; + -moz-border-radius-topright: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + -moz-border-radius-bottomright: 6px; + border-bottom-right-radius: 6px; +} .btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active { z-index: 2; } |
