diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-09-09 20:11:27 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-09-09 20:11:27 (GMT) |
commit | a3090a4b79aa16f742d465aea894f148a00ae2c5 (patch) | |
tree | 3630ba9da7486420d2c252a3a033b21ca119d9b2 /Doc/tools/pydoctheme | |
parent | 1140a0342613c30feaedfe96b9e09ad7248de490 (diff) | |
download | cpython-a3090a4b79aa16f742d465aea894f148a00ae2c5.zip cpython-a3090a4b79aa16f742d465aea894f148a00ae2c5.tar.gz cpython-a3090a4b79aa16f742d465aea894f148a00ae2c5.tar.bz2 |
Issue #19489: Move the search box from sidebar to header and footer.
Diffstat (limited to 'Doc/tools/pydoctheme')
-rw-r--r-- | Doc/tools/pydoctheme/static/pydoctheme.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/tools/pydoctheme/static/pydoctheme.css b/Doc/tools/pydoctheme/static/pydoctheme.css index e24043f..1d5c18e 100644 --- a/Doc/tools/pydoctheme/static/pydoctheme.css +++ b/Doc/tools/pydoctheme/static/pydoctheme.css @@ -22,6 +22,16 @@ div.related:first-child { border-bottom: 1px solid #ccc; } +.inline-search { + display: inline; +} +form.inline-search input { + display: inline; +} +form.inline-search input[type="submit"] { + width: 30px; +} + div.sphinxsidebar { background-color: #eeeeee; border-radius: 5px; @@ -45,6 +55,7 @@ div.sphinxsidebar a:hover { color: #0095C4; } +form.inline-search input, div.sphinxsidebar input { font-family: 'Lucida Grande',Arial,sans-serif; border: 1px solid #999999; |