From 7313702cf3e609dfed685bccc66b327436f92385 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 30 Nov 2012 00:53:07 -0800 Subject: Inputs now 100% width by default * Includes text inputs, selects, and textareas * Updated docs to include .span* sizes wherever possible * Commented out responsive 1200px inputs grid * Still some derp to be done to improve more, but this is a decent first stab --- docs/base-css.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index eaa5aa51e..8ddb107ff 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -923,12 +923,12 @@ For example, <code><section></code> should be wrapped as inlin

Search form

Add .form-search to the form and .search-query to the <input> for an extra-rounded text input.

 <form class="form-search">
-  <input type="text" class="input-medium search-query">
+  <input type="text" class="span3 search-query">
   <button type="submit" class="btn">Search</button>
 </form>
 
@@ -936,8 +936,8 @@ For example, <code><section></code> should be wrapped as inlin

Inline form

Add .form-inline for left-aligned labels and inline-block controls for a compact layout.

- - + + @@ -945,8 +945,8 @@ For example, <code><section></code> should be wrapped as inlin
 <form class="form-inline">
-  <input type="text" class="input-small" placeholder="Email">
-  <input type="password" class="input-small" placeholder="Password">
+  <input type="text" class="span3" placeholder="Email">
+  <input type="password" class="span3" placeholder="Password">
   <label class="checkbox">
     <input type="checkbox"> Remember me
   </label>
@@ -1186,26 +1186,26 @@ For example, <code><section></code> should be wrapped as inlin
           

Instead of a <span> with text, use a .btn to attach a button (or two) to an input.

- +
 <div class="input-append">
-  <input class="span2" id="appendedInputButton" type="text">
+  <input class="span3" id="appendedInputButton" type="text">
   <button class="btn" type="button">Go!</button>
 </div>
 
- +
 <div class="input-append">
-  <input id="appendedInputButton" type="text">
+  <input class="span3" id="appendedInputButton" type="text">
   <button class="btn" type="button">Search</button>
   <button class="btn" type="button">Options</button>
 </div>
@@ -1215,7 +1215,7 @@ For example, <code><section></code> should be wrapped as inlin
           

- +
- +
- +
- +
 <form class="form-search">
   <div class="input-append">
-    <input type="text" class="search-query">
+    <input type="text" class="search-query span3">
     <button type="submit" class="btn">Search</button>
   </div>
   <div class="input-prepend">
     <button type="submit" class="btn">Search</button>
-    <input type="text" class="search-query">
+    <input type="text" class="search-query span3">
   </div>
 </form>
 
-- cgit v1.2.3