From: <var...@us...> - 2009-08-21 13:45:26
|
Revision: 7073 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7073&view=rev Author: vargenau Date: 2009-08-21 13:45:16 +0000 (Fri, 21 Aug 2009) Log Message: ----------- Fix too big margin problem in wiki tables. Print links in black. Move hr and h1-h6 properties in Gforge. Modified Paths: -------------- trunk/themes/gforge/gforge-print.css trunk/themes/gforge/gforge.css Modified: trunk/themes/gforge/gforge-print.css =================================================================== --- trunk/themes/gforge/gforge-print.css 2009-08-19 19:37:30 UTC (rev 7072) +++ trunk/themes/gforge/gforge-print.css 2009-08-21 13:45:16 UTC (rev 7073) @@ -51,6 +51,9 @@ /* Do not print main wiki browse banner */ .browsebanner { display: none; } +/* Print links in black */ +a { color: black; } + /* Do not print icons in front of hyperlinks */ a.interwiki img { display: none; } a.named-interwiki img { display: none; } @@ -66,7 +69,7 @@ /* Do not print TOC toggle image */ #toctoggle { display: none; } -div.toc p#toctitle, h1, h2, h3, h4, h5, h6 { +div.toc p.toctitle, h1, h2, h3, h4, h5, h6 { border-bottom: 1px solid black; } @@ -79,11 +82,6 @@ border: none; } -hr { - color: black; - background-color: black; -} - /* Do not cut tables with class "nobreak" */ table.nobreak { Modified: trunk/themes/gforge/gforge.css =================================================================== --- trunk/themes/gforge/gforge.css 2009-08-19 19:37:30 UTC (rev 7072) +++ trunk/themes/gforge/gforge.css 2009-08-21 13:45:16 UTC (rev 7073) @@ -55,6 +55,8 @@ /* This breaks NS4, but is necessary for IE4. */ div.wikitext { width: auto; } +div.wikitext table p { margin-top: 0.3em; margin-bottom: 0.3em;} + /** * General */ @@ -155,8 +157,6 @@ * Wiki */ -div.wikitext hr { height: 1px; } - div.wikitext pre { font-family: monospace; border-width: 1px; @@ -229,7 +229,7 @@ .backlinks { text-decoration: underline; } -h1 .backlinks { text-decoration: none; } +h1 .backlinks { text-decoration: none; color: inherit; } /* Interwiki links */ .wikipage { font-weight: normal; } @@ -264,10 +264,6 @@ h1 { margin: 0; } -h1, h1 .backlinks, h2, h3, h4, h5, h6 { - color: #565c5e; /* Alcatel-Lucent grey */ -} - h1, h1 .backlinks, h2, .wikitext h2 a, h3, .wikitext h3 a, h4, .wikitext h4 a, h5, h6 { text-decoration: none; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |