[Phpfreechat-svn] SF.net SVN: phpfreechat: [609] trunk/themes/default/images
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-16 21:18:48
|
Revision: 609 Author: kerphi Date: 2006-06-16 14:18:38 -0700 (Fri, 16 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=609&view=rev Log Message: ----------- improve the design on the border between chat and nickname list area Modified Paths: -------------- trunk/themes/default/templates/pfcgui.js.tpl.php trunk/themes/default/templates/style.css.tpl.php Added Paths: ----------- trunk/themes/default/images/online-separator.gif Added: trunk/themes/default/images/online-separator.gif =================================================================== (Binary files differ) Property changes on: trunk/themes/default/images/online-separator.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/themes/default/templates/pfcgui.js.tpl.php =================================================================== --- trunk/themes/default/templates/pfcgui.js.tpl.php 2006-06-16 21:02:15 UTC (rev 608) +++ trunk/themes/default/templates/pfcgui.js.tpl.php 2006-06-16 21:18:38 UTC (rev 609) @@ -123,7 +123,7 @@ oc.setAttribute('id', '<?php echo $prefix; ?>online_'+tabid); Element.addClassName(oc, '<?php echo $prefix; ?>online'); // I set the border style here because seting it in the CSS is not taken in account - oc.style.borderLeft = "1px solid #555"; + // oc.style.borderLeft = "1px solid #555"; oc.style.display = "block"; // needed by IE6 to show the online div at startup (first loaded page) // Create a dummy div to add padding Modified: trunk/themes/default/templates/style.css.tpl.php =================================================================== --- trunk/themes/default/templates/style.css.tpl.php 2006-06-16 21:02:15 UTC (rev 608) +++ trunk/themes/default/templates/style.css.tpl.php 2006-06-16 21:18:38 UTC (rev 609) @@ -11,7 +11,7 @@ padding: 10px; min-height: 20px; background-color: #FFF; - background-image: url(<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>); + background-image: url("<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>"); background-position: right; background-repeat: repeat-y; font-family: Verdana, Sans-Serif; /* without this rule, the tabs are not correctly display on FF */ @@ -89,7 +89,7 @@ position: absolute; top: 0; left: 0; - width: 79.9%; + width: 80%; height: 100%; overflow: auto; } @@ -104,6 +104,9 @@ height: 100%; color: #000; /* colors can be overriden by js nickname colorization */ background-color: #FFF; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/online-separator.gif'); ?>"); + background-position: left; + background-repeat: repeat-y; /* borders are drawn by the javascript routines */ } div.<?php echo $prefix; ?>online ul { @@ -140,8 +143,7 @@ div.<?php echo $prefix; ?>oldmsg { background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.gif'); ?>"); background-position: right; - background-repeat: repeat-y; - + background-repeat: repeat-y; } span.<?php echo $prefix; ?>heure, span.<?php echo $prefix; ?>date { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |