From b8a4921b5794f11c24100e2701f0df228d607698 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 10 Oct 2011 19:38:24 -0700 Subject: [PATCH] fixing form input width sizing, removing unused CSS --- bootstrap.css | 2 +- lib/forms.less | 2 +- lib/patterns.less | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bootstrap.css b/bootstrap.css index 5a036a4300..7eec0a7604 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -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: Sun Oct 9 23:02:24 PDT 2011 + * Date: Mon Oct 10 19:37:09 PDT 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). diff --git a/lib/forms.less b/lib/forms.less index 6667df0c40..82da41aabf 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 { diff --git a/lib/patterns.less b/lib/patterns.less index e35087d03c..bc70f0bf33 100644 --- a/lib/patterns.less +++ b/lib/patterns.less @@ -446,8 +446,6 @@ a.menu:after, padding: 0 5px; color: @grayLight; } - a { - } .active a { color: @grayDark; }