jothepro / doxygen-awesome-css

Custom CSS theme for doxygen html-documentation with lots of customization parameters.
https://jothepro.github.io/doxygen-awesome-css/
MIT License
956 stars 108 forks source link

Add previous button #120

Closed patricklaf closed 7 months ago

patricklaf commented 1 year ago

I like the next button defined in custom.css but I needed previous button.

This PR add previous button classes and also a section_buttons class to arrange buttons nicely when you have both previous and next buttons.

Setup

Add custom.css to the HTML_EXTRA_STYLESHEET of the Doxygen configuration file:

HTML_EXTRA_STYLESHEET  = doxygen-awesome.css custom.css

How to use?

Previous or next button

Add a span with the right class, previous_section_button or next_section_button:

<span class="previous_section_button">
Read Previous: [Firmware](firmware.md)
</span>

Previous and next buttons

If you want to have both buttons, just add an enclosing div with section_buttons class:

<div class="section_buttons">
<span class="previous_section_button">
Read Previous: [Hardware](hardware.md)
</span>
<span class="next_section_button">
Read Next: [Settings](settings.md)
</span>
</div>
jothepro commented 12 months ago

Nice, thank you! I think I'll also add previous buttons to the demo. Pls be patient with this MR, I will come back to you asap!