[Phpfreechat-svn] SF.net SVN: phpfreechat: [945] trunk
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-02-08 17:48:20
|
Revision: 945 http://svn.sourceforge.net/phpfreechat/?rev=945&view=rev Author: kerphi Date: 2007-02-08 09:48:08 -0800 (Thu, 08 Feb 2007) Log Message: ----------- rename style.css to style.css.php Modified Paths: -------------- trunk/src/phpfreechat.class.php Added Paths: ----------- trunk/themes/blune/style.css.php trunk/themes/default/style.css.php trunk/themes/green/style.css.php trunk/themes/zilveer/style.css.php Removed Paths: ------------- trunk/themes/blune/style.css trunk/themes/default/style.css trunk/themes/green/style.css trunk/themes/zilveer/style.css Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2007-02-07 16:43:01 UTC (rev 944) +++ trunk/src/phpfreechat.class.php 2007-02-08 17:48:08 UTC (rev 945) @@ -109,29 +109,6 @@ $output = ''; - - /* - if ($c->isDefaultFile("style.css")) - $output .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"".$c->getFileUrlByProxy("style.css")."\" />\n"; - else - { - // user has a customized stylesheet - // first of all include the default stylesheet - // then the user stylesheet - $defaultstyle = $c->themepath_default."/default/style.css"; - $output .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"".$c->data_public_url."/".$c->getId()."/proxy.php?p=default/style.css\" />\n"; - $output .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"".$c->getFileUrlByProxy("style.css")."\" />\n"; - } - - // since php can't be embeded into the css themes files, special styles parameter must be setup here - if ($c->height != "") - { - $output .= "<style type=\"text/css\">"; - $output .= "div#pfc_channels_content { height: ".$c->height."; }"; - $output .= "</style>\n"; - } - */ - if($return) return $output; else @@ -403,7 +380,7 @@ $js = '';//file_get_contents(dirname(__FILE__).'/client/createstylerule.js'); $js .= 'var c = $H();'; - $path = $c->getFilePathFromTheme('style.css'); + $path = $c->getFilePathFromTheme('style.css.php'); require_once dirname(__FILE__).'/../lib/csstidy-1.2/class.csstidy.php'; $css = new csstidy(); $css->set_cfg('preserve_css',false); @@ -413,12 +390,12 @@ $t = new pfcTemplate(); $t->assignObject($u,"u"); $t->assignObject($c,"c"); - if (!$c->isDefaultFile('style.css')) + if (!$c->isDefaultFile('style.css.php')) { - $t->setTemplate($c->themepath_default.'/default/style.css'); + $t->setTemplate($c->themepath_default.'/default/style.css.php'); $css_code .= $t->getOutput(); } - $t->setTemplate($c->getFilePathFromTheme('style.css')); + $t->setTemplate($c->getFilePathFromTheme('style.css.php')); $css_code .= $t->getOutput(); Deleted: trunk/themes/blune/style.css =================================================================== --- trunk/themes/blune/style.css 2007-02-07 16:43:01 UTC (rev 944) +++ trunk/themes/blune/style.css 2007-02-08 17:48:08 UTC (rev 945) @@ -1,54 +0,0 @@ - -div#pfc_container { - color: #2A4064; - background-color: #BEC5D0; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>"); - background-repeat: repeat-y; -} - -div.pfc_chat { - background-color:#CED4DF; -} - -div.pfc_message { - background-color:#CED4DF; -} - -div.pfc_oldmsg { - /*background-image: none; - background-color:#DCDEE4;*/ -} - -span.pfc_nick { - color:#2A4064; -} - -div#pfc_errors { - display: none; - margin-top: 5px; - padding: 2px; - height: 18px; - border: #555 solid 1px; - color: #EC4A1F; - background-color: #BEC5D0; - font-style: italic; - font-weight: bold; -} - -ul#pfc_channels_list li div { - background-color: #bec5d0; - border-bottom: 1px solid #bec5d0; -} -ul#pfc_channels_list li.selected div { - background-color: #CED4DF; - border-bottom: 1px solid #CED4DF; - color: #000; - font-weight: bold; -} -ul#pfc_channels_list li div:hover { - background-color: #CED4DF; - border-bottom: 1px solid #CED4DF; -} -ul#pfc_channels_list li.selected div:hover { - background-color: #CED4DF; -} Copied: trunk/themes/blune/style.css.php (from rev 943, trunk/themes/blune/style.css) =================================================================== --- trunk/themes/blune/style.css.php (rev 0) +++ trunk/themes/blune/style.css.php 2007-02-08 17:48:08 UTC (rev 945) @@ -0,0 +1,54 @@ + +div#pfc_container { + color: #2A4064; + background-color: #BEC5D0; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>"); + background-repeat: repeat-y; +} + +div.pfc_chat { + background-color:#CED4DF; +} + +div.pfc_message { + background-color:#CED4DF; +} + +div.pfc_oldmsg { + /*background-image: none; + background-color:#DCDEE4;*/ +} + +span.pfc_nick { + color:#2A4064; +} + +div#pfc_errors { + display: none; + margin-top: 5px; + padding: 2px; + height: 18px; + border: #555 solid 1px; + color: #EC4A1F; + background-color: #BEC5D0; + font-style: italic; + font-weight: bold; +} + +ul#pfc_channels_list li div { + background-color: #bec5d0; + border-bottom: 1px solid #bec5d0; +} +ul#pfc_channels_list li.selected div { + background-color: #CED4DF; + border-bottom: 1px solid #CED4DF; + color: #000; + font-weight: bold; +} +ul#pfc_channels_list li div:hover { + background-color: #CED4DF; + border-bottom: 1px solid #CED4DF; +} +ul#pfc_channels_list li.selected div:hover { + background-color: #CED4DF; +} Deleted: trunk/themes/default/style.css =================================================================== --- trunk/themes/default/style.css 2007-02-07 16:43:01 UTC (rev 944) +++ trunk/themes/default/style.css 2007-02-08 17:48:08 UTC (rev 945) @@ -1,398 +0,0 @@ -/* -will break display (margins, paddings) on IE6 -div#pfc_container * { - border: none; - margin: 0; - padding: 0; -} -*/ -div#pfc_container { - margin: 0; padding: 0; - border: 1px solid #555; - color: #000; - padding: 10px; - min-height: 20px; - background-color: #FFF; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/background.gif'); ?>"); - background-position: right; -/* background-repeat: repeat-xy;*/ - font-family: Verdana, Sans-Serif; /* without this rule, the tabs are not correctly display on FF */ -} - -div#pfc_container a img { border: 0px; } - -#pfc_minmax { - margin: 0; padding: 0; - cursor: pointer; -} -div#pfc_content_expandable { - margin: 0; padding: 0; - margin-top: 0.2em; -} - -div#pfc_channels_content { - margin: 0; padding: 0; - z-index: 20; - position: relative; - width: 100%; - border-right: 1px solid #555; - border-left: 1px solid #555; - border-bottom: 1px solid #555; - background-color: #FFF; - height: <?php echo ($c->height!=''?$c->height:'300px'); ?>; -} -div.pfc_content { - margin: 0; padding: 0; -} - -/* channels tabpanes */ -ul#pfc_channels_list { - margin: 0; padding: 0; - list-style-type: none; - display: block; - z-index: 50; - border-bottom: 1px solid #555; -/* margin-bottom: -5px;*/ -} -ul#pfc_channels_list li { - margin: 0; padding: 0; - display: inline; - margin-left: 5px; -} -ul#pfc_channels_list li img { - margin: 0; padding: 0; - vertical-align: bottom; -} -ul#pfc_channels_list li div { - margin: 0; padding: 0; - display: inline; - padding: 0 4px 0 4px; - border-top: 1px solid #555; - border-right: 1px solid #555; - border-left: 1px solid #555; - border-bottom: 1px solid #555; - background-color: #DDD; - vertical-align: bottom; -} -ul#pfc_channels_list li.selected div { - background-color: #FFF; - border-bottom: 1px solid #FFF; - color: #000; - font-weight: bold; -} -ul#pfc_channels_list li div:hover { - background-color: #FFF; -} -ul#pfc_channels_list li a { - margin: 0; padding: 0; - color: #000; - text-decoration: none; -} -ul#pfc_channels_list li a.pfc_tabtitle { - cursor: pointer; -} -ul#pfc_channels_list li a.pfc_tabtitle img { - padding-right: 4px; -} -ul#pfc_channels_list li a.pfc_tabclose { - margin-left: 4px; - cursor: pointer; -} -/* blinking stuff (tab notifications) */ -ul#pfc_channels_list li div.pfc_tabblink2 { - background-color: #FFF; -} - - -div.pfc_chat { - margin: 0; padding: 0; - z-index: 100; - position: absolute; - top: 0; - left: 0; - width: 80%; -/* WARNING: do not fix height in % because it will display blank screens on IE6 */ -/* height: 100%;*/ - overflow: auto; - word-wrap: break-word; -} -div.pfc_chat div { - margin: 0; padding: 0; border: none; -} - -div.pfc_online { - margin: 0; padding: 0; - position: absolute; - right: 0; - top: 0; - overflow: auto; - width: 20%; -/* WARNING: do not fix height in % because it will display blank screens on IE6 */ -/* height: 100%;*/ - color: #000; /* colors can be overriden by js nickname colorization */ - background-color: #FFF; - - /* borders are drawn by this image background */ - background-image: url("<?php echo $c->getFileUrlFromTheme('images/online-separator.gif'); ?>"); - background-position: left; - background-repeat: repeat-y; -} -div.pfc_online ul { - margin: 4px; padding: 0; - list-style-type: none; - font-size: 90%; - font-weight: bold; -} -ul.pfc_nicklist li { - margin: 0 0 5px 0; padding: 0; - border-bottom: 1px solid #AAA; -} -ul.pfc_nicklist img { - vertical-align: middle; /* fix icon position problem in IE6 */ -} -ul.pfc_nicklist a { - text-decoration: none; -} -ul.pfc_nicklist nobr span { - margin: 0; padding: 0; - display: inline; - text-decoration: none; -} - - - - -h2#pfc_title { - margin:0; padding:0; border: none; - font-size: 110%; -} - -img#pfc_minmax { - float: right; -} - -.pfc_invisible { - display: none; -} - -div.pfc_message { - margin: 0; padding: 0; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/newmsg.gif'); ?>"); - background-position: right; - background-repeat: no-repeat; -} -div.pfc_message img { - margin: 0; padding: 0; - vertical-align: middle; -} -div.pfc_oldmsg { - background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.gif'); ?>"); - background-position: right; - background-repeat: no-repeat; -} - -span.pfc_heure { - color: #bebebe; - font-size: 70%; -} - -span.pfc_date { - color: #bebebe; - font-size: 70%; -} - -span.pfc_nick { - color: #fbac17; - font-weight: bold; -} - -div#pfc_input_container { - margin: 5px 0 0 0; padding: 0; -} -div#pfc_input_container input { - margin: 0; padding: 0; -} -div#pfc_input_container td.pfc_td2 { - padding-right: 5px; - width: 100%; -} - -input#pfc_words { - margin: 0; padding: 0; - border: #555 solid 1px; - background-color: #FAFAFA; - width: 100%; - font-size: 12px; - height: 20px; - vertical-align: bottom; - font-size: 1em; - height: 1.2em; -} - -input#pfc_send { - margin: 0; padding: 0; - display: block; - padding: 2px; - border: 1px solid #555; - background-color: #CCC; - font-size: 10px; - vertical-align: bottom; - font-size: 0.7em; - height: 1.9em; - cursor: pointer; -} - -div#pfc_cmd_container { - position: relative; - margin: 4px 0 0 0; padding: 0; -} - -p#pfc_handle { - margin: 0; padding: 0; - display: inline; - cursor: pointer; - margin-right: 5px; - color: black; - font-weight: bold; - /*background-color: #EEE;*/ - font-size: 70%; /* these two line fix a display problem in IE6 : */ - vertical-align: top; - white-space: pre; -} - -a#pfc_logo { - margin: 0; padding: 0; - float: right; -} -#pfc_ping { - margin: 0 5px 0 0; padding: 0; - float:right; - font-size: 80%; -} -a#pfc_logo img { - margin: 0; padding: 0; -} -div.pfc_btn { - margin: 0; padding: 0; - display: inline; - cursor: pointer; -} -div.pfc_btn img { - margin: 0; padding: 0; border: none; - vertical-align: middle; -} - -div#pfc_bbcode_container { - margin: 4px 0 4px 0; padding: 0; -} - -div#pfc_errors { - margin: 0 0 4px 0; padding: 5px; - display: none; - border: 1px solid #555; - color: #EC4B0F; - background-color: #FFBB77; - font-style: italic; - font-family: monospace; - font-size: 90%; -} - -/* commands */ -.pfc_cmd_msg { - color: black; -} -.pfc_cmd_me { - font-style: italic; - color: black; -} -.pfc_cmd_notice { - font-style: italic; - color: #888; -} - -/* commands info */ -.pfc_info { - color: #888; - - /* to fix IE6 display bug */ - /* http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 */ - font-family: sans-serif; /* do NOT setup monospace font or it will not work in IE6 */ - - font-style: italic; - background-color: #EEE; - font-size: 80%; -} - -div#pfc_colorlist { - margin:0; padding:0; - display: none; -} -img.pfc_color { - margin: 1px;padding: 1px; - cursor: pointer; - vertical-align: middle; -} - -.pfc_nickmarker { - white-space: pre; -} - -div#pfc_smileys { - margin: 0; padding: 0; - display: none; /* will be shown by javascript routines */ - background-color: #FFF; - border: 1px solid #555; - padding: 4px; -} -div#pfc_smileys img { - margin: 0; padding: 0; - margin-right: 2px; - cursor: pointer; - vertical-align: middle; -} - -div.pfc_nickwhois * { padding: 0; margin: 0; } -div.pfc_nickwhois a img { border: none; } -div.pfc_nickwhois { - border: 1px solid #444; - background-color: #FFF; - font-size: 75%; -} -div.pfc_nickwhois ul { - list-style-type: none; - background-color: #EEE; - border-bottom: 1px solid #444; -} -div.pfc_nickwhois li { - display: inline; - margin-right: 4px; - padding: 2px; -} -td.pfc_nickwhois_c1 { - font-weight: bold; -} -li.pfc_nickwhois_pv { - padding-left: 2px; - border-left: 1px solid #444; -} -li.pfc_nickwhois_pv a { - text-decoration: none; -} - - -img.pfc_nickbutton { - cursor: pointer; -} - -div#pfc_debug { - font-size: 11px; -} -div#pfc_sound_container { - position: absolute; - top: 0; - left: 0; - visibility:hidden; /* this box is hidden because it contains a flash sound media (sound.swf)*/ - width: 0; - height: 0; -} - Copied: trunk/themes/default/style.css.php (from rev 943, trunk/themes/default/style.css) =================================================================== --- trunk/themes/default/style.css.php (rev 0) +++ trunk/themes/default/style.css.php 2007-02-08 17:48:08 UTC (rev 945) @@ -0,0 +1,398 @@ +/* +will break display (margins, paddings) on IE6 +div#pfc_container * { + border: none; + margin: 0; + padding: 0; +} +*/ +div#pfc_container { + margin: 0; padding: 0; + border: 1px solid #555; + color: #000; + padding: 10px; + min-height: 20px; + background-color: #FFF; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/background.gif'); ?>"); + background-position: right; +/* background-repeat: repeat-xy;*/ + font-family: Verdana, Sans-Serif; /* without this rule, the tabs are not correctly display on FF */ +} + +div#pfc_container a img { border: 0px; } + +#pfc_minmax { + margin: 0; padding: 0; + cursor: pointer; +} +div#pfc_content_expandable { + margin: 0; padding: 0; + margin-top: 0.2em; +} + +div#pfc_channels_content { + margin: 0; padding: 0; + z-index: 20; + position: relative; + width: 100%; + border-right: 1px solid #555; + border-left: 1px solid #555; + border-bottom: 1px solid #555; + background-color: #FFF; + height: <?php echo ($c->height!=''?$c->height:'300px'); ?>; +} +div.pfc_content { + margin: 0; padding: 0; +} + +/* channels tabpanes */ +ul#pfc_channels_list { + margin: 0; padding: 0; + list-style-type: none; + display: block; + z-index: 50; + border-bottom: 1px solid #555; +/* margin-bottom: -5px;*/ +} +ul#pfc_channels_list li { + margin: 0; padding: 0; + display: inline; + margin-left: 5px; +} +ul#pfc_channels_list li img { + margin: 0; padding: 0; + vertical-align: bottom; +} +ul#pfc_channels_list li div { + margin: 0; padding: 0; + display: inline; + padding: 0 4px 0 4px; + border-top: 1px solid #555; + border-right: 1px solid #555; + border-left: 1px solid #555; + border-bottom: 1px solid #555; + background-color: #DDD; + vertical-align: bottom; +} +ul#pfc_channels_list li.selected div { + background-color: #FFF; + border-bottom: 1px solid #FFF; + color: #000; + font-weight: bold; +} +ul#pfc_channels_list li div:hover { + background-color: #FFF; +} +ul#pfc_channels_list li a { + margin: 0; padding: 0; + color: #000; + text-decoration: none; +} +ul#pfc_channels_list li a.pfc_tabtitle { + cursor: pointer; +} +ul#pfc_channels_list li a.pfc_tabtitle img { + padding-right: 4px; +} +ul#pfc_channels_list li a.pfc_tabclose { + margin-left: 4px; + cursor: pointer; +} +/* blinking stuff (tab notifications) */ +ul#pfc_channels_list li div.pfc_tabblink2 { + background-color: #FFF; +} + + +div.pfc_chat { + margin: 0; padding: 0; + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 80%; +/* WARNING: do not fix height in % because it will display blank screens on IE6 */ +/* height: 100%;*/ + overflow: auto; + word-wrap: break-word; +} +div.pfc_chat div { + margin: 0; padding: 0; border: none; +} + +div.pfc_online { + margin: 0; padding: 0; + position: absolute; + right: 0; + top: 0; + overflow: auto; + width: 20%; +/* WARNING: do not fix height in % because it will display blank screens on IE6 */ +/* height: 100%;*/ + color: #000; /* colors can be overriden by js nickname colorization */ + background-color: #FFF; + + /* borders are drawn by this image background */ + background-image: url("<?php echo $c->getFileUrlFromTheme('images/online-separator.gif'); ?>"); + background-position: left; + background-repeat: repeat-y; +} +div.pfc_online ul { + margin: 4px; padding: 0; + list-style-type: none; + font-size: 90%; + font-weight: bold; +} +ul.pfc_nicklist li { + margin: 0 0 5px 0; padding: 0; + border-bottom: 1px solid #AAA; +} +ul.pfc_nicklist img { + vertical-align: middle; /* fix icon position problem in IE6 */ +} +ul.pfc_nicklist a { + text-decoration: none; +} +ul.pfc_nicklist nobr span { + margin: 0; padding: 0; + display: inline; + text-decoration: none; +} + + + + +h2#pfc_title { + margin:0; padding:0; border: none; + font-size: 110%; +} + +img#pfc_minmax { + float: right; +} + +.pfc_invisible { + display: none; +} + +div.pfc_message { + margin: 0; padding: 0; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/newmsg.gif'); ?>"); + background-position: right; + background-repeat: no-repeat; +} +div.pfc_message img { + margin: 0; padding: 0; + vertical-align: middle; +} +div.pfc_oldmsg { + background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.gif'); ?>"); + background-position: right; + background-repeat: no-repeat; +} + +span.pfc_heure { + color: #bebebe; + font-size: 70%; +} + +span.pfc_date { + color: #bebebe; + font-size: 70%; +} + +span.pfc_nick { + color: #fbac17; + font-weight: bold; +} + +div#pfc_input_container { + margin: 5px 0 0 0; padding: 0; +} +div#pfc_input_container input { + margin: 0; padding: 0; +} +div#pfc_input_container td.pfc_td2 { + padding-right: 5px; + width: 100%; +} + +input#pfc_words { + margin: 0; padding: 0; + border: #555 solid 1px; + background-color: #FAFAFA; + width: 100%; + font-size: 12px; + height: 20px; + vertical-align: bottom; + font-size: 1em; + height: 1.2em; +} + +input#pfc_send { + margin: 0; padding: 0; + display: block; + padding: 2px; + border: 1px solid #555; + background-color: #CCC; + font-size: 10px; + vertical-align: bottom; + font-size: 0.7em; + height: 1.9em; + cursor: pointer; +} + +div#pfc_cmd_container { + position: relative; + margin: 4px 0 0 0; padding: 0; +} + +p#pfc_handle { + margin: 0; padding: 0; + display: inline; + cursor: pointer; + margin-right: 5px; + color: black; + font-weight: bold; + /*background-color: #EEE;*/ + font-size: 70%; /* these two line fix a display problem in IE6 : */ + vertical-align: top; + white-space: pre; +} + +a#pfc_logo { + margin: 0; padding: 0; + float: right; +} +#pfc_ping { + margin: 0 5px 0 0; padding: 0; + float:right; + font-size: 80%; +} +a#pfc_logo img { + margin: 0; padding: 0; +} +div.pfc_btn { + margin: 0; padding: 0; + display: inline; + cursor: pointer; +} +div.pfc_btn img { + margin: 0; padding: 0; border: none; + vertical-align: middle; +} + +div#pfc_bbcode_container { + margin: 4px 0 4px 0; padding: 0; +} + +div#pfc_errors { + margin: 0 0 4px 0; padding: 5px; + display: none; + border: 1px solid #555; + color: #EC4B0F; + background-color: #FFBB77; + font-style: italic; + font-family: monospace; + font-size: 90%; +} + +/* commands */ +.pfc_cmd_msg { + color: black; +} +.pfc_cmd_me { + font-style: italic; + color: black; +} +.pfc_cmd_notice { + font-style: italic; + color: #888; +} + +/* commands info */ +.pfc_info { + color: #888; + + /* to fix IE6 display bug */ + /* http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 */ + font-family: sans-serif; /* do NOT setup monospace font or it will not work in IE6 */ + + font-style: italic; + background-color: #EEE; + font-size: 80%; +} + +div#pfc_colorlist { + margin:0; padding:0; + display: none; +} +img.pfc_color { + margin: 1px;padding: 1px; + cursor: pointer; + vertical-align: middle; +} + +.pfc_nickmarker { + white-space: pre; +} + +div#pfc_smileys { + margin: 0; padding: 0; + display: none; /* will be shown by javascript routines */ + background-color: #FFF; + border: 1px solid #555; + padding: 4px; +} +div#pfc_smileys img { + margin: 0; padding: 0; + margin-right: 2px; + cursor: pointer; + vertical-align: middle; +} + +div.pfc_nickwhois * { padding: 0; margin: 0; } +div.pfc_nickwhois a img { border: none; } +div.pfc_nickwhois { + border: 1px solid #444; + background-color: #FFF; + font-size: 75%; +} +div.pfc_nickwhois ul { + list-style-type: none; + background-color: #EEE; + border-bottom: 1px solid #444; +} +div.pfc_nickwhois li { + display: inline; + margin-right: 4px; + padding: 2px; +} +td.pfc_nickwhois_c1 { + font-weight: bold; +} +li.pfc_nickwhois_pv { + padding-left: 2px; + border-left: 1px solid #444; +} +li.pfc_nickwhois_pv a { + text-decoration: none; +} + + +img.pfc_nickbutton { + cursor: pointer; +} + +div#pfc_debug { + font-size: 11px; +} +div#pfc_sound_container { + position: absolute; + top: 0; + left: 0; + visibility:hidden; /* this box is hidden because it contains a flash sound media (sound.swf)*/ + width: 0; + height: 0; +} + Deleted: trunk/themes/green/style.css =================================================================== --- trunk/themes/green/style.css 2007-02-07 16:43:01 UTC (rev 944) +++ trunk/themes/green/style.css 2007-02-08 17:48:08 UTC (rev 945) @@ -1,85 +0,0 @@ -div#pfc_container { - border: 1px solid #555; - color: #338822; - background-color: #d9edd8; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>"); - background-position: right; - background-repeat: repeat-y; -} - -div#pfc_channels_content { - border-right: 1px solid #555; - border-left: 1px solid #555; - border-bottom: 1px solid #555; - background-color: #e0edde; -} - -/* channels tabpanes */ -ul#pfc_channels_list { - border-bottom: 1px solid #555; -} -ul#pfc_channels_list li div { - border-top: 1px solid #555; - border-right: 1px solid #555; - border-left: 1px solid #555; - border-bottom: 1px solid #555; - background-color: #7dc073; -} -ul#pfc_channels_list li.selected div { - background-color: #e0edde; - border-bottom: 1px solid #e0edde; - color: #000; -} -ul#pfc_channels_list li div:hover { - background-color: #e0edde; -} -ul#pfc_channels_list li a { - color: #000; -} - -div.pfc_smileys { - border: 1px solid #000; - background-color: #EEE; -} - -h2#pfc_title { - font-size: 110%; -} - -div.pfc_oldmsg { -} - -span.pfc_heure { - color: #bebebe; -} -span.pfc_date { - color: #bebebe; -} - -span.pfc_nick { - color: #fbac17; -} - -/* commands */ -.pfc_cmd_msg { - color: black; -} -.pfc_cmd_me { - font-style: italic; - color: black; -} -.pfc_cmd_notice { - font-style: italic; - color: #888; -} -pre.pfc_cmd_rehash -{ - color: #888; - font-style: italic; -} - -pre.pfc_cmd_help -{ - color: #888; - font-style: italic; -} \ No newline at end of file Copied: trunk/themes/green/style.css.php (from rev 943, trunk/themes/green/style.css) =================================================================== --- trunk/themes/green/style.css.php (rev 0) +++ trunk/themes/green/style.css.php 2007-02-08 17:48:08 UTC (rev 945) @@ -0,0 +1,85 @@ +div#pfc_container { + border: 1px solid #555; + color: #338822; + background-color: #d9edd8; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/shade.gif'); ?>"); + background-position: right; + background-repeat: repeat-y; +} + +div#pfc_channels_content { + border-right: 1px solid #555; + border-left: 1px solid #555; + border-bottom: 1px solid #555; + background-color: #e0edde; +} + +/* channels tabpanes */ +ul#pfc_channels_list { + border-bottom: 1px solid #555; +} +ul#pfc_channels_list li div { + border-top: 1px solid #555; + border-right: 1px solid #555; + border-left: 1px solid #555; + border-bottom: 1px solid #555; + background-color: #7dc073; +} +ul#pfc_channels_list li.selected div { + background-color: #e0edde; + border-bottom: 1px solid #e0edde; + color: #000; +} +ul#pfc_channels_list li div:hover { + background-color: #e0edde; +} +ul#pfc_channels_list li a { + color: #000; +} + +div.pfc_smileys { + border: 1px solid #000; + background-color: #EEE; +} + +h2#pfc_title { + font-size: 110%; +} + +div.pfc_oldmsg { +} + +span.pfc_heure { + color: #bebebe; +} +span.pfc_date { + color: #bebebe; +} + +span.pfc_nick { + color: #fbac17; +} + +/* commands */ +.pfc_cmd_msg { + color: black; +} +.pfc_cmd_me { + font-style: italic; + color: black; +} +.pfc_cmd_notice { + font-style: italic; + color: #888; +} +pre.pfc_cmd_rehash +{ + color: #888; + font-style: italic; +} + +pre.pfc_cmd_help +{ + color: #888; + font-style: italic; +} \ No newline at end of file Deleted: trunk/themes/zilveer/style.css =================================================================== --- trunk/themes/zilveer/style.css 2007-02-07 16:43:01 UTC (rev 944) +++ trunk/themes/zilveer/style.css 2007-02-08 17:48:08 UTC (rev 945) @@ -1,357 +0,0 @@ -div#pfc_container { - border: 1px solid #555; - color: #000; - padding: 10px; - min-height: 20px; - background-color: #FFF; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/background.gif'); ?>"); - background-position: right; -/* background-repeat: repeat-xy;*/ - font: 12px Trebuchet MS, Sans-Serif; /* without this rule, the tabs are not correctly display on FF */ - width: 640px; -} - -#pfc_minmax { - cursor: pointer; -} -/*bg of smilies and buttons*/ -div#pfc_content_expandable { - margin-top: 0.2em; - -} - -/*bg of the chat-messages*/ -div#pfc_channels_content { - z-index: 20; - position: relative; - - border-right: 2px solid #555; - border-left: 1px solid #555; - border-bottom: 2px solid #555; - background-color: #FFF; - margin-top: 5px; - - background-image: url("<?php echo $c->getFileUrlFromTheme('images/channels_content_bg.png'); ?>"); - width: 640px; -} -div.pfc_content { - -} - -/* channels tab-panes */ -ul#pfc_channels_list { - list-style-type: none; - display: block; - z-index: 50; - border-bottom: 1px solid #555; - margin-bottom: -5px; -} -ul#pfc_channels_list li { - display: inline; - margin-left: 5px; -} -/*tab-channel OFF*/ -ul#pfc_channels_list li div { - display: inline; - padding: 0 4px 0 4px; - border: 1px solid #555; - background-color: #DDD; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/tab_off.png'); ?>"); - font-size: 11px; - font-weight: bold; - -/*these 2 lines below is to make the tabs looks the same in IE and FF */ - padding-bottom: 6px; - line-height: 26px; -} -/*tab-channel ON*/ -ul#pfc_channels_list li.selected div { - background-color: #FFF; - color: #000; - font-weight: bold; - font-size: 11px; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/tab_on.png'); ?>"); - -/*these 2 lines below is to make the tabs looks the same in IE and FF */ - PADDING-BOTTOM: 6px; - line-height: 26px; -} -ul#pfc_channels_list li > div:hover { - background-color: #FFF; -} -/*tab-channel text*/ -ul#pfc_channels_list li a { - color: #333 ; - text-decoration: none; -} -ul#pfc_channels_list li a.pfc_tabtitle { - cursor: pointer; -} -ul#pfc_channels_list li a.pfc_tabtitle img { - padding-right: 4px; -} -ul#pfc_channels_list li a.pfc_tabclose { - margin-left: 4px; - cursor: pointer; -} - -/*where should the newmsg- and oldmsg pictures be placed? decide it here*/ -div.pfc_chat { - z-index: 100; - position: absolute; - top: 0px; - left: 3px; - right: 0px; - bottom: 3px; - width: 467px; -/* WARNING: do not fix height in % because it will display blank screens on IE6 */ -/* height: 100%;*/ - overflow: auto; -} - -/*usernames-onlinelist*/ -div.pfc_online { - position: absolute; - right: 0px; - top: 0px; - padding: 0px; - overflow: auto; - width: 171px; - border-bottom: 1px solid #555; -/* WARNING: do not fix height in % because it will display blank screens on IE6 */ -/* height: 100%;*/ - color: #000; /* colors can be overriden by js nickname colorization */ - background-color: #FFF; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_online.png'); ?>"); - background-position: left; - background-repeat: repeat-y; - /* borders are drawn by the javascript routines */ -} -div.pfc_online ul { - list-style-type: none; - margin: 0px; - padding: 0px; - margin-left: 8px; - margin-right: 8px; -} -div.pfc_online li { - font-weight: bold; - font-size: 12px; - cursor: pointer; - /* bottom borders are drawn by the javascript routines */ -} - -h2#pfc_title { - font-size: 110%; -} - -img#pfc_minmax { - float: right; -} - -.pfc_invisible { - display: none; -} - -.pfc_oddmsg { - background-color: #fff; - color: #000; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_message1.png'); ?>"); -} -.pfc_evenmsg { - background-color: #ccc; - color: #000; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_message2.png'); ?>"); -} - -div.pfc_message { - background-image: url("<?php echo $c->getFileUrlFromTheme('images/newmsg.png'); ?>"); - background-position: right; - background-repeat: no-repeat; -} - -div.pfc_oldmsg { - background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.png'); ?>"); - background-position: right; - background-repeat: no-repeat; -} - -span.pfc_heure, span.pfc_date { - color: #333; - font-size: 90%; -} - -span.pfc_nick { - color: #fbac17; - font-weight: bold; - cursor:pointer; -} - -div#pfc_input_container { - margin-top: 5px; - font-size: 12px; -} -p#pfc_handle { display: none; } - -div#pfc_input_container td.pfc_td2 { - background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_words.png'); ?>"); - background-repeat: no-repeat; - padding-left: 5px; -} - -input#pfc_words { - border: 0px; - background-color: #FAFAFA; - width: 520px; - font-size: 12px; - height: 20px; - vertical-align: bottom; - font: 12px Trebuchet MS; -} - -input#pfc_send { - display: block; - margin-left: 5px; - padding-top: 2px; - width: 100px; - border: 0px; - background-color: #ccc; - font: 12px Trebuchet MS; - color: #333; - height: 24px; - cursor: pointer; - background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_send.png'); ?>"); - cursor: pointer; -} - - - -div#pfc_cmd_container { - position: relative; - margin-top: 5px; - margin-bottom: 5px; - width: 100%; -} -div#pfc_cmd_container * { - margin-right: 2px; -} - - - -a#pfc_logo { - position: absolute; - right: 0px; - top: 0px; -} - -div.pfc_btn { - display: inline; - cursor: pointer; -} - -div#pfc_bbcode_container * { - margin-right: 2px; -} - -div#pfc_errors { - display: none; - padding: 5px; - border: 1px solid #555; - color: #EC4B0F; - background-color: #FFBB77; - font-style: italic; - font-family: monospace; - font-size: 90%; -} - -/* commands */ -.pfc_cmd_msg { - color: black; -} -.pfc_cmd_me { - font-style: italic; - color: black; -} -/*notice messages, login,logout,timed out etc..*/ -.pfc_cmd_notice { - font-style: italic; - color: #333; -} - -/* commands info */ -.pfc_info { - color: #fefefe; - - /* to fix IE6 display bug */ - /* http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 */ - font-family: sans-serif; /* do NOT setup monospace font or it will not work in IE6 */ - font-style: italic; - background-color: #EEE; - font-size: 80%; -} - - -div#pfc_colorlist { - display: none; -} -img.pfc_color { - padding: 1px; - cursor: pointer; -} - -.pfc_nickmarker { - white-space: pre; - -} - -div#pfc_smileys { - display: none; /* will be shown by javascript routines */ - background-color: #FFF; - border: 1px solid #555; - padding: 4px; - margin-top: 4px; -} -div#pfc_smileys * { - margin-right: 2px; -} - -div#pfc_smileys img { - cursor: pointer; -} - - - -div.pfc_nickwhois * { padding: 0; margin: 0; } -div.pfc_nickwhois a img { border: none; } -div.pfc_nickwhois { - border: 1px solid #444; - background-color: #FFF; - font-size: 75%; -} -div.pfc_nickwhois ul { - list-style-type: none; - background-color: #EEE; - border-bottom: 1px solid #444; -} -div.pfc_nickwhois li { - display: inline; - margin-right: 4px; - padding: 2px; -} -td.pfc_nickwhois_c1 { - font-weight: bold; -} -li.pfc_nickwhois_pv { - padding-left: 2px; - border-left: 1px solid #444; -} -li.pfc_nickwhois_pv a { - text-decoration: none; -} - -ul.pfc_nicklist span.pfc_nickmarker { -} - -img.pfc_nickbutton { - cursor: pointer; -} \ No newline at end of file Copied: trunk/themes/zilveer/style.css.php (from rev 943, trunk/themes/zilveer/style.css) =================================================================== --- trunk/themes/zilveer/style.css.php (rev 0) +++ trunk/themes/zilveer/style.css.php 2007-02-08 17:48:08 UTC (rev 945) @@ -0,0 +1,357 @@ +div#pfc_container { + border: 1px solid #555; + color: #000; + padding: 10px; + min-height: 20px; + background-color: #FFF; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/background.gif'); ?>"); + background-position: right; +/* background-repeat: repeat-xy;*/ + font: 12px Trebuchet MS, Sans-Serif; /* without this rule, the tabs are not correctly display on FF */ + width: 640px; +} + +#pfc_minmax { + cursor: pointer; +} +/*bg of smilies and buttons*/ +div#pfc_content_expandable { + margin-top: 0.2em; + +} + +/*bg of the chat-messages*/ +div#pfc_channels_content { + z-index: 20; + position: relative; + + border-right: 2px solid #555; + border-left: 1px solid #555; + border-bottom: 2px solid #555; + background-color: #FFF; + margin-top: 5px; + + background-image: url("<?php echo $c->getFileUrlFromTheme('images/channels_content_bg.png'); ?>"); + width: 640px; +} +div.pfc_content { + +} + +/* channels tab-panes */ +ul#pfc_channels_list { + list-style-type: none; + display: block; + z-index: 50; + border-bottom: 1px solid #555; + margin-bottom: -5px; +} +ul#pfc_channels_list li { + display: inline; + margin-left: 5px; +} +/*tab-channel OFF*/ +ul#pfc_channels_list li div { + display: inline; + padding: 0 4px 0 4px; + border: 1px solid #555; + background-color: #DDD; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/tab_off.png'); ?>"); + font-size: 11px; + font-weight: bold; + +/*these 2 lines below is to make the tabs looks the same in IE and FF */ + padding-bottom: 6px; + line-height: 26px; +} +/*tab-channel ON*/ +ul#pfc_channels_list li.selected div { + background-color: #FFF; + color: #000; + font-weight: bold; + font-size: 11px; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/tab_on.png'); ?>"); + +/*these 2 lines below is to make the tabs looks the same in IE and FF */ + PADDING-BOTTOM: 6px; + line-height: 26px; +} +ul#pfc_channels_list li > div:hover { + background-color: #FFF; +} +/*tab-channel text*/ +ul#pfc_channels_list li a { + color: #333 ; + text-decoration: none; +} +ul#pfc_channels_list li a.pfc_tabtitle { + cursor: pointer; +} +ul#pfc_channels_list li a.pfc_tabtitle img { + padding-right: 4px; +} +ul#pfc_channels_list li a.pfc_tabclose { + margin-left: 4px; + cursor: pointer; +} + +/*where should the newmsg- and oldmsg pictures be placed? decide it here*/ +div.pfc_chat { + z-index: 100; + position: absolute; + top: 0px; + left: 3px; + right: 0px; + bottom: 3px; + width: 467px; +/* WARNING: do not fix height in % because it will display blank screens on IE6 */ +/* height: 100%;*/ + overflow: auto; +} + +/*usernames-onlinelist*/ +div.pfc_online { + position: absolute; + right: 0px; + top: 0px; + padding: 0px; + overflow: auto; + width: 171px; + border-bottom: 1px solid #555; +/* WARNING: do not fix height in % because it will display blank screens on IE6 */ +/* height: 100%;*/ + color: #000; /* colors can be overriden by js nickname colorization */ + background-color: #FFF; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_online.png'); ?>"); + background-position: left; + background-repeat: repeat-y; + /* borders are drawn by the javascript routines */ +} +div.pfc_online ul { + list-style-type: none; + margin: 0px; + padding: 0px; + margin-left: 8px; + margin-right: 8px; +} +div.pfc_online li { + font-weight: bold; + font-size: 12px; + cursor: pointer; + /* bottom borders are drawn by the javascript routines */ +} + +h2#pfc_title { + font-size: 110%; +} + +img#pfc_minmax { + float: right; +} + +.pfc_invisible { + display: none; +} + +.pfc_oddmsg { + background-color: #fff; + color: #000; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_message1.png'); ?>"); +} +.pfc_evenmsg { + background-color: #ccc; + color: #000; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_message2.png'); ?>"); +} + +div.pfc_message { + background-image: url("<?php echo $c->getFileUrlFromTheme('images/newmsg.png'); ?>"); + background-position: right; + background-repeat: no-repeat; +} + +div.pfc_oldmsg { + background-image: url("<?php echo $c->getFileUrlFromTheme('images/oldmsg.png'); ?>"); + background-position: right; + background-repeat: no-repeat; +} + +span.pfc_heure, span.pfc_date { + color: #333; + font-size: 90%; +} + +span.pfc_nick { + color: #fbac17; + font-weight: bold; + cursor:pointer; +} + +div#pfc_input_container { + margin-top: 5px; + font-size: 12px; +} +p#pfc_handle { display: none; } + +div#pfc_input_container td.pfc_td2 { + background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_words.png'); ?>"); + background-repeat: no-repeat; + padding-left: 5px; +} + +input#pfc_words { + border: 0px; + background-color: #FAFAFA; + width: 520px; + font-size: 12px; + height: 20px; + vertical-align: bottom; + font: 12px Trebuchet MS; +} + +input#pfc_send { + display: block; + margin-left: 5px; + padding-top: 2px; + width: 100px; + border: 0px; + background-color: #ccc; + font: 12px Trebuchet MS; + color: #333; + height: 24px; + cursor: pointer; + background-image: url("<?php echo $c->getFileUrlFromTheme('images/pfc_send.png'); ?>"); + cursor: pointer; +} + + + +div#pfc_cmd_container { + position: relative; + margin-top: 5px; + margin-bottom: 5px; + width: 100%; +} +div#pfc_cmd_container * { + margin-right: 2px; +} + + + +a#pfc_logo { + position: absolute; + right: 0px; + top: 0px; +} + +div.pfc_btn { + display: inline; + cursor: pointer; +} + +div#pfc_bbcode_container * { + margin-right: 2px; +} + +div#pfc_errors { + display: none; + padding: 5px; + border: 1px solid #555; + color: #EC4B0F; + background-color: #FFBB77; + font-style: italic; + font-family: monospace; + font-size: 90%; +} + +/* commands */ +.pfc_cmd_msg { + color: black; +} +.pfc_cmd_me { + font-style: italic; + color: black; +} +/*notice messages, login,logout,timed out etc..*/ +.pfc_cmd_notice { + font-style: italic; + color: #333; +} + +/* commands info */ +.pfc_info { + color: #fefefe; + + /* to fix IE6 display bug */ + /* http://sourceforge.net/tracker/index.php?func=detail&aid=1545403&group_id=158880&atid=809601 */ + font-family: sans-serif; /* do NOT setup monospace font or it will not work in IE6 */ + font-style: italic; + background-color: #EEE; + font-size: 80%; +} + + +div#pfc_colorlist { + display: none; +} +img.pfc_color { + padding: 1px; + cursor: pointer; +} + +.pfc_nickmarker { + white-space: pre; + +} + +div#pfc_smileys { + display: none; /* will be shown by javascript routines */ + background-color: #FFF; + border: 1px solid #555; + padding: 4px; + margin-top: 4px; +} +div#pfc_smileys * { + margin-right: 2px; +} + +div#pfc_smileys img { + cursor: pointer; +} + + + +div.pfc_nickwhois * { padding: 0; margin: 0; } +div.pfc_nickwhois a img { border: none; } +div.pfc_nickwhois { + border: 1px solid #444; + background-color: #FFF; + font-size: 75%; +} +div.pfc_nickwhois ul { + list-style-type: none; + background-color: #EEE; + border-bottom: 1px solid #444; +} +div.pfc_nickwhois li { + display: inline; + margin-right: 4px; + padding: 2px; +} +td.pfc_nickwhois_c1 { + font-weight: bold; +} +li.pfc_nickwhois_pv { + padding-left: 2px; + border-left: 1px solid #444; +} +li.pfc_nickwhois_pv a { + text-decoration: none; +} + +ul.pfc_nicklist span.pfc_nickmarker { +} + +img.pfc_nickbutton { + cursor: pointer; +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |