Skip to content

Commit

Permalink
adjust width calculations for formColumns to fix issue twbs#404
Browse files Browse the repository at this point in the history
  • Loading branch information
tinyfly committed Oct 10, 2011
1 parent c85e93c commit 12cb082
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap.css
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Tue Oct 4 21:26:21 PDT 2011
* Date: Mon Oct 10 14:31:07 CDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down
2 changes: 1 addition & 1 deletion lib/forms.less
Expand Up @@ -236,7 +236,7 @@ textarea.xxlarge {
.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,
Expand Down

0 comments on commit 12cb082

Please sign in to comment.