aboutsummaryrefslogtreecommitdiff
path: root/less/button-groups.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-11-02 09:36:51 -0700
committerMark Otto <[email protected]>2012-11-02 09:36:51 -0700
commit1477e081d46ebf6a5e6acb06debb7edb1a324918 (patch)
tree4467cd66b0999856636cda0c486004c63e25f119 /less/button-groups.less
parent7732d8b9b06d359be7096880135f9ff546a898a2 (diff)
parentd0c75bbc8324a552b93817b1f565fa798f6574cf (diff)
downloadbootstrap-1477e081d46ebf6a5e6acb06debb7edb1a324918.tar.xz
bootstrap-1477e081d46ebf6a5e6acb06debb7edb1a324918.zip
Merge branch '2.2.2-wip' into exploratory
Conflicts: docs/assets/css/bootstrap.css docs/getting-started.html docs/templates/pages/getting-started.mustache less/accordion.less less/alerts.less less/breadcrumbs.less less/buttons.less less/code.less less/dropdowns.less less/forms.less less/navbar.less less/progress-bars.less less/responsive-navbar.less less/tables.less less/thumbnails.less less/tooltip.less less/wells.less
Diffstat (limited to 'less/button-groups.less')
-rw-r--r--less/button-groups.less32
1 files changed, 8 insertions, 24 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index cbf9ac10c..8a74b9e75 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -56,41 +56,25 @@
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
.btn-group > .btn:first-child {
margin-left: 0;
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-bottom-left-radius: 4px;
+ .border-top-left-radius(4px);
+ .border-bottom-left-radius(4px);
}
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-right-radius: 4px;
+ .border-top-right-radius(4px);
+ .border-bottom-right-radius(4px);
}
// Reset corners for large buttons
.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;
+ .border-top-left-radius(6px);
+ .border-bottom-left-radius(6px);
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
- -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;
+ .border-top-right-radius(6px);
+ .border-bottom-right-radius(6px);
}
// On hover/focus/active, bring the proper btn to front