From: <var...@us...> - 2009-01-24 13:16:35
|
Revision: 6443 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6443&view=rev Author: vargenau Date: 2009-01-24 11:35:22 +0000 (Sat, 24 Jan 2009) Log Message: ----------- boxed and bordered tables Modified Paths: -------------- trunk/themes/Hawaiian/Hawaiian.css Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2009-01-24 11:33:59 UTC (rev 6442) +++ trunk/themes/Hawaiian/Hawaiian.css 2009-01-24 11:35:22 UTC (rev 6443) @@ -472,6 +472,46 @@ list-style-image: none; } +/* + * table class="boxed" + * will put a border around the table (but not around the cells) + * + * table class="bordered" + * will put a border around the table and the cells + * + * In both cases, the caption will be bold and centered under the table + * + * In both cases, the headers (th) will have a "#d8d8d8" background + */ + +table.boxed, table.bordered, table.bordered th, table.bordered td { + border-width: 1px; + border-style: solid; + border-collapse: collapse; + vertical-align: top; +} + +table.boxed td, table.bordered td, +table.boxed th, table.bordered th { + padding-left: 5px; + padding-right: 5px; + padding-top: 0px; + padding-bottom: 0px; +} + +table.boxed caption, table.bordered caption { + text-align: center; + font-weight: bold; + caption-side: bottom; + padding-top: 0.8em; +} + +table.boxed th, +table.bordered th, + font-weight: bold; + background-color: #d8d8d8; +} + /* For emacs users * * Local Variables: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-03-10 11:03:16
|
Revision: 7983 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7983&view=rev Author: vargenau Date: 2011-03-10 11:03:10 +0000 (Thu, 10 Mar 2011) Log Message: ----------- explode background attributes Modified Paths: -------------- trunk/themes/Hawaiian/Hawaiian.css Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2011-03-10 10:52:54 UTC (rev 7982) +++ trunk/themes/Hawaiian/Hawaiian.css 2011-03-10 11:03:10 UTC (rev 7983) @@ -41,7 +41,9 @@ /* Main wiki text box */ body { color: black; - background: white url("images/uhhbackground.jpg") repeat; + background-color: white; + background-image: url("images/uhhbackground.jpg"); + background-repeat: repeat; font-family: Arial, Helvetica, sans-serif; margin: 1ex 0.5em; } @@ -55,7 +57,7 @@ margin-bottom: 1ex; } img#signature { - background: white; + background-color: white; border: 1px outset gray; padding-left: 8px; padding-right: 8px; @@ -141,8 +143,8 @@ } .pagelist thead, .pagelist thead u { } -.pagelist tr.evenrow { background: #eee; } -.pagelist tr.oddrow { background: white; } +.pagelist tr.evenrow { background-color: #eee; } +.pagelist tr.oddrow { background-color: white; } th.gridbutton { background-color: ThreeDLightShadow; color: black; @@ -270,7 +272,8 @@ padding-top: 110px; } table.cal thead tr:first-child { - background: url("images/pictures/SteamVolcanoDusk.jpg") no-repeat; + background-image: url("images/pictures/SteamVolcanoDusk.jpg"); + background-repeat: no-repeat; background-position: center; font-size: larger; } @@ -278,7 +281,7 @@ table.cal table.cal-header td { text-align: center; color: white; - background: transparent; + background-color: transparent; border: 0; } /* arrow text */ @@ -304,7 +307,7 @@ /* cells */ table.cal tbody td { border: 0.5pt solid #ddd; - background: white; + background-color: white; text-align: right; } /* text */ @@ -317,7 +320,7 @@ /* cell */ table.cal td.cal-today { margin: 1px; - background: white; + background-color: white; border: 0.5pt solid black; } /* text */ @@ -328,7 +331,7 @@ /* cell */ table.cal td.cal-day { margin: 1px; - background: white; + background-color: white; border: 0.5pt solid black; } /* text */ @@ -344,14 +347,13 @@ /* main box */ .diff .block { - background: #ccc; - /*border: 1px solid black;*/ + background-color: #ccc; padding: 0.5ex 0.5em; margin: 0.5ex 0; } /* individual lines */ -.diff .context { background: white; } +.diff .context { background-color: white; } /* + - line prefix */ .diff .block tt{ @@ -365,11 +367,11 @@ font-weight: bold; text-decoration: none; } -.diff .original, .diff .deleted { background: #fcc; } -.diff .final, .diff .added { background: #cfc; } +.diff .original, .diff .deleted { background-color: #fcc; } +.diff .final, .diff .added { background-color: #cfc; } -.diff del { background: #f99; } -.diff ins { background: #9f9; } +.diff del { background-color: #f99; } +.diff ins { background-color: #9f9; } /** * Other @@ -405,9 +407,9 @@ /** * Search Results */ -.search-context { background: white; font-style: oblique; } +.search-context { background-color: white; font-style: oblique; } .search-term { - background: yellow; + background-color: yellow; font-weight: normal; } #LSResult { @@ -453,13 +455,16 @@ div.wikitext { width: auto; - background: url("images/tchecker-white.png") repeat; + background-image: url("images/tchecker-white.png"); + background-repeat: repeat; } .wiki-edithelp { - background: url("images/tchecker-sand.png") repeat; + background-image: url("images/tchecker-sand.png"); + background-repeat: repeat; } .wiki-edithelp p { - background: url("images/tchecker-white.png") repeat; + background-image: url("images/tchecker-white.png"); + background-repeat: repeat; } /** @@ -472,7 +477,8 @@ * Other */ .debug { - background: url("images/tchecker-sand.png") repeat; + background-image: url("images/tchecker-sand.png"); + background-repeat: repeat; } /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |