From 580c97dc498e3458473704d50fb3dd7950b4cc58 Mon Sep 17 00:00:00 2001 From: Bachir Soussi Chiadmi Date: Tue, 26 May 2015 12:39:32 +0200 Subject: [PATCH] fixed frontend search field bad display --- sites/all/themes/gui/materiobasetheme/css/styles.css | 8 ++++---- sites/all/themes/gui/materiobasetheme/scss/styles.scss | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sites/all/themes/gui/materiobasetheme/css/styles.css b/sites/all/themes/gui/materiobasetheme/css/styles.css index 68ecd5cd..b2e4ab6f 100644 --- a/sites/all/themes/gui/materiobasetheme/css/styles.css +++ b/sites/all/themes/gui/materiobasetheme/css/styles.css @@ -3986,14 +3986,14 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig /* line 962, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-searchfield { border: 1px solid #ccc; - border-radius: 20px; + border-radius: 15px; background-clip: padding-box; + margin: 3px 0 3px 3px; padding: 4px 5px; - height: 25px; + height: 20px; font-size: 12px; line-height: 1; - background-position: 100% 5px; - width: 105%; + background-position: 100% 7px; } /* line 968, ../scss/styles.scss */ #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing { diff --git a/sites/all/themes/gui/materiobasetheme/scss/styles.scss b/sites/all/themes/gui/materiobasetheme/scss/styles.scss index db26fb84..09bc1070 100644 --- a/sites/all/themes/gui/materiobasetheme/scss/styles.scss +++ b/sites/all/themes/gui/materiobasetheme/scss/styles.scss @@ -960,11 +960,11 @@ $headerouterheight:$headerheight+$headerpaddingtop+$headerpaddingbottom; } input#edit-searchfield{ - border: 1px solid #ccc; @include rounded(20px); - padding: 4px 5px; height:25px; + border: 1px solid #ccc; @include rounded(15px); + margin:3px 0 3px 3px; padding: 4px 5px; height:20px; @include fs12; line-height:1; - background-position: 100% 5px; - width:105%; + background-position: 100% 7px; + // width:100%; &.throbbing { background-position: 100% -15px; } }