From: <var...@us...> - 2009-01-24 13:16:11
|
Revision: 6447 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6447&view=rev Author: vargenau Date: 2009-01-24 11:43:40 +0000 (Sat, 24 Jan 2009) Log Message: ----------- boxed and bordered tables Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2009-01-24 11:41:45 UTC (rev 6446) +++ trunk/themes/blog/Kubrick.css 2009-01-24 11:43:40 UTC (rev 6447) @@ -928,3 +928,43 @@ 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; +} + 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:20:42
|
Revision: 6465 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6465&view=rev Author: vargenau Date: 2009-01-30 18:20:34 +0000 (Fri, 30 Jan 2009) Log Message: ----------- Provide correct generic family Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2009-01-30 18:07:40 UTC (rev 6464) +++ trunk/themes/blog/Kubrick.css 2009-01-30 18:20:34 UTC (rev 6465) @@ -12,7 +12,7 @@ margin: 20px auto; padding: 0; font-size: 75%; /* Resets 1em to 10px */ - font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; + font-family: 'Lucida Grande', Verdana, Arial, sans-serif; background-color: #d5d6d7; color: #333; background: url("images/kubrickbgcolor.png"); @@ -247,25 +247,25 @@ } small { - font-family: Arial, Helvetica, Sans-Serif; + font-family: Arial, Helvetica, sans-serif; font-size: 0.9em; line-height: 1.5em; } tt { - font-family: 'Andale Mono', 'Lucida Console', 'Courier New', monospaced; + font-family: 'Andale Mono', 'Lucida Console', 'Courier New', monospace; font-size: 1.05em; } pre { width: 486px; font-size: 10px; - font-family: 'Andale Mono', 'Lucida Console', 'Courier New', monospaced; + font-family: 'Andale Mono', 'Lucida Console', 'Courier New', monospace; overflow: hidden; } h1, h2, h3 { - font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; + font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; } @@ -286,7 +286,7 @@ } #sidebar h2, #sidebar .box-title { - font-family: 'Lucida Grande', Verdana, Sans-Serif; + font-family: 'Lucida Grande', Verdana, sans-serif; font-size: 1.2em; } @@ -329,7 +329,7 @@ } /* ie quirks */ #sidebar { - font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif; + font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; left:585px; position:absolute; z-index: 2; @@ -342,7 +342,7 @@ color: black; } #moz-sidebar { - font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif; + font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; margin-left: 560px; position:absolute; z-index: 2; @@ -381,7 +381,7 @@ } code { - font: 1.1em 'Courier New', Courier, Fixed; + font: 1.1em 'Courier New', Courier, monospace; } acronym, abbr, span.caps This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2012-12-29 10:16:55
|
Revision: 8699 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8699&view=rev Author: vargenau Date: 2012-12-29 10:16:49 +0000 (Sat, 29 Dec 2012) Log Message: ----------- Optimize padding Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2012-12-29 10:11:38 UTC (rev 8698) +++ trunk/themes/blog/Kubrick.css 2012-12-29 10:16:49 UTC (rev 8699) @@ -433,7 +433,7 @@ /* local links (override above) */ /* a.namedurl[href*="the.taoofmac.com"] { - padding-right: 0px; + padding-right: 0; background: none; } */ @@ -481,7 +481,6 @@ #editpage, #edit-content, .wiki-edithelp { /* top, right, bottom, left */ padding: 0 0 20px 0; - /*margin: 0px 0 0;*/ width: 710px; overflow: visible; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-22 10:28:57
|
Revision: 10673 http://sourceforge.net/p/phpwiki/code/10673 Author: vargenau Date: 2021-11-22 10:28:56 +0000 (Mon, 22 Nov 2021) Log Message: ----------- themes/blog/Kubrick.css: use CSS table-row and table-cell for layout Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-22 09:41:55 UTC (rev 10672) +++ trunk/themes/blog/Kubrick.css 2021-11-22 10:28:56 UTC (rev 10673) @@ -99,6 +99,8 @@ } #content { + display:table-cell; + padding-left: 19px; font-size: 1.2em } @@ -274,12 +276,9 @@ color: #b85b5a; } -/* ie quirks */ #sidebar { + display: table-cell; font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; - left: 1000px; - position: absolute; - z-index: 2; top: 260px; /* top, right, bottom, left */ padding: 0 10px 10px 0; @@ -375,7 +374,7 @@ } #bodyContent { - float: left; + display: table-row; padding: 0 0 20px 25px; margin: 0 0 0; width: 550px; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-25 15:53:08
|
Revision: 10691 http://sourceforge.net/p/phpwiki/code/10691 Author: vargenau Date: 2021-11-25 15:53:06 +0000 (Thu, 25 Nov 2021) Log Message: ----------- blog theme; improve layout for diff and edit Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-25 15:13:00 UTC (rev 10690) +++ trunk/themes/blog/Kubrick.css 2021-11-25 15:53:06 UTC (rev 10691) @@ -387,6 +387,14 @@ width: 550px !important; } +#editpage, .wiki-edithelp { + margin-left: 22px; +} + +.wiki-edithelp { + font-size: 0.81em; +} + #editpage, #edit-content, .wiki-edithelp { /* top, right, bottom, left */ padding: 0 0 20px 0; @@ -394,8 +402,9 @@ overflow: visible; } -.wiki-edithelp { - font-size: 0.81em; +#edit-summary { + margin-top: 10px; + margin-bottom: 10px; } #wikiblog-form div.wiki-edithelp { @@ -662,6 +671,7 @@ /* entire difftextblock */ #difftext { width: 710px; + margin-left: 22px; margin-top: 0; margin-bottom: 0; background: white; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-26 11:25:27
|
Revision: 10699 http://sourceforge.net/p/phpwiki/code/10699 Author: vargenau Date: 2021-11-26 11:25:26 +0000 (Fri, 26 Nov 2021) Log Message: ----------- blog theme: add CSS for CreateToc plugin Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-25 18:44:42 UTC (rev 10698) +++ trunk/themes/blog/Kubrick.css 2021-11-26 11:25:26 UTC (rev 10699) @@ -813,6 +813,13 @@ border: 1px solid gray; } +/* CreateToc plugin =================================================== */ + +div.toc p { + margin: 1px; + font-size: 90%; +} + /* TeX2png plugin ===================================================== */ img.tex { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-02-12 11:45:41
|
Revision: 9534 http://sourceforge.net/p/phpwiki/code/9534 Author: vargenau Date: 2015-02-12 11:45:34 +0000 (Thu, 12 Feb 2015) Log Message: ----------- Add list-style-type for #moz-sidebar Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2015-02-12 10:35:25 UTC (rev 9533) +++ trunk/themes/blog/Kubrick.css 2015-02-12 11:45:34 UTC (rev 9534) @@ -384,6 +384,12 @@ background: white; } +#moz-sidebar ul li { + list-style-type: square; + padding-left: 0; + text-indent: 0; +} + #sidebar form { margin: 0; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-21 17:20:51
|
Revision: 10665 http://sourceforge.net/p/phpwiki/code/10665 Author: vargenau Date: 2021-11-21 17:20:48 +0000 (Sun, 21 Nov 2021) Log Message: ----------- Fix blog layout Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-21 16:46:41 UTC (rev 10664) +++ trunk/themes/blog/Kubrick.css 2021-11-21 17:20:48 UTC (rev 10665) @@ -277,7 +277,7 @@ /* ie quirks */ #sidebar { font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; - left: 585px; + left: 1000px; position: absolute; z-index: 2; top: 260px; @@ -556,7 +556,7 @@ #sidebar ul li { list-style-type: none; list-style-image: none; - margin-bottom: 15px; + margin-bottom: 1px; } #sidebar ul p, #sidebar ul select { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-22 21:03:34
|
Revision: 10677 http://sourceforge.net/p/phpwiki/code/10677 Author: vargenau Date: 2021-11-22 21:03:32 +0000 (Mon, 22 Nov 2021) Log Message: ----------- Improve blog layout Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-22 20:55:38 UTC (rev 10676) +++ trunk/themes/blog/Kubrick.css 2021-11-22 21:03:32 UTC (rev 10677) @@ -51,7 +51,7 @@ /* http://universaleditbutton.org */ div.actionbuttons a#btn-edit { background: url('images/UEB16.png') bottom left no-repeat; - padding-left: 13px !important; + padding-left: 18px !important; } #sitemeter { @@ -58,7 +58,7 @@ float: right; } -#actionbuttons, .actionbuttons { +.actionbuttons { float: left; height: 20px; margin-top: 12px; @@ -73,8 +73,8 @@ vertical-align: middle; } -#actionbuttons a { - padding-right: 0; +.actionbuttons a { + padding-right: 4px; font-size: 11px; /* we need pixel units here to match the background */ } @@ -101,6 +101,7 @@ #content { display:table-cell; padding-left: 19px; + padding-right: 4px; font-size: 1.2em } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-25 14:27:13
|
Revision: 10686 http://sourceforge.net/p/phpwiki/code/10686 Author: vargenau Date: 2021-11-25 14:27:11 +0000 (Thu, 25 Nov 2021) Log Message: ----------- #flashheader unused Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-24 14:47:37 UTC (rev 10685) +++ trunk/themes/blog/Kubrick.css 2021-11-25 14:27:11 UTC (rev 10686) @@ -28,7 +28,7 @@ width: 100%; } -#flashheader, #yoursiteheader { +#yoursiteheader { padding-top: 19px; margin-left: 19px; width: 722px; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-25 16:56:59
|
Revision: 10692 http://sourceforge.net/p/phpwiki/code/10692 Author: vargenau Date: 2021-11-25 16:56:58 +0000 (Thu, 25 Nov 2021) Log Message: ----------- blog theme: improve layout for Help page Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-25 15:53:06 UTC (rev 10691) +++ trunk/themes/blog/Kubrick.css 2021-11-25 16:56:58 UTC (rev 10692) @@ -537,6 +537,10 @@ margin: 0 0 0 10px; } +.pagelist li { + font-size: 70%; +} + .narrowcolumn ul li:before, #sidebar ul ul li:before { content: "\00BB \0020"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-12-06 10:09:06
|
Revision: 10727 http://sourceforge.net/p/phpwiki/code/10727 Author: vargenau Date: 2021-12-06 10:09:04 +0000 (Mon, 06 Dec 2021) Log Message: ----------- blog: improve layout for PhpWikiAdministration page Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-12-06 09:50:43 UTC (rev 10726) +++ trunk/themes/blog/Kubrick.css 2021-12-06 10:09:04 UTC (rev 10727) @@ -78,6 +78,10 @@ font-size: 11px; /* we need pixel units here to match the background */ } +table a.wiki { + font-size: 90%; +} + #pagetrail { margin-left: 19px; width: 540px; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-03 18:37:19
|
Revision: 10812 http://sourceforge.net/p/phpwiki/code/10812 Author: vargenau Date: 2022-01-03 18:37:18 +0000 (Mon, 03 Jan 2022) Log Message: ----------- Fix blog theme padding Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2022-01-03 18:22:21 UTC (rev 10811) +++ trunk/themes/blog/Kubrick.css 2022-01-03 18:37:18 UTC (rev 10812) @@ -102,9 +102,12 @@ width: 760px; } +main { + padding-left: 19px; +} + #content { display:table-cell; - padding-left: 19px; padding-right: 4px; font-size: 1.2em } @@ -380,7 +383,6 @@ #bodyContent { display: table-row; - padding: 0 0 20px 25px; margin: 0 0 0; width: 550px; overflow: visible; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-04 14:13:21
|
Revision: 10816 http://sourceforge.net/p/phpwiki/code/10816 Author: vargenau Date: 2022-01-04 14:13:20 +0000 (Tue, 04 Jan 2022) Log Message: ----------- blog theme: fix editpage textarea placement Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2022-01-04 11:21:24 UTC (rev 10815) +++ trunk/themes/blog/Kubrick.css 2022-01-04 14:13:20 UTC (rev 10816) @@ -394,7 +394,7 @@ } #editpage, .wiki-edithelp { - margin-left: 22px; + margin-left: 4px; } .wiki-edithelp { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-05 15:50:23
|
Revision: 10821 http://sourceforge.net/p/phpwiki/code/10821 Author: vargenau Date: 2022-01-05 15:50:22 +0000 (Wed, 05 Jan 2022) Log Message: ----------- blog theme: adjust banner size Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2022-01-05 12:31:05 UTC (rev 10820) +++ trunk/themes/blog/Kubrick.css 2022-01-05 15:50:22 UTC (rev 10821) @@ -389,6 +389,10 @@ min-height: 490px; } +.success, .feedback, .warning, .warning_msg, .error, .information { + width: 700px; +} + .narrowcolumn, .wikiblog { width: 550px !important; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |