mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
parent
463343af63
commit
aad447e290
3 changed files with 30 additions and 12 deletions
8
dist/css/bootstrap.css
vendored
8
dist/css/bootstrap.css
vendored
|
@ -4031,10 +4031,18 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-group-btn > .btn:not(:first-of-type):not(:last-of-type) {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.input-group-btn > .btn + .btn {
|
.input-group-btn > .btn + .btn {
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-group-btn > .btn + .btn:last-of-type {
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
.input-group-btn > .btn:hover,
|
.input-group-btn > .btn:hover,
|
||||||
.input-group-btn > .btn:active {
|
.input-group-btn > .btn:active {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -121,16 +121,26 @@
|
||||||
&:last-child > .btn {
|
&:last-child > .btn {
|
||||||
margin-left: -1px;
|
margin-left: -1px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
.input-group-btn > .btn {
|
> .btn {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
&:not(:first-of-type):not(:last-of-type) {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Jankily prevent input button groups from wrapping
|
// Jankily prevent input button groups from wrapping
|
||||||
+ .btn {
|
+ .btn {
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
|
+ .btn:last-of-type {
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
// Bring the "active" button to the front
|
// Bring the "active" button to the front
|
||||||
&:hover,
|
&:hover,
|
||||||
&:active {
|
&:active {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue