mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #5257 from ostezer/docs-fix-toc-click
Fix for TOC "click/expand" & "scroll position" problem on mobile.
This commit is contained in:
commit
ac697e5f52
3 changed files with 15 additions and 10 deletions
16
docs/theme/mkdocs/css/base.css
vendored
16
docs/theme/mkdocs/css/base.css
vendored
|
@ -40,6 +40,7 @@ h6,
|
|||
/* Desktop click-to-scroll margin/padding fixes */
|
||||
padding-top: 2em !important;
|
||||
margin-top: -2em !important;
|
||||
pointer-events:none;
|
||||
}
|
||||
#content h3 {
|
||||
padding: 0.7em 0em 0.3em 0em;
|
||||
|
@ -354,11 +355,16 @@ h6,
|
|||
font-weight: bold;
|
||||
color: #0e6b8d;
|
||||
}
|
||||
#toc_table > h2 > a > b {
|
||||
display: none;
|
||||
border-top-color: #0e6b8d !important;
|
||||
}
|
||||
#toc_table > h3 {
|
||||
font-size: 1em;
|
||||
color: #0e6b8d;
|
||||
}
|
||||
#toc_table > #toc_navigation {
|
||||
display: block;
|
||||
margin-top: 1.5em !important;
|
||||
background: #fff;
|
||||
border-bottom: 3px solid #ddd;
|
||||
|
@ -572,6 +578,9 @@ ol.breadcrumb > li:last-child > a {
|
|||
margin-bottom: 0.3em;
|
||||
font-size: 2em;
|
||||
}
|
||||
#toc_table > h2 > a > b {
|
||||
display: inline-block;
|
||||
}
|
||||
#toc_table > h3 {
|
||||
display: block;
|
||||
margin: 0;
|
||||
|
@ -590,13 +599,6 @@ ol.breadcrumb > li:last-child > a {
|
|||
display: none;
|
||||
}
|
||||
|
||||
/* Mobile click-to-scroll margin/padding fixes */
|
||||
#content h2 {
|
||||
padding: 0.5em 0em 0.3em 0em;
|
||||
padding-top: 13.5em !important;
|
||||
margin-top: -13.5em !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Container responsiveness fixes to maximise realestate expenditure */
|
||||
|
|
7
docs/theme/mkdocs/js/base.js
vendored
7
docs/theme/mkdocs/js/base.js
vendored
|
@ -30,13 +30,13 @@ $(document).ready(function ()
|
|||
});
|
||||
|
||||
/* Toggle TOC view for Mobile */
|
||||
$('#toc_table').on('click', function ()
|
||||
$('#toc_table > h2').on('click', function ()
|
||||
{
|
||||
if ( $(window).width() <= 991 )
|
||||
{
|
||||
$('#toc_table > #toc_navigation').slideToggle();
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
/* Follow TOC links (ScrollSpy) */
|
||||
$('body').scrollspy({
|
||||
|
@ -61,6 +61,9 @@ function checkToScrollTOC ()
|
|||
{
|
||||
if ( $(window).width() >= 768 )
|
||||
{
|
||||
// If TOC is hidden, expand.
|
||||
$('#toc_table > #toc_navigation').css("display", "block");
|
||||
// Then attach or detach fixed-scroll
|
||||
if ( ($('#toc_table').height() + 100) >= $(window).height() )
|
||||
{
|
||||
$('#toc_table').trigger('detach.ScrollToFixed');
|
||||
|
|
2
docs/theme/mkdocs/toc.html
vendored
2
docs/theme/mkdocs/toc.html
vendored
|
@ -1,6 +1,6 @@
|
|||
<div id="toc_table" class="bs-sidebar hidden-print" role="complementary">
|
||||
{% if current_page.title != '**HIDDEN**' %}
|
||||
<h2>{{ current_page.title }}</h2>
|
||||
<h2><a href="#">{{ current_page.title }} <b class="caret"></b></a></h2>
|
||||
{% endif %}
|
||||
<h3>TABLE OF CONTENTS</h3>
|
||||
<ul id="toc_navigation" class="nav bs-sidenav">
|
||||
|
|
Loading…
Add table
Reference in a new issue