mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Allow multiple buttons in .input-prepend
and .input-append
.
This has a look similar to button groups.
This commit is contained in:
parent
d335adf644
commit
fedce0cec7
@ -391,7 +391,7 @@ select:focus:required:invalid {
|
||||
}
|
||||
.add-on,
|
||||
.btn {
|
||||
.border-radius(3px 0 0 3px);
|
||||
.border-radius(0);
|
||||
}
|
||||
.active {
|
||||
background-color: lighten(@green, 30);
|
||||
@ -403,6 +403,10 @@ select:focus:required:invalid {
|
||||
.btn {
|
||||
margin-right: -1px;
|
||||
}
|
||||
.add-on:first-child,
|
||||
.btn:first-child {
|
||||
.border-radius(3px 0 0 3px);
|
||||
}
|
||||
}
|
||||
.input-append {
|
||||
input,
|
||||
@ -417,6 +421,9 @@ select:focus:required:invalid {
|
||||
.add-on,
|
||||
.btn {
|
||||
margin-left: -1px;
|
||||
}
|
||||
.add-on:last-child,
|
||||
.btn:last-child {
|
||||
.border-radius(0 3px 3px 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user