aboutsummaryrefslogtreecommitdiff
path: root/lib/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-10-10 19:38:24 -0700
committerMark Otto <[email protected]>2011-10-10 19:38:24 -0700
commitb8a4921b5794f11c24100e2701f0df228d607698 (patch)
tree0697bb468002c1c41b55fb396df22f7f59790d70 /lib/forms.less
parent1b19799d700b56f693fdeaf826edaea7cd030b98 (diff)
downloadbootstrap-b8a4921b5794f11c24100e2701f0df228d607698.tar.xz
bootstrap-b8a4921b5794f11c24100e2701f0df228d607698.zip
fixing form input width sizing, removing unused CSS
Diffstat (limited to 'lib/forms.less')
-rw-r--r--lib/forms.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/forms.less b/lib/forms.less
index 6667df0c4..82da41aab 100644
--- a/lib/forms.less
+++ b/lib/forms.less
@@ -254,7 +254,7 @@ textarea.xxlarge {
// This is a duplication of the main grid .columns() mixin, but subtracts 10px to account for input padding and border
.formColumns(@columnSpan: 1) {
display: inline-block;
- width: ((@gridColumnWidth - 10) * @columnSpan) + ((@gridColumnWidth - 10) * (@columnSpan - 1));
+ width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 10;
}
input,
textarea {