Merge pull request #215 from agjohnson/fix-nav-scrollbar

Resolve scrollbar visibility on navbar on long content
This commit is contained in:
Anthony 2015-09-08 20:42:23 -07:00
commit 2992ca2119
5 changed files with 63 additions and 44 deletions

View File

@ -24,6 +24,7 @@
padding: 0 $base-font-size padding: 0 $base-font-size
.wy-menu-vertical .wy-menu-vertical
width: $nav-desktop-width
header, p.caption header, p.caption
height: $base-font-size * 2 height: $base-font-size * 2
display: inline-block display: inline-block
@ -164,6 +165,10 @@
color: $menu-link-active color: $menu-link-active
.wy-side-nav-search .wy-side-nav-search
display: block
width: $nav-desktop-width
padding: $gutter / 2
margin-bottom: $gutter / 2
z-index: $z-index-popover z-index: $z-index-popover
background-color: $nav-search-background-color background-color: $nav-search-background-color
text-align: center text-align: center
@ -259,11 +264,18 @@
padding-bottom: 2em padding-bottom: 2em
width: $nav-desktop-width width: $nav-desktop-width
overflow-x: hidden overflow-x: hidden
overflow-y: scroll overflow-y: hidden
min-height: 100% min-height: 100%
background: $nav-background-color background: $nav-background-color
z-index: $z-index-popover z-index: $z-index-popover
.wy-side-scroll
width: $nav-desktop-width + 20px
position: relative
overflow-x: hidden
overflow-y: scroll
height: 100%
.wy-nav-top .wy-nav-top
display: none display: none
background: $link-color background: $link-color
@ -355,6 +367,12 @@ footer
&.shift &.shift
width: 85% width: 85%
left: 0 left: 0
.wy-side-scroll
width: auto
.wy-side-nav-search
width: auto
.wy-menu.wy-menu-vertical
width: auto
.wy-nav-content-wrap .wy-nav-content-wrap
margin-left: 0 margin-left: 0
.wy-nav-content .wy-nav-content

View File

@ -85,50 +85,51 @@
{# SIDE NAV, TOGGLES ON MOBILE #} {# SIDE NAV, TOGGLES ON MOBILE #}
<nav data-toggle="wy-nav-shift" class="wy-nav-side"> <nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-nav-search"> <div class="wy-side-scroll">
{% block sidebartitle %} <div class="wy-side-nav-search">
{% block sidebartitle %}
{% if logo and theme_logo_only %} {% if logo and theme_logo_only %}
<a href="{{ pathto(master_doc) }}"> <a href="{{ pathto(master_doc) }}">
{% else %}
<a href="{{ pathto(master_doc) }}" class="icon icon-home"> {{ project }}
{% endif %}
{% if logo %}
{# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #}
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" />
{% endif %}
</a>
{% if theme_display_version %}
{%- set nav_version = version %}
{% if READTHEDOCS and current_version %}
{%- set nav_version = current_version %}
{% endif %}
{% if nav_version %}
<div class="version">
{{ nav_version }}
</div>
{% endif %}
{% endif %}
{% include "searchbox.html" %}
{% endblock %}
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
{% block menu %}
{% set toctree = toctree(maxdepth=4, collapse=theme_collapse_navigation, includehidden=True) %}
{% if toctree %}
{{ toctree }}
{% else %} {% else %}
<!-- Local TOC --> <a href="{{ pathto(master_doc) }}" class="icon icon-home"> {{ project }}
<div class="local-toc">{{ toc }}</div>
{% endif %} {% endif %}
{% endblock %}
{% if logo %}
{# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #}
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" />
{% endif %}
</a>
{% if theme_display_version %}
{%- set nav_version = version %}
{% if READTHEDOCS and current_version %}
{%- set nav_version = current_version %}
{% endif %}
{% if nav_version %}
<div class="version">
{{ nav_version }}
</div>
{% endif %}
{% endif %}
{% include "searchbox.html" %}
{% endblock %}
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
{% block menu %}
{% set toctree = toctree(maxdepth=4, collapse=theme_collapse_navigation, includehidden=True) %}
{% if toctree %}
{{ toctree }}
{% else %}
<!-- Local TOC -->
<div class="local-toc">{{ toc }}</div>
{% endif %}
{% endblock %}
</div>
</div> </div>
&nbsp;
</nav> </nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -75,7 +75,7 @@ window.SphinxRtdTheme = (function (jquery) {
resize(); resize();
}, },
init = function () { init = function () {
navBar = jquery('nav.wy-nav-side:first'); navBar = jquery('div.wy-side-scroll:first');
win = jquery(window); win = jquery(window);
}, },
reset = function () { reset = function () {