1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
.. highlight:: css
Custom CSS
==========
In order to help with the output styling in HTML, Breathe attaches some custom
classes to parts of the document. There are three such classes:
**breatheparameterlist**
Used to keep the description of a parameter displayed inline with the
parameter name. The Breathe docs use:
.. code-block:: css
.breatheparameterlist li tt + p {
display: inline;
}
**breatheenumvalues**
Used to keep the description of an enum displayed inline with the
enum name. The Breathe docs use:
.. code-block:: css
.breatheenumvalues li tt + p {
display: inline;
}
|