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 {
background:#fff;
color:#000;
background:white;
}
table {
border: 2px solid lightsteelblue;
border-collapse: collapse;
}
tr#headers {
text-align:center;
text-align:left;
font-weight:bold;
margin:none;
border:none;
}
td {
padding: 0px 3px 0px 3px;
white-space:nowrap;
border: 1px solid lightsteelblue;
white-space: nowrap;
}
pre {
border:1px solid black;
border:1px solid lightsteelblue;
border-bottom:3px solid lightsteelblue;
padding:3px;
background:#e4eaf2;
color:inherit;
background:floralwhite;
}
.detail {
white-space:normal;
}
.dark {
background:#c2cfdf;
color:inherit;
}
.dark td {
border:1px solid black;
}
.light {
background:#e4eaf2;
color:inherit;
}
.light td {
border:1px solid black;
.lightyellow {
background:aliceblue;
}
.lightgreen {
background:white;
}

View File

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