Show search bar in collapsed navbar

* Fixes #1446
This commit is contained in:
JonnyWong16 2021-06-18 11:05:10 -07:00
parent fe034d97b1
commit eb46ff41fc
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
3 changed files with 43 additions and 8 deletions

View file

@ -3432,6 +3432,22 @@ pre::-webkit-scrollbar-thumb {
-o-transition: background 0.3s;
transition: background 0.3s;
}
@media (max-width: 767px) {
#search_form {
width: 100%;
}
#search_form span.input-textbox {
width: 100%;
}
#search_form #query {
width: 100%;
right: 0;
}
#search_form #query.active {
width: 100%;
right: 0px;
}
}
#update_search_form div.input-group {
display: inline-table;
vertical-align: middle;