From: <var...@us...> - 2009-01-24 13:16:27
|
Revision: 6446 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6446&view=rev Author: vargenau Date: 2009-01-24 11:41:45 +0000 (Sat, 24 Jan 2009) Log Message: ----------- boxed and bordered tables Modified Paths: -------------- trunk/themes/Wordpress/Wordpress.css Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2009-01-24 11:40:07 UTC (rev 6445) +++ trunk/themes/Wordpress/Wordpress.css 2009-01-24 11:41:45 UTC (rev 6446) @@ -928,6 +928,46 @@ vertical-align: top; } +/* + * 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...> - 2009-01-30 18:37:09
|
Revision: 6467 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6467&view=rev Author: vargenau Date: 2009-01-30 18:37:08 +0000 (Fri, 30 Jan 2009) Log Message: ----------- Provide correct generic family Modified Paths: -------------- trunk/themes/Wordpress/Wordpress.css Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2009-01-30 18:29:58 UTC (rev 6466) +++ trunk/themes/Wordpress/Wordpress.css 2009-01-30 18:37:08 UTC (rev 6467) @@ -251,7 +251,7 @@ th.gridbutton { background: #e8e8e8 url(images/menu-background.png) repeat-x; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; /*font-style: menu;*/ @@ -267,7 +267,7 @@ text-decoration: none; font-size: small; font-weight: normal; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; color: black; } @@ -824,7 +824,7 @@ /* Sidebar */ .box { background:#ffffff; border: 1px solid silver } -.box-title { font-family: Tahoma; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;} +.box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;} .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; } .box-data .wiki { font-weight: normal; } td.sidebar { border-spacing: 0px; margin: 0ex;} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-09-23 12:22:05
|
Revision: 8115 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8115&view=rev Author: vargenau Date: 2011-09-23 12:21:59 +0000 (Fri, 23 Sep 2011) Log Message: ----------- Add generic CSS classes Modified Paths: -------------- trunk/themes/Wordpress/Wordpress.css Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2011-09-23 12:18:10 UTC (rev 8114) +++ trunk/themes/Wordpress/Wordpress.css 2011-09-23 12:21:59 UTC (rev 8115) @@ -15,6 +15,20 @@ Please tweak this and make it your own. :) */ +/* generic classes ----------------------------------------------- */ + +.align-left {text-align: left;} +.align-right {text-align: right;} +.align-center {text-align: center;} + +.top {vertical-align: top;} + +.nowrap {white-space: nowrap;} + +.fullwidth { width: 100%; } + +/* --------------------------------------------------------------- */ + /* This stuff was copied straight out of portland.css */ body { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2012-09-28 13:44:41
|
Revision: 8295 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8295&view=rev Author: vargenau Date: 2012-09-28 13:44:30 +0000 (Fri, 28 Sep 2012) Log Message: ----------- Remove $Id$ Modified Paths: -------------- trunk/themes/Wordpress/Wordpress.css Property Changed: ---------------- trunk/themes/Wordpress/Wordpress.css Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2012-09-28 13:42:07 UTC (rev 8294) +++ trunk/themes/Wordpress/Wordpress.css 2012-09-28 13:44:30 UTC (rev 8295) @@ -1,6 +1,4 @@ /** - * $Id$ - * * PhpWiki's Wordpress style sheet contributed by Mike Pickering */ Property changes on: trunk/themes/Wordpress/Wordpress.css ___________________________________________________________________ Deleted: svn:keywords - Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2014-09-30 16:31:34
|
Revision: 9138 http://sourceforge.net/p/phpwiki/code/9138 Author: vargenau Date: 2014-09-30 16:31:24 +0000 (Tue, 30 Sep 2014) Log Message: ----------- Fix CSS syntax Modified Paths: -------------- trunk/themes/Wordpress/Wordpress.css Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2014-09-29 16:35:13 UTC (rev 9137) +++ trunk/themes/Wordpress/Wordpress.css 2014-09-30 16:31:24 UTC (rev 9138) @@ -814,7 +814,7 @@ padding: 0.2ex 0.5em; } -div.wikicomment div.wikicomment-footer named-wiki { +div.wikicomment div.wikicomment-footer .named-wiki { font-size: small; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |