diff --git a/docs/_static/custom.js b/docs/_static/custom.js new file mode 100644 index 000000000..235a14ea0 --- /dev/null +++ b/docs/_static/custom.js @@ -0,0 +1,31 @@ +$(document).ready(function () { + var sections = $('div.section'); + var activeLink = null; + var bottomHeightThreshold = $(document).height() - 30; + + $(window).scroll(function (event) { + var distanceFromTop = $(this).scrollTop(); + var currentSection = null; + + if(distanceFromTop + window.innerHeight > bottomHeightThreshold) { + currentSection = $(sections[sections.length - 1]); + } + else { + sections.each(function () { + var section = $(this); + if (section.offset().top - 1 < distanceFromTop) { + currentSection = section; + } + }); + } + + if (activeLink) { + activeLink.parent().removeClass('active'); + } + + if (currentSection) { + activeLink = $('.sphinxsidebar a[href="#' + currentSection.attr('id') + '"]'); + activeLink.parent().addClass('active'); + } + }); +}); diff --git a/docs/_static/style.css b/docs/_static/style.css index b7d1ac295..9afc6f31b 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -421,6 +421,11 @@ div#welcome-to-discord-py > h1 { display: none; } +.active { + background-color: #dbdbdb; + border-left: 5px solid #dbdbdb; +} + @media screen and (max-width: 870px) { div.document { diff --git a/docs/conf.py b/docs/conf.py index 2fd56d47c..c29c8e94d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -304,3 +304,6 @@ texinfo_documents = [ # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False + +def setup(app): + app.add_javascript('custom.js')