Thread: [Phpfreechat-svn] SF.net SVN: phpfreechat: [504] trunk/themes/default/images
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-05-25 11:45:15
|
Revision: 504 Author: kerphi Date: 2006-05-25 04:44:58 -0700 (Thu, 25 May 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=504&view=rev Log Message: ----------- add a grey shade background for the default theme Modified Paths: -------------- trunk/themes/default/templates/style.css.tpl.php Added Paths: ----------- trunk/themes/default/images/shade.gif Added: trunk/themes/default/images/shade.gif =================================================================== (Binary files differ) Property changes on: trunk/themes/default/images/shade.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/themes/default/templates/style.css.tpl.php =================================================================== --- trunk/themes/default/templates/style.css.tpl.php 2006-05-25 11:44:26 UTC (rev 503) +++ trunk/themes/default/templates/style.css.tpl.php 2006-05-25 11:44:58 UTC (rev 504) @@ -8,9 +8,12 @@ <?php if ($width!="") { ?>width: <?php echo $width; ?>;<?php } ?> border: 1px solid #555; color: #000; - background-color: #FFF; padding: 10px; min-height: 20px; + background-color: #FFF; + background-image: url(<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>); + background-position: right; + background-repeat: repeat-y; } #<?php echo $prefix; ?>minmax { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-06-16 21:02:24
|
Revision: 608 Author: kerphi Date: 2006-06-16 14:02:15 -0700 (Fri, 16 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=608&view=rev Log Message: ----------- change the default style for the oldmsg Modified Paths: -------------- trunk/themes/default/templates/pfcgui.js.tpl.php trunk/themes/default/templates/style.css.tpl.php Added Paths: ----------- trunk/themes/default/images/oldmsg.gif Added: trunk/themes/default/images/oldmsg.gif =================================================================== (Binary files differ) Property changes on: trunk/themes/default/images/oldmsg.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 20:40:30 UTC (rev 607) +++ trunk/themes/default/templates/pfcgui.js.tpl.php 2006-06-16 21:02:15 UTC (rev 608) @@ -108,7 +108,7 @@ cc.setAttribute('id', '<?php echo $prefix; ?>chat_'+tabid); Element.addClassName(cc, '<?php echo $prefix; ?>chat'); cc.style.display = "block"; // needed by IE6 to show the online div at startup (first loaded page) - cc.style.marginLeft = "5px"; + // cc.style.marginLeft = "5px"; this.chatcontent[tabid] = cc; return cc; Modified: trunk/themes/default/templates/style.css.tpl.php =================================================================== --- trunk/themes/default/templates/style.css.tpl.php 2006-06-16 20:40:30 UTC (rev 607) +++ trunk/themes/default/templates/style.css.tpl.php 2006-06-16 21:02:15 UTC (rev 608) @@ -32,7 +32,7 @@ border-right: 1px solid #555; border-left: 1px solid #555; border-bottom: 1px solid #555; - background-color: #FAFAFA; + background-color: #FFF; margin-top: 5px; } div.<?php echo $prefix; ?>content { @@ -60,13 +60,13 @@ background-color: #DDD; } ul#<?php echo $prefix; ?>channels_list li.selected div { - background-color: #FAFAFA; - border-bottom: 1px solid #FAFAFA; + background-color: #FFF; + border-bottom: 1px solid #FFF; color: #000; font-weight: bold; } ul#<?php echo $prefix; ?>channels_list li > div:hover { - background-color: #FAFAFA; + background-color: #FFF; } ul#<?php echo $prefix; ?>channels_list li a { color: #000; @@ -89,7 +89,7 @@ position: absolute; top: 0; left: 0; - width: 79.5%; + width: 79.9%; height: 100%; overflow: auto; } @@ -132,14 +132,16 @@ } div.<?php echo $prefix; ?>message { - margin: 0; } .<?php echo $prefix; ?>words { font-size: 90%; } div.<?php echo $prefix; ?>oldmsg { - color: #AAA; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.gif'); ?>"); + background-position: right; + 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. |
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. |
From: <gpi...@us...> - 2007-08-27 16:20:48
|
Revision: 1149 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1149&view=rev Author: gpinzone Date: 2007-08-27 09:20:51 -0700 (Mon, 27 Aug 2007) Log Message: ----------- Fixed newmsg.gif and oldmsg.gif problems with Opera browsers. Modified Paths: -------------- trunk/themes/default/images/newmsg.gif trunk/themes/default/images/oldmsg.gif Modified: trunk/themes/default/images/newmsg.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/oldmsg.gif =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gpi...@us...> - 2007-08-27 17:40:33
|
Revision: 1150 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1150&view=rev Author: gpinzone Date: 2007-08-27 10:40:35 -0700 (Mon, 27 Aug 2007) Log Message: ----------- Optimized GIF file sizes Modified Paths: -------------- trunk/themes/default/images/bt_color.gif trunk/themes/default/images/bt_del.gif trunk/themes/default/images/bt_em.gif trunk/themes/default/images/bt_ins.gif trunk/themes/default/images/bt_mail.gif trunk/themes/default/images/bt_pre.gif trunk/themes/default/images/bt_strong.gif trunk/themes/default/images/clock-off.gif trunk/themes/default/images/close-whoisbox.gif trunk/themes/default/images/color-off.gif trunk/themes/default/images/maximize.gif trunk/themes/default/images/minimize.gif trunk/themes/default/images/online-separator.gif Modified: trunk/themes/default/images/bt_color.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_del.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_em.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_ins.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_mail.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_pre.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/bt_strong.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/clock-off.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/close-whoisbox.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/color-off.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/maximize.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/minimize.gif =================================================================== (Binary files differ) Modified: trunk/themes/default/images/online-separator.gif =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gpi...@us...> - 2007-08-29 14:50:55
|
Revision: 1158 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1158&view=rev Author: gpinzone Date: 2007-08-29 07:50:55 -0700 (Wed, 29 Aug 2007) Log Message: ----------- Icons for female users. Useful for mods where gender is tracked. Added Paths: ----------- trunk/themes/default/images/user_female-me.gif trunk/themes/default/images/user_female.gif Added: trunk/themes/default/images/user_female-me.gif =================================================================== (Binary files differ) Property changes on: trunk/themes/default/images/user_female-me.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/themes/default/images/user_female.gif =================================================================== (Binary files differ) Property changes on: trunk/themes/default/images/user_female.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |