0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00
This commit is contained in:
Zlatan Vasović 2013-11-07 20:58:17 +01:00
parent 463343af63
commit aad447e290
3 changed files with 30 additions and 12 deletions

View File

@ -4031,10 +4031,18 @@ textarea.input-group-sm > .input-group-btn > .btn {
position: relative;
}
.input-group-btn > .btn:not(:first-of-type):not(:last-of-type) {
border-radius: 0;
}
.input-group-btn > .btn + .btn {
margin-left: -4px;
}
.input-group-btn > .btn + .btn:last-of-type {
margin-left: -5px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
z-index: 2;

File diff suppressed because one or more lines are too long

View File

@ -121,16 +121,26 @@
&:last-child > .btn {
margin-left: -1px;
}
}
.input-group-btn > .btn {
position: relative;
// Jankily prevent input button groups from wrapping
+ .btn {
margin-left: -4px;
}
// Bring the "active" button to the front
&:hover,
&:active {
z-index: 2;
> .btn {
position: relative;
&:not(:first-of-type):not(:last-of-type) {
border-radius: 0;
}
// Jankily prevent input button groups from wrapping
+ .btn {
margin-left: -4px;
}
+ .btn:last-of-type {
margin-left: -5px;
}
// Bring the "active" button to the front
&:hover,
&:active {
z-index: 2;
}
}
}