summaryrefslogtreecommitdiff
path: root/util/doxygen.css
Commit message (Collapse)AuthorAgeFilesLines
* Add doxygen-extra.css, deprecate doxygen.cssKjell Ahlstedt2014-08-261-0/+8
| | | | | | | | | | | | | | | * README: Say that doxygen.css is deprecated. Add description of doxygen-extra.css. * Makefile.am: Distribute doxygen-extra.css. * build/doc-reference.am: Distribute doxygen-extra.css. * skeletonmm/.gitignore: Ignore doxygen-extra.css. * skeletonmm/doc/reference/Doxyfile.in: Use doxygen-extra.css instead of doxygen.css. * util/doxygen.css: Add comment, saying it's deprecated. * util/doxygen-extra.css: New file. Equal to doxygen.css except for comments. * util/mm-common-prepare.in: Copy doxygen-extra.css. * util/mm-common-prepare.1.in: List doxygen-extra.css. https://mail.gnome.org/archives/gtkmm-list/2014-August/msg00022.html
* Update for Doxygen 1.8.Kjell Ahlstedt2013-01-061-1/+11
| | | | | | | | | | * skeletonmm/doc/reference/Doxyfile.in: Update with Doxygen 1.8.3. doxygen -s -u Doxyfile.in * util/post-process.pl: Don't collapse almost all multiple spaces to a single space. It distorts the formatting of @code blocks, even more so with Doxygen 1.8. * util/doxygen.css: Add rules for div.fragment and div.line. Used for @code blocks by Doxygen 1.8.
* Increase space between Doxygen member descriptionsDaniel Elstner2009-09-091-1/+1
| | | | * util/doxygen.css (.memitem): Increase horizontal margins to 0.5em.
* Hide the navigation path generated by DoxygenDaniel Elstner2009-09-031-0/+4
| | | | * util/doxygen.css (.navpath): Set 'display' to 'none'.
* Avoid using pixels as a unit in the style sheetDaniel Elstner2009-09-031-39/+35
| | | | | * util/doxygen.css: Use unit 'em' instead of 'px' where feasible. Merge or split blocks where appropriate to streamline the CSS.
* Increase the default font size to 90%Daniel Elstner2009-09-021-1/+1
| | | | | * util/doxygen.css (body): Change the font height and line spacing to 90%/150% in order to better match the default appearance of gtk-doc.
* Limit centering of HTML headings to first headingDaniel Elstner2009-08-311-4/+2
| | | | | | * util/doxygen.css (h[23]): Remove "text-align: center" attribute. (h1 + h3): Center a <h3> element immediately following the centered <h1> element, as generated by Doxygen on the main page.
* Do not center HTML headings within tablesDaniel Elstner2009-08-311-0/+4
| | | | | * util/doxygen.css (table h[23]): Set "text-align" to "left" for <h2> and <h3> tags with a <table> ancestor.
* Update style sheet for XHTML output of Doxygen 1.6Daniel Elstner2009-08-311-5/+18
| | | | | | * util/doxygen.css: Refine style definitions to cope with the change in behavior of user agents due to Doxygen's recent adoption of XHTML as default output format.
* Improve Doxygen HTML style sheetDaniel Elstner2009-08-281-21/+10
| | | | | * util/doxygen.css: Tweak the styles a bit to improve the look of the Doxygen HTML output. Most importantly, get the text size right.
* Add shared Doxygen stylesheet for the C++ bindingsDaniel Elstner2009-08-271-0/+245
* util/doxygen.css: New file, defining the common style of the C++ binding reference documentation. * util/mm-common-prepare.in: Copy doxygen.css into the documentation tools directory of the source tree if requested. * Makefile.am (dist_doctool_DATA): Distribute and install doxygen.css.