File: customcss.rst

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (28 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (4)
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;
      }