diff options
| author | Chris Rebert <[email protected]> | 2014-02-06 10:51:49 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-02-06 10:59:04 -0800 |
| commit | 37c21a3ac7f86f5cac904a12af897b3051170d02 (patch) | |
| tree | 95ea6171a7f952c3d3cc851d7075659ffbf449cb /less/button-groups.less | |
| parent | 87219cfeca18562c0b5b4f204396501f439be794 (diff) | |
| download | bootstrap-37c21a3ac7f86f5cac904a12af897b3051170d02.tar.xz bootstrap-37c21a3ac7f86f5cac904a12af897b3051170d02.zip | |
use Less' extend feature in btn-group-lg etc.
Diffstat (limited to 'less/button-groups.less')
| -rw-r--r-- | less/button-groups.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/button-groups.less b/less/button-groups.less index 58fd90675..27eb796b8 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -96,9 +96,9 @@ // // Remix the default button sizing classes into new ones for easier manipulation. -.btn-group-xs > .btn { .btn-xs(); } -.btn-group-sm > .btn { .btn-sm(); } -.btn-group-lg > .btn { .btn-lg(); } +.btn-group-xs > .btn { &:extend(.btn-xs); } +.btn-group-sm > .btn { &:extend(.btn-sm); } +.btn-group-lg > .btn { &:extend(.btn-lg); } // Split button dropdowns |
