I try to implement accordion list of headers of functions in Sphinx template. Now every functions are described on one page without the ability of hiding some of them. I think it would be very convenient feature.
I'm using template "bootstrap" (but in is doesn't matter i think). I override the file "layout.html". In this file I can override standart blocks (wich describes here: http://sphinx-doc.org/templating.html#blocks ). Every description of my functions (documentation from .py files) is located in sections. But I don't understand how can I apply my own .css style to the sections. Help me please..
Or maybe it could be done easier using JavaScript?
I'd like to do something like this http://tympanus.net/codrops/2012/02/21/accordion-with-css3/
I've found the way with JQuery and CSS.
We need to add one CSS file and extend layout.html. I override the block "extrahead"
First you need to put layout.html into "_templates" directory and accordion.css into "_static". Read more here http://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html#extending-layout-html
accordion.css:
layout.html:
An example:
https://i.stack.imgur.com/Ayj1S.png