[Epydoc-commits] SF.net SVN: epydoc: [1499] trunk/epydoc/src/epydoc/docwriter/html_css.py
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-14 06:12:24
|
Revision: 1499 http://svn.sourceforge.net/epydoc/?rev=1499&view=rev Author: edloper Date: 2007-02-13 22:12:22 -0800 (Tue, 13 Feb 2007) Log Message: ----------- - Fixed some css rules (css precedence rules were preventing them from being used in the desired places) 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-14 05:43:46 UTC (rev 1498) +++ trunk/epydoc/src/epydoc/docwriter/html_css.py 2007-02-14 06:12:22 UTC (rev 1499) @@ -183,14 +183,22 @@ .sig-default { color: $sig_default; } .summary-sig { font-family: monospace; } .summary-sig-name { color: $summary_sig_name; font-weight: bold; } -a.summary-sig-name:link { color: $summary_sig_name; font-weight: bold; } -a.summary-sig-name:visited { color: $summary_sig_name; font-weight: bold; } +table.summary a.summary-sig-name:link + { color: $summary_sig_name; font-weight: bold; } +table.summary a.summary-sig-name:visited + { color: $summary_sig_name; font-weight: bold; } .summary-sig-arg { color: $summary_sig_arg; } .summary-sig-default { color: $summary_sig_default; } /* To render variables, classes etc. like functions */ -.summary-name { color: $summary_sig_name; font-weight: bold; +table.summary .summary-name { color: $summary_sig_name; font-weight: bold; font-family: monospace; } +table.summary + a.summary-name:link { color: $summary_sig_name; font-weight: bold; + font-family: monospace; } +table.summary + a.summary-name:visited { color: $summary_sig_name; font-weight: bold; + font-family: monospace; } /* Variable values * - In the 'variable details' sections, each varaible's value is @@ -281,8 +289,8 @@ .py-keyword { color: $py_keyword; } .py-output { color: $py_output; } .py-name { color: $py_name; } -.py-name:link { color: $py_name; } -.py-name:visited { color: $py_name; } +.py-name:link { color: $py_name !important; } +.py-name:visited { color: $py_name !important; } .py-number { color: $py_number; } .py-defname { color: $py_def_name; font-weight: bold; } .py-def-name { color: $py_def_name; font-weight: bold; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |