SPR-908: width bug in quicksearch (widecontent), hidden quicksearch in mobile show-nav

This commit is contained in:
Silke Pisulla 2017-04-27 15:10:44 +02:00
commit de0d7f9d13

View file

@ -184,12 +184,14 @@
@media @screen_min-md { @media @screen_min-md {
.wide-content { .wide-content {
.search.main-sidebar { .search.main-sidebar {
display: block;
p.toggleSearch { p.toggleSearch {
position: relative; position: relative;
z-index: 1; z-index: 1;
display: block; display: block;
float: left; float: left;
width: 100%; width: auto;
} }
form { form {
@ -212,3 +214,12 @@
} }
} }
} }
@media @screen_max-md {
.show-mobile-sidebar {
.search.main-sidebar {
display: block;
}
}
}