Mercurial > p > roundup > code
diff roundup/templates/classic/html/style.css @ 1078:344bad728d10
more tweakage of help display and style issues
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 09 Sep 2002 04:43:10 +0000 |
| parents | 954ad22eb7d9 |
| children | c26471971d18 |
line wrap: on
line diff
--- a/roundup/templates/classic/html/style.css Mon Sep 09 03:28:20 2002 +0000 +++ b/roundup/templates/classic/html/style.css Mon Sep 09 04:43:10 2002 +0000 @@ -1,5 +1,5 @@ /* main page styles */ -.body { +body.body { font-family: sans-serif, Arial, Helvetica; color: #333333; } @@ -7,12 +7,19 @@ a:link { text-decoration: none; } a { text-decoration: none; } -.page-header-left { +table.body { + border: 0; + padding: 0; + border-spacing: 0px; + border-collapse: separate; +} + +td.page-header-left { background-color: #cccc88; padding: 5px; } -.page-header-top { +td.page-header-top { background-color: #cccc88; border-bottom: 1px solid #dddd99; padding: 5px; @@ -81,14 +88,17 @@ font-weight: bold; font-style: italic; color: #333333; + empty-cells: show; } table.form td { color: #333333; + empty-cells: show; } table.form td.html { color: #777777; + empty-cells: show; } /* style for lists */ @@ -124,20 +134,24 @@ } table.list td.normal { + empty-cells: show; } table.list td.alt { background-color: #efefef; + empty-cells: show; } table.list td:first-child { border-left: 1px solid #404070; border-right: 1px solid #404070; + empty-cells: show; } table.list th:first-child { border-left: 1px solid #404070; border-right: 1px solid #404070; + empty-cells: show; } @@ -168,6 +182,7 @@ border-top: 1px solid #afafaf; border-bottom: 1px solid #afafaf; color: black; + empty-cells: show; } /* style for file displays */ @@ -193,6 +208,7 @@ table.files td { font-family: monospace; + empty-cells: show; } /* style for history displays */ @@ -221,6 +237,7 @@ table.history td { font-size: 90%; vertical-align: top; + empty-cells: show; } /* style for "other" displays */ @@ -265,3 +282,26 @@ text-align: left; } + +/* style for class help display */ +table.classhelp { + border-spacing: 0px; + border-collapse: separate; + width: 100%; +} + +table.classhelp th { + font-weight: bold; + text-align: left; + color: #707040; +} + +table.classhelp td { + padding: 2 2 2 2; + border: 1px solid black; + text-align: left; + vertical-align: top; + empty-cells: show; +} + +
