mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
use Less' extend feature in btn-group-lg etc.
This commit is contained in:
parent
87219cfeca
commit
37c21a3ac7
2 changed files with 9 additions and 24 deletions
27
dist/css/bootstrap.css
vendored
27
dist/css/bootstrap.css
vendored
|
@ -2311,19 +2311,22 @@ fieldset[disabled] .btn-link:focus {
|
||||||
color: #999;
|
color: #999;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
.btn-lg {
|
.btn-lg,
|
||||||
|
.btn-group-lg > .btn {
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 1.33;
|
line-height: 1.33;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
.btn-sm {
|
.btn-sm,
|
||||||
|
.btn-group-sm > .btn {
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
.btn-xs {
|
.btn-xs,
|
||||||
|
.btn-group-xs > .btn {
|
||||||
padding: 1px 5px;
|
padding: 1px 5px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
@ -3196,24 +3199,6 @@ input[type="button"].btn-block {
|
||||||
.btn-group.open .dropdown-toggle {
|
.btn-group.open .dropdown-toggle {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
.btn-group-xs > .btn {
|
|
||||||
padding: 1px 5px;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1.5;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
.btn-group-sm > .btn {
|
|
||||||
padding: 5px 10px;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1.5;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
.btn-group-lg > .btn {
|
|
||||||
padding: 10px 16px;
|
|
||||||
font-size: 18px;
|
|
||||||
line-height: 1.33;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
.btn-group > .btn + .dropdown-toggle {
|
.btn-group > .btn + .dropdown-toggle {
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
|
|
|
@ -96,9 +96,9 @@
|
||||||
//
|
//
|
||||||
// Remix the default button sizing classes into new ones for easier manipulation.
|
// Remix the default button sizing classes into new ones for easier manipulation.
|
||||||
|
|
||||||
.btn-group-xs > .btn { .btn-xs(); }
|
.btn-group-xs > .btn { &:extend(.btn-xs); }
|
||||||
.btn-group-sm > .btn { .btn-sm(); }
|
.btn-group-sm > .btn { &:extend(.btn-sm); }
|
||||||
.btn-group-lg > .btn { .btn-lg(); }
|
.btn-group-lg > .btn { &:extend(.btn-lg); }
|
||||||
|
|
||||||
|
|
||||||
// Split button dropdowns
|
// Split button dropdowns
|
||||||
|
|
Loading…
Reference in a new issue