0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

fixing form input width sizing, removing unused CSS

This commit is contained in:
Mark Otto 2011-10-10 19:38:24 -07:00
parent 1b19799d70
commit b8a4921b57
3 changed files with 2 additions and 4 deletions

2
bootstrap.css vendored
View File

@ -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).

View File

@ -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 {

View File

@ -446,8 +446,6 @@ a.menu:after,
padding: 0 5px;
color: @grayLight;
}
a {
}
.active a {
color: @grayDark;
}