aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJeff Adams <[email protected]>2011-11-29 11:12:32 -0600
committerJeff Adams <[email protected]>2011-11-29 11:12:32 -0600
commitd48027d49567c2d38211c357d6fb8d6a5a9e8a7b (patch)
tree537c78087fb4944468f7aaf8655437f8756d4eb3 /lib
parentba17414d777919a84b1f055fcbb835d1f624f3d3 (diff)
downloadbootstrap-d48027d49567c2d38211c357d6fb8d6a5a9e8a7b.tar.xz
bootstrap-d48027d49567c2d38211c357d6fb8d6a5a9e8a7b.zip
add input width calculation fix from #408 to the 2.0 branch
Diffstat (limited to 'lib')
-rw-r--r--lib/forms.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/forms.less b/lib/forms.less
index 39c293799..5de55e727 100644
--- a/lib/forms.less
+++ b/lib/forms.less
@@ -145,7 +145,7 @@ select:focus {
.formColumns(@columnSpan: 1) {
display: inline-block;
float: none;
- width: ((@gridColumnWidth - 10) * @columnSpan) + ((@gridColumnWidth - 10) * (@columnSpan - 1));
+ width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 10;
margin-left: 0;
}
input,