mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#345: Fix cropping of sidebar scroll bar with `stickysidebar
`
option of the default theme.
This commit is contained in:
parent
23cec21823
commit
fbc2c113ee
3
CHANGES
3
CHANGES
@ -1,6 +1,9 @@
|
|||||||
Release 0.6.5 (in development)
|
Release 0.6.5 (in development)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
* #345: Fix cropping of sidebar scroll bar with ``stickysidebar``
|
||||||
|
option of the default theme.
|
||||||
|
|
||||||
* #341: Always generate UNIX newlines in the quickstart Makefile.
|
* #341: Always generate UNIX newlines in the quickstart Makefile.
|
||||||
|
|
||||||
* #338: Fix running with ``-C`` under Windows.
|
* #338: Fix running with ``-C`` under Windows.
|
||||||
|
@ -67,10 +67,11 @@ div.related a {
|
|||||||
div.sphinxsidebar {
|
div.sphinxsidebar {
|
||||||
{%- if theme_stickysidebar|tobool %}
|
{%- if theme_stickysidebar|tobool %}
|
||||||
top: 30px;
|
top: 30px;
|
||||||
|
bottom: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
height: 100%;
|
height: auto;
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if theme_rightsidebar|tobool %}
|
{%- if theme_rightsidebar|tobool %}
|
||||||
float: right;
|
float: right;
|
||||||
|
Loading…
Reference in New Issue
Block a user