From da43f97be170b9c14623d1615721755a9a5959cc Mon Sep 17 00:00:00 2001
From: Mark Otto <otto@github.com>
Date: Fri, 7 Feb 2014 02:08:32 -0800
Subject: [PATCH] Override iOS search input's extra round corners

---
 less/forms.less | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/less/forms.less b/less/forms.less
index d0189d0cc8..d979933187 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -150,10 +150,24 @@ output {
   }
 }
 
+
+// Search inputs in iOS
+//
+// This overrides the extra rounded corners on search inputs in iOS so that our
+// `.form-control` class can properly style them. Note that this cannot simply
+// be added to `.form-control` as it's not specific enough. For details, see
+// https://github.com/twbs/bootstrap/issues/11586.
+
+input[type="search"] {
+  -webkit-appearance: none;
+}
+
+
 // Special styles for iOS date input
 //
 // In Mobile Safari, date inputs require a pixel line-height that matches the
 // given height of the input.
+
 input[type="date"] {
   line-height: @input-height-base;
 }
-- 
GitLab