From a28ea4fb9871cf4ceb4c8ffa00443928d0624b98 Mon Sep 17 00:00:00 2001 From: Justin DuJardin Date: Wed, 28 Mar 2012 15:35:29 -0700 Subject: [PATCH] Cleanup sizable implementation - Remove absolute positioning from search input, and use inline-block with width 100% and padding. - Remove hardcoded search results margin (space is consumed by non-absolute, inline-block search wrapper) --- select2.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/select2.css b/select2.css index 490cce39..43ba5e1d 100755 --- a/select2.css +++ b/select2.css @@ -131,12 +131,14 @@ } .select2-container .select2-search { - margin: 0; + display: inline-block; white-space: nowrap; z-index: 1010; - position: absolute; - left:4px; - right:4px; + min-height: 26px; + width: 100%; + margin: 0; + padding-left: 4px; + padding-right: 4px; } .select2-container .select2-search input { @@ -215,7 +217,7 @@ /* results */ .select2-container .select2-results { - margin: 30px 4px 4px 0; + margin: 4px 4px 4px 0; padding: 0 0 0 4px; position: relative; overflow-x: hidden;