diff options
author | tttapa <pieter.pas@outlook.com> | 2020-07-04 14:27:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-04 14:27:59 (GMT) |
commit | 8c12604a84faabf6beeef7f159692ccddcb94dc6 (patch) | |
tree | 877a0a215f3623dfc59b22fd673308093e01303a /templates/html/search.js | |
parent | cfda7da009ca4ca094946ac090bc493f8ac43351 (diff) | |
download | Doxygen-8c12604a84faabf6beeef7f159692ccddcb94dc6.zip Doxygen-8c12604a84faabf6beeef7f159692ccddcb94dc6.tar.gz Doxygen-8c12604a84faabf6beeef7f159692ccddcb94dc6.tar.bz2 |
Scalable search bar for high resolution displays (#7888)
* Use SVG images for search bar icons
* Update search bar CSS for high resolution displays
Uses CSS shadows instead of PNG images of shadows
* Limit the main-menu CSS rule to first level list
#main-menu li:last-child applies to last childs of sub-lists as well
#main-menu > li:last-child only applies to the top-level list
Diffstat (limited to 'templates/html/search.js')
-rw-r--r-- | templates/html/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/html/search.js b/templates/html/search.js index ff2b8c8..92b6094 100644 --- a/templates/html/search.js +++ b/templates/html/search.js @@ -364,7 +364,7 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; + this.DOMSearchClose().style.display = 'inline-block'; if (this.insideFrame) { var domPopupSearchResults = this.DOMPopupSearchResults(); |