From: <var...@us...> - 2009-01-19 10:37:01
|
Revision: 6414 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6414&view=rev Author: vargenau Date: 2009-01-19 10:36:55 +0000 (Mon, 19 Jan 2009) Log Message: ----------- Add Id Modified Paths: -------------- trunk/themes/Sidebar/monobook.css Property Changed: ---------------- trunk/themes/Sidebar/monobook.css Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2009-01-19 10:33:24 UTC (rev 6413) +++ trunk/themes/Sidebar/monobook.css 2009-01-19 10:36:55 UTC (rev 6414) @@ -1,3 +1,7 @@ +/** + * $Id + */ + /* ** MediaWiki 'monobook' style sheet for CSS2-capable browsers. ** Copyright Gabriel Wicke - http://wikidev.net/ Property changes on: trunk/themes/Sidebar/monobook.css ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-01-19 10:49:54
|
Revision: 6416 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6416&view=rev Author: vargenau Date: 2009-01-19 10:49:42 +0000 (Mon, 19 Jan 2009) Log Message: ----------- Add Id Modified Paths: -------------- trunk/themes/Sidebar/monobook.css Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2009-01-19 10:40:19 UTC (rev 6415) +++ trunk/themes/Sidebar/monobook.css 2009-01-19 10:49:42 UTC (rev 6416) @@ -1,5 +1,5 @@ /** - * $Id + * $Id$ */ /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-01-24 11:29:50
|
Revision: 6440 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6440&view=rev Author: vargenau Date: 2009-01-24 11:29:46 +0000 (Sat, 24 Jan 2009) Log Message: ----------- boxed and bordered tables Modified Paths: -------------- trunk/themes/Sidebar/monobook.css Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2009-01-24 11:28:11 UTC (rev 6439) +++ trunk/themes/Sidebar/monobook.css 2009-01-24 11:29:46 UTC (rev 6440) @@ -1926,3 +1926,43 @@ font-family: Arial, Helvetica, sans-serif; font-size: 10px; } + +/* + * 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; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-15 09:27:58
|
Revision: 7332 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7332&view=rev Author: vargenau Date: 2010-04-15 09:27:52 +0000 (Thu, 15 Apr 2010) Log Message: ----------- Although color names are case-insensitive, it is recommended to use the mixed capitalization, to make the names more legible Modified Paths: -------------- trunk/themes/Sidebar/monobook.css Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2010-04-15 09:04:51 UTC (rev 7331) +++ trunk/themes/Sidebar/monobook.css 2010-04-15 09:27:52 UTC (rev 7332) @@ -996,7 +996,7 @@ cursor: pointer; width: 18px; height: 18px; - border: 1px solid buttonshadow; + border: 1px solid ButtonShadow; } input.searchButton { margin-top: 1px; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |