From 9a7417e19fec9983ab9b06e5c437064613cf5292 Mon Sep 17 00:00:00 2001 From: Per Wiklander Date: Fri, 7 Sep 2012 00:54:00 +0300 Subject: [PATCH] Remove space between icon and input element MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a space between the icon and the actual input. This was caused by a space in the HTML which I guess was casued by the indentation. There should be no space (so no line break) between the span.add-on and the input tag. --- docs/index.html | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/docs/index.html b/docs/index.html index e16a92149..78289882c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -648,16 +648,14 @@
- - +
- - +
@@ -930,26 +928,23 @@

- - +
- - +

+

Please note that the span and input tags should be on one line.

 <form>
   <div class="input-prepend">
-    <span class="add-on"><i class="icon-envelope"></i></span>
-    <input class="span2" type="text" placeholder="Email address">
+    <span class="add-on"><i class="icon-envelope"></i></span><input class="span2" type="text" placeholder="Email address">
   </div>
   <div class="input-prepend">
-    <span class="add-on"><i class="icon-key"></i></span>
-    <input class="span2" type="password" placeholder="Password">
+    <span class="add-on"><i class="icon-key"></i></span><input class="span2" type="password" placeholder="Password">
   </div>
 </form>