Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2012-12-20 07:33:14 +0400
committerMark Otto <otto@github.com>2012-12-20 07:33:14 +0400
commit19a94d08d659d39e718efca95812cac2db178b15 (patch)
tree7517fbd61b4af479844e53f34a50b3c8cc585ed3 /less
parent4c82dd3645ec60277b07a161c779f57dda10037c (diff)
Remove support for multiple buttons in input groups because fuck that shit.
Diffstat (limited to 'less')
-rw-r--r--less/forms.less8
1 files changed, 4 insertions, 4 deletions
diff --git a/less/forms.less b/less/forms.less
index a10e57d02f..949418d983 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -510,22 +510,22 @@ select:focus:invalid {
}
// Prepend
.input-group-btn {
- &:first-child > .btn:last-child,
+ &:first-child > .btn,
&.btn-group:first-child > .btn {
border-right: 0;
}
- &:first-child > .btn:first-child,
+ &:first-child > .btn,
&.btn-group:first-child > .btn {
border-radius: @border-radius-base 0 0 @border-radius-base;
}
}
// Append
.input-group-btn {
- &:last-child > .btn:first-child,
+ &:last-child > .btn,
&.btn-group:last-child > .btn:first-child {
border-left: 0;
}
- &:last-child > .btn:last-child,
+ &:last-child > .btn,
&.btn-group:last-child > .btn {
border-radius: 0 @border-radius-base @border-radius-base 0;
}