2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03: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
+1 -1
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 {