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 {
.wide-content {
.search.main-sidebar {
display: block;
p.toggleSearch {
position: relative;
z-index: 1;
display: block;
float: left;
width: 100%;
width: auto;
}
form {
@ -212,3 +214,12 @@
}
}
}
@media @screen_max-md {
.show-mobile-sidebar {
.search.main-sidebar {
display: block;
}
}
}