fixed frontend search field bad display

This commit is contained in:
Bachir Soussi Chiadmi 2015-05-26 12:39:32 +02:00
parent 95cbb13821
commit 580c97dc49
2 changed files with 8 additions and 8 deletions

View File

@ -3986,14 +3986,14 @@ html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlig
/* line 962, ../scss/styles.scss */ /* line 962, ../scss/styles.scss */
#tool-bar #materio-search-api-search-form input#edit-searchfield { #tool-bar #materio-search-api-search-form input#edit-searchfield {
border: 1px solid #ccc; border: 1px solid #ccc;
border-radius: 20px; border-radius: 15px;
background-clip: padding-box; background-clip: padding-box;
margin: 3px 0 3px 3px;
padding: 4px 5px; padding: 4px 5px;
height: 25px; height: 20px;
font-size: 12px; font-size: 12px;
line-height: 1; line-height: 1;
background-position: 100% 5px; background-position: 100% 7px;
width: 105%;
} }
/* line 968, ../scss/styles.scss */ /* line 968, ../scss/styles.scss */
#tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing { #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {

View File

@ -960,11 +960,11 @@ $headerouterheight:$headerheight+$headerpaddingtop+$headerpaddingbottom;
} }
input#edit-searchfield{ input#edit-searchfield{
border: 1px solid #ccc; @include rounded(20px); border: 1px solid #ccc; @include rounded(15px);
padding: 4px 5px; height:25px; margin:3px 0 3px 3px; padding: 4px 5px; height:20px;
@include fs12; line-height:1; @include fs12; line-height:1;
background-position: 100% 5px; background-position: 100% 7px;
width:105%; // width:100%;
&.throbbing { background-position: 100% -15px; } &.throbbing { background-position: 100% -15px; }
} }