#345: Fix cropping of sidebar scroll bar with `stickysidebar`

option of the default theme.
This commit is contained in:
Georg Brandl 2010-02-28 09:45:28 +01:00
parent 23cec21823
commit fbc2c113ee
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,9 @@
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.
* #338: Fix running with ``-C`` under Windows.

View File

@ -67,10 +67,11 @@ div.related a {
div.sphinxsidebar {
{%- if theme_stickysidebar|tobool %}
top: 30px;
bottom: 0;
margin: 0;
position: fixed;
overflow: auto;
height: 100%;
height: auto;
{%- endif %}
{%- if theme_rightsidebar|tobool %}
float: right;