From: <var...@us...> - 2009-01-24 13:16:18
|
Revision: 6448 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6448&view=rev Author: vargenau Date: 2009-01-24 11:46:05 +0000 (Sat, 24 Jan 2009) Log Message: ----------- boxed and bordered tables Modified Paths: -------------- trunk/themes/default/phpwiki.css Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2009-01-24 11:43:40 UTC (rev 6447) +++ trunk/themes/default/phpwiki.css 2009-01-24 11:46:05 UTC (rev 6448) @@ -956,8 +956,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-31 14:36:41
|
Revision: 6473 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6473&view=rev Author: vargenau Date: 2009-01-31 14:36:38 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Valid CSS Modified Paths: -------------- trunk/themes/default/phpwiki.css Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2009-01-31 14:33:53 UTC (rev 6472) +++ trunk/themes/default/phpwiki.css 2009-01-31 14:36:38 UTC (rev 6473) @@ -1018,10 +1018,6 @@ padding: 0.05ex 0.25em 0.1ex 0.25em; height: auto; width: auto; -/* These gecko-specific give CSS parse error: */ - -moz-appearance: none; - -moz-box-sizing: content-box; - -moz-border-radius: 1ex; /* Prevent buttons from overlapping when the toolbar is wrapped. */ line-height: 2.6ex; /*margin: 2ex 0.2em;*/ @@ -1061,9 +1057,6 @@ a.wikibutton, a.wikibutton:visited, input.wikibutton { background-color: white; border: 0; - -moz-appearance: none; - -moz-box-sizing: content-box; - -moz-border-radius: 0; } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-10 16:20:21
|
Revision: 9660 http://sourceforge.net/p/phpwiki/code/9660 Author: vargenau Date: 2015-04-10 16:20:19 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Fix margin for toolbar Modified Paths: -------------- trunk/themes/default/phpwiki.css Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2015-04-10 16:15:44 UTC (rev 9659) +++ trunk/themes/default/phpwiki.css 2015-04-10 16:20:19 UTC (rev 9660) @@ -333,7 +333,7 @@ font-family: Arial, Helvetica, sans-serif; } -.toolbar { +.toolbar, .edit-toolbar { padding: 0; margin: 0; } @@ -342,11 +342,6 @@ cursor: pointer; } -.edit-toolbar { - padding: 0; - margin: 0; -} - .edit-toolbar img, .edit-toolbar input { background-color: #fff; border: 1px solid ButtonFace; @@ -1126,10 +1121,6 @@ vertical-align: top; } -.toolbar, div.toolbar { - margin: 0.5ex 0; -} - /** * General */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |