From: <md...@us...> - 2008-06-05 17:33:58
|
Revision: 5404 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5404&view=rev Author: mdboom Date: 2008-06-05 10:33:24 -0700 (Thu, 05 Jun 2008) Log Message: ----------- Add some CSS so that there are lines above classes and methods in the auto-generated docs. Modified Paths: -------------- trunk/matplotlib/doc/conf.py Added Paths: ----------- trunk/matplotlib/doc/_static/matplotlib.css Added: trunk/matplotlib/doc/_static/matplotlib.css =================================================================== --- trunk/matplotlib/doc/_static/matplotlib.css (rev 0) +++ trunk/matplotlib/doc/_static/matplotlib.css 2008-06-05 17:33:24 UTC (rev 5404) @@ -0,0 +1,9 @@ +@import "default.css"; + +dl.class, dl.function { + border-top: 2px solid #888; +} + +dl.method, dl.attribute { + border-top: 1px solid #aaa; +} \ No newline at end of file Modified: trunk/matplotlib/doc/conf.py =================================================================== --- trunk/matplotlib/doc/conf.py 2008-06-05 17:09:04 UTC (rev 5403) +++ trunk/matplotlib/doc/conf.py 2008-06-05 17:33:24 UTC (rev 5404) @@ -80,7 +80,7 @@ # The style sheet to use for HTML and HTML Help pages. A file of that name # must exist either in Sphinx' static/ path, or in one of the custom paths # given in html_static_path. -html_style = 'default.css' +html_style = 'matplotlib.css' # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |