Changed the stylesheet. Matched the new class names in the generated html.

This commit is contained in:
James Vega 2003-09-07 06:27:10 +00:00
parent cfa737d1d7
commit a08c1e2332
2 changed files with 25 additions and 24 deletions

View File

@ -1,37 +1,38 @@
body { body {
background:#fff; background:white;
color:#000;
} }
table {
border: 2px solid lightsteelblue;
border-collapse: collapse;
}
tr#headers { tr#headers {
text-align:center; text-align:left;
font-weight:bold; font-weight:bold;
margin:none;
border:none;
} }
td { td {
padding: 0px 3px 0px 3px; padding: 0px 3px 0px 3px;
border: 1px solid lightsteelblue;
white-space: nowrap; white-space: nowrap;
} }
pre { pre {
border:1px solid black; border:1px solid lightsteelblue;
border-bottom:3px solid lightsteelblue;
padding:3px; padding:3px;
background:#e4eaf2; background:floralwhite;
color:inherit;
} }
.detail { .detail {
white-space:normal; white-space:normal;
} }
.dark {
background:#c2cfdf; .lightyellow {
color:inherit; background:aliceblue;
} }
.dark td {
border:1px solid black; .lightgreen {
} background:white;
.light {
background:#e4eaf2;
color:inherit;
}
.light td {
border:1px solid black;
} }

View File

@ -49,8 +49,8 @@ if conf.pluginDir not in sys.path:
sys.path.insert(0, conf.pluginDir) sys.path.insert(0, conf.pluginDir)
def makePluginDocumentation(filename): def makePluginDocumentation(filename):
trClasses = { 'dark':'light', 'light':'dark' } trClasses = { 'lightyellow':'lightgreen', 'lightgreen':'lightyellow' }
trClass = 'dark' trClass = 'lightyellow'
pluginName = filename.split('.')[0] pluginName = filename.split('.')[0]
moduleInfo = imp.find_module(pluginName) moduleInfo = imp.find_module(pluginName)
module = imp.load_module(pluginName, *moduleInfo) module = imp.load_module(pluginName, *moduleInfo)