Merge pull request #5329 from tk0miya/fix_searchbox_overrides

Fix html: search box overrides to other elements if scrolled
This commit is contained in:
Takeshi KOMIYA 2018-08-22 20:43:04 +09:00 committed by GitHub
commit 0479e1f09b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,8 @@ Features added
Bugs fixed
----------
* html: search box overrides to other elements if scrolled
Testing
--------

View File

@ -81,6 +81,10 @@ div.sphinxsidebar input {
font-size: 1em;
}
div.sphinxsidebar #searchbox form.search {
overflow: hidden;
}
div.sphinxsidebar #searchbox input[type="text"] {
float: left;
width: 80%;