diff options
| author | Jeff Adams <[email protected]> | 2011-11-29 11:12:32 -0600 |
|---|---|---|
| committer | Jeff Adams <[email protected]> | 2011-11-29 11:12:32 -0600 |
| commit | d48027d49567c2d38211c357d6fb8d6a5a9e8a7b (patch) | |
| tree | 537c78087fb4944468f7aaf8655437f8756d4eb3 /lib | |
| parent | ba17414d777919a84b1f055fcbb835d1f624f3d3 (diff) | |
| download | bootstrap-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.less | 2 |
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, |
