From 59ec4c7154984bd2847ff434fae7874f0b8e5265 Mon Sep 17 00:00:00 2001
From: Mark Otto <markotto@twitter.com>
Date: Mon, 30 Apr 2012 15:40:49 -0700
Subject: [PATCH] make responsive input fields not wrap for fluid input
 prepend/append by setting block back to inline-block (oversight of 2.0.3)

---
 docs/assets/css/bootstrap-responsive.css | 2 +-
 less/responsive-767px-max.less           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css
index 7f669d573f..4791a686f9 100644
--- a/docs/assets/css/bootstrap-responsive.css
+++ b/docs/assets/css/bootstrap-responsive.css
@@ -169,7 +169,7 @@
   }
   [class*="span"],
   .row-fluid [class*="span"] {
-    display: block;
+    display: inline-block;
     float: none;
     width: auto;
     margin-left: 0;
diff --git a/less/responsive-767px-max.less b/less/responsive-767px-max.less
index 614c6905c2..e35e45d892 100644
--- a/less/responsive-767px-max.less
+++ b/less/responsive-767px-max.less
@@ -120,7 +120,7 @@
   [class*="span"],
   .row-fluid [class*="span"] {
     float: none;
-    display: block;
+    display: inline-block;
     width: auto;
     margin-left: 0;
   }
-- 
GitLab