[Epydoc-commits] SF.net SVN: epydoc: [1517] trunk/epydoc/src/epydoc/docwriter/html_css.py
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-16 06:14:00
|
Revision: 1517 http://svn.sourceforge.net/epydoc/?rev=1517&view=rev Author: edloper Date: 2007-02-15 22:13:56 -0800 (Thu, 15 Feb 2007) Log Message: ----------- - Fixed css bug that caused incorrect results in IE: "if you want consistent rendering of lists between Explorer 5.x and Netscape 6.x, you need to set both the left margin and left padding of the UL element." -- <http://meyerweb.com/eric/css/list-indent.html> Modified Paths: -------------- trunk/epydoc/src/epydoc/docwriter/html_css.py Modified: trunk/epydoc/src/epydoc/docwriter/html_css.py =================================================================== --- trunk/epydoc/src/epydoc/docwriter/html_css.py 2007-02-16 05:37:14 UTC (rev 1516) +++ trunk/epydoc/src/epydoc/docwriter/html_css.py 2007-02-16 06:13:56 UTC (rev 1517) @@ -154,7 +154,7 @@ /* Fields */ dl.fields { margin-left: 2em; margin-top: 1em; margin-bottom: 1em; } -dl.fields dd ul { margin-left: -2em; } +dl.fields dd ul { margin-left: 0em; padding-left: 0em; } div.fields { margin-left: 2em; } div.fields p { margin-bottom: 0.5em; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |