forked from extern/egroupware
update css
This commit is contained in:
parent
fe749bb211
commit
b39153b709
@ -16,13 +16,13 @@
|
||||
{phpgw_head_tags}
|
||||
</HEAD>
|
||||
<BODY {phpgw_body_tags}>
|
||||
<TABLE border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">
|
||||
<TABLE width="100%" height="100%" cellspacing="0" cellpadding="0">
|
||||
<TR>
|
||||
<TD width="100%" height="{phpgw_top_table_height}" align="left" valign="top" colspan="3">{phpgw_top}</TD>
|
||||
<TD width="100%" valign="top" colspan="3">{phpgw_top}</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="{phpgw_left_table_width}" height="{phpgw_body_table_height}" align="left" valign="top">{phpgw_left}</TD>
|
||||
<TD width="{phpgw_body_table_width}" height="{phpgw_body_table_height}" align="left" valign="top">
|
||||
<TD width="{phpgw_left_table_width}" height="{phpgw_body_table_height}" valign="top">{phpgw_left}</TD>
|
||||
<TD width="{phpgw_body_table_width}" height="{phpgw_body_table_height}" valign="top">
|
||||
{phpgw_msgbox}
|
||||
<!-- END phpgw_main_tables_start -->
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
<xsl:call-template name="phpgw_left"/>
|
||||
</td>
|
||||
<td width="{$phpgw_body_table_width}" height="{$phpgw_body_table_height}" valign="top">
|
||||
<xsl:call-template name="phpgw_msg_box"/>
|
||||
<xsl:call-template name="msgbox"/>
|
||||
<xsl:call-template name="phpgw_body"/>
|
||||
</td>
|
||||
<td width="{$phpgw_right_table_width}" height="{$phpgw_body_table_height}" align="right" valign="top">
|
||||
|
@ -13,6 +13,10 @@ a:hover
|
||||
color: #cc0000;
|
||||
}
|
||||
|
||||
.info
|
||||
{
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.login,.portal,.about
|
||||
{
|
||||
|
@ -34,6 +34,42 @@ a.th,a.th_text
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.top_top
|
||||
{
|
||||
background: url(../images/em.png);
|
||||
height: 58;
|
||||
}
|
||||
|
||||
.top_bottom
|
||||
{
|
||||
background: url(../images/top_spacer_middle.png);
|
||||
height: 15;
|
||||
}
|
||||
|
||||
.info
|
||||
{
|
||||
color: #FFFFFF;
|
||||
font-size: 85%;
|
||||
}
|
||||
|
||||
.left
|
||||
{
|
||||
width: 154;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
td.left
|
||||
{
|
||||
background: url(../images/nav_bar_left_spacer.png);
|
||||
}
|
||||
|
||||
.bottom
|
||||
{
|
||||
background: url(../images/em_bottom.png);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
table.portal
|
||||
{
|
||||
width: 100%;
|
||||
|
@ -10,24 +10,16 @@
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_top_table_height','10%');
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_top_frame_height','90');
|
||||
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_left_table_width','5%');
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_left_frame_width','165');
|
||||
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_body_table_height','85%');
|
||||
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_table_height','5%');
|
||||
$GLOBALS['phpgw']->template->set_var('phpgw_bottom_frame_height','30');
|
||||
|
||||
|
||||
function parse_toppart($output)
|
||||
{
|
||||
{
|
||||
$GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
|
||||
$GLOBALS['phpgw']->template->set_block('parts','top_part');
|
||||
$var['img_root'] = PHPGW_IMAGES_DIR;
|
||||
$var['table_bg_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
|
||||
|
||||
$find_single = strrpos($GLOBALS['phpgw_info']['server']['webserver_url'],'/');
|
||||
$find_double = strpos(strrev($GLOBALS['phpgw_info']['server']['webserver_url'].' '),'//');
|
||||
@ -93,23 +85,9 @@
|
||||
$var['about_img_hover'] = $GLOBALS['phpgw']->common->image('phpgwapi','question_mark2');
|
||||
}
|
||||
|
||||
$var['em_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','em');
|
||||
$var['logo_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','logo2');
|
||||
$var['top_spacer_middle_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','top_spacer_middle');
|
||||
|
||||
// "powered_by_color" and "_size" are is also used by number of current users thing
|
||||
$var['powered_by_size'] = '2';
|
||||
$var['powered_by_color'] = '#ffffff';
|
||||
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
|
||||
{
|
||||
$var['powered_by'] = lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
|
||||
$GLOBALS['phpgw']->template->set_var($var);
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['powered_by'] = '';
|
||||
$GLOBALS['phpgw']->template->set_var($var);
|
||||
}
|
||||
|
||||
if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
|
||||
{
|
||||
@ -132,8 +110,6 @@
|
||||
lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
|
||||
. $GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
|
||||
$var['user_info'] = $var['user_info_name'] .' - ' .$var['user_info_date'];
|
||||
$var['user_info_size'] = '2';
|
||||
$var['user_info_color'] = '#000000';
|
||||
|
||||
$GLOBALS['phpgw']->template->set_var($var);
|
||||
$GLOBALS['phpgw']->template->fp($output,'top_part');
|
||||
@ -144,7 +120,6 @@
|
||||
$GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
|
||||
$GLOBALS['phpgw']->template->set_block('parts','left_part');
|
||||
$applications = '';
|
||||
$var['nav_bar_left_spacer_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','nav_bar_left_spacer');
|
||||
while ($app = each($GLOBALS['phpgw_info']['navbar']))
|
||||
{
|
||||
if ($app[1]['title'] != 'Home' && $app[1]['title'] != 'preferences' && !ereg('About',$app[1]['title']) && $app[1]['title'] != 'Logout')
|
||||
@ -154,7 +129,7 @@
|
||||
$img_src_over = $app[1]['icon_hover'];
|
||||
$img_src_out = $app[1]['icon'];
|
||||
|
||||
$applications .= '<tr><td background="'.$var['nav_bar_left_spacer_img'].'"><a href="' . $app[1]['url'] . '"';
|
||||
$applications .= '<tr><td class="left"><a href="' . $app[1]['url'] . '"';
|
||||
if (isset($GLOBALS['phpgw_info']['flags']['navbar_target']))
|
||||
{
|
||||
$applications .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
@ -200,22 +175,11 @@
|
||||
$GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
|
||||
$GLOBALS['phpgw']->template->set_block('parts','bottom_part');
|
||||
|
||||
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'bottom')
|
||||
{
|
||||
$var = Array(
|
||||
'powered' => lang('Powered by phpGroupWare version x', $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
|
||||
'img_root' => PHPGW_IMAGES_DIR,
|
||||
'power_backcolor' => $GLOBALS['phpgw_info']['theme']['navbar_bg'],
|
||||
'power_textcolor' => $GLOBALS['phpgw_info']['theme']['navbar_text']
|
||||
// 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
|
||||
);
|
||||
$var['top_spacer_middle_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','top_spacer_middle');
|
||||
$var['em_bottom_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','em_bottom');
|
||||
$GLOBALS['phpgw']->template->set_var($var);
|
||||
$GLOBALS['phpgw']->template->fp($output,'bottom_part');
|
||||
}
|
||||
else
|
||||
{
|
||||
$GLOBALS['phpgw']->template->set_var($output,'');
|
||||
}
|
||||
$var = Array
|
||||
(
|
||||
'powered' => lang('Powered by phpGroupWare version x', $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
|
||||
);
|
||||
$var['top_spacer_middle_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','top_spacer_middle');
|
||||
$GLOBALS['phpgw']->template->set_var($var);
|
||||
$GLOBALS['phpgw']->template->fp($output,'bottom_part');
|
||||
}
|
||||
|
@ -1,41 +1,25 @@
|
||||
<!-- BEGIN top_part -->
|
||||
<table border="0" width="100%" height="73" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<table width="100%" height="73" cellspacing="0" cellpadding="0">
|
||||
<tr class="top_top">
|
||||
<!-- top row back images are 58px high, but the row may be smaller than that -->
|
||||
<!-- row 2 images are 15 px high, so this table with these 2 rows is 58 plus 15 equals 73px high -->
|
||||
<td width="5%" height="58" align="left" valign="top" background="{em_img}" nowrap>
|
||||
<img src="{logo_img}">
|
||||
<td width="154" valign="top">
|
||||
<img src="{logo_img}" border="0">
|
||||
</td>
|
||||
<td width="100%" align="right" background="{em_img}">
|
||||
<table width="100%" height="28" cellpadding="0" cellspacing="0" border="0" valign="top">
|
||||
<td valign="bottom">
|
||||
<table width="100%" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<!-- <td width="100%" align="right" valign="top"><font size="{powered_by_size}" color="{powered_by_color}">{powered_by} {current_users}</font></td> -->
|
||||
<td width="50%" align="left" valign="top">
|
||||
<font size="{powered_by_size}" color="{powered_by_color}">{current_users} </font>
|
||||
</td>
|
||||
<td width="50%" align="right" valign="top">
|
||||
<font size="{powered_by_size}" color="{powered_by_color}"> {powered_by}</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" height="29" cellpadding="0" cellspacing="0" border="0" valign="bottom">
|
||||
<tr>
|
||||
<td width="50%" align="left" valign="bottom">
|
||||
<font size="{user_info_size}" color="{user_info_color}">
|
||||
<strong>{user_info_name}</strong></font>
|
||||
</td>
|
||||
<td width="50%" align="right" valign="bottom">
|
||||
<font size="{user_info_size}" color="{user_info_color}">
|
||||
<strong>{user_info_date} </strong></font>
|
||||
</td>
|
||||
<td width="33%" class="info">{user_info_name}</td>
|
||||
<td width="33%" class="info">{current_users}</td>
|
||||
<td width="33%" class="info" align="right">{user_info_date}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" width="100%" height="15" align="right" valign="top" background="{top_spacer_middle_img}">
|
||||
<tr align="right" class="top_bottom">
|
||||
<td colspan="2">
|
||||
<!-- row 2 right nav buttons -->
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><a href="{home_link}" onMouseOver="nine.src='{welcome_img_hover}'" onMouseOut="nine.src='{welcome_img}'"><img src="{welcome_img}" border="0" name="nine"></a></td>
|
||||
<td><a href="{preferences_link}" onMouseOver="ten.src='{preferences_img_hover}'" onMouseOut="ten.src='{preferences_img}'"><img src="{preferences_img}" border="0" name="ten"></a></td>
|
||||
@ -49,11 +33,11 @@
|
||||
<!-- END top_part -->
|
||||
|
||||
<!-- BEGIN left_part -->
|
||||
<table border="0" width="154" height="100%" cellspacing="0" cellpadding="0">
|
||||
<table cellspacing="0" cellpadding="0" class="left">
|
||||
<tr>
|
||||
<td width="154" align="left" valign="top" background="{nav_bar_left_spacer_img}">
|
||||
<td valign="top">
|
||||
<!-- left nav table -->
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<!-- applications supplies their own tr's and td's -->
|
||||
{applications}
|
||||
<tr>
|
||||
@ -65,13 +49,10 @@
|
||||
</table>
|
||||
<!-- END left_part -->
|
||||
|
||||
|
||||
<!-- BEGIN bottom_part -->
|
||||
<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">
|
||||
<table cellspacing="0" cellpadding="0" class="bottom">
|
||||
<tr>
|
||||
<td align="center" background="{em_bottom_img}">
|
||||
<font color="{power_textcolor}">{powered}</font>
|
||||
</td>
|
||||
<td align="center" class="info">{powered}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- END bottom_part -->
|
||||
|
134
phpgwapi/templates/idsociety/phpgw.xsl
Normal file
134
phpgwapi/templates/idsociety/phpgw.xsl
Normal file
@ -0,0 +1,134 @@
|
||||
<!-- $Id$ -->
|
||||
|
||||
<xsl:template match="phpgw">
|
||||
<xsl:variable name="phpgw_css_path"><xsl:value-of select="phpgw_css_path"/></xsl:variable>
|
||||
<xsl:variable name="theme_css_path"><xsl:value-of select="theme_css_path"/></xsl:variable>
|
||||
<xsl:variable name="phpgw_charset"><xsl:value-of select="phpgw_charset"/></xsl:variable>
|
||||
<xsl:variable name="phpgw_onload"><xsl:value-of select="phpgw_onload"/></xsl:variable>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={$phpgw_charset}"/>
|
||||
<meta name="author" content="phpGroupWare http://www.phpgroupware.org"/>
|
||||
<meta name="description" content="phpGroupWare"/>
|
||||
<meta name="keywords" content="phpGroupWare"/>
|
||||
<meta name="robots" content="noindex"/>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-ico"/>
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<title><xsl:value-of select="phpgw_website_title"/></title>
|
||||
<xsl:apply-templates select="head_js"/>
|
||||
<link rel="stylesheet" type="text/css" href="{$phpgw_css_path}">
|
||||
<link rel="stylesheet" type="text/css" href="{$theme_css_path}">
|
||||
</head>
|
||||
<body onLoad="{$phpgw_onload}">
|
||||
<table width="100%" height="100%" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
<!-- BEGIN top_part -->
|
||||
<table width="100%" height="73" cellspacing="0" cellpadding="0">
|
||||
<tr class="top_top">
|
||||
<!-- top row back images are 58px high, but the row may be smaller than that -->
|
||||
<!-- row 2 images are 15 px high, so this table with these 2 rows is 58 plus 15 equals 73px high -->
|
||||
<td width="154" valign="top">
|
||||
<img src="{logo_img}" border="0">
|
||||
</td>
|
||||
<td valign="bottom">
|
||||
<table width="100%" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td width="33%" class="info">{user_info_name}</td>
|
||||
<td width="33%" class="info">{current_users}</td>
|
||||
<td width="33%" class="info" align="right">{user_info_date}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr align="right" class="top_bottom">
|
||||
<td colspan="2">
|
||||
<!-- row 2 right nav buttons -->
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><a href="{home_link}" onMouseOver="nine.src='{welcome_img_hover}'" onMouseOut="nine.src='{welcome_img}'"><img src="{welcome_img}" border="0" name="nine"></a></td>
|
||||
<td><a href="{preferences_link}" onMouseOver="ten.src='{preferences_img_hover}'" onMouseOut="ten.src='{preferences_img}'"><img src="{preferences_img}" border="0" name="ten"></a></td>
|
||||
<td><a href="{logout_link}" onMouseOver="eleven.src='{logout_img_hover}'" onMouseOut="eleven.src='{logout_img}'"><img src="{logout_img}" border="0" name="eleven"></a></td>
|
||||
<td><a href="{help_link}" onMouseOver="help.src='{about_img_hover}'" onMouseOut="help.src='{about_img}'"><img src="{about_img}" border="0" name="help"></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- END top_part -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="10%" height="85%" valign="top">
|
||||
<xsl:call-template name="phpgw_left"/>
|
||||
</td>
|
||||
<td width="80%" height="85%" valign="top">
|
||||
<xsl:call-template name="msgbox"/>
|
||||
<xsl:call-template name="phpgw_body"/>
|
||||
</td>
|
||||
<td width="10%" height="85%" align="right" valign="top">
|
||||
<xsl:apply-templates select="phpgw_right"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" height="5%" colspan="3">
|
||||
<!-- BEGIN bottom_part -->
|
||||
<table cellspacing="0" cellpadding="0" class="bottom">
|
||||
<tr>
|
||||
<td align="center" valign="middle" class="info">{powered}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- END bottom_part -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="head_js">
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
<xsl:text>
|
||||
function MM_swapImgRestore()
|
||||
{ //v3.0
|
||||
var i,x,a=document.MM_sr;
|
||||
for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++)
|
||||
x.src=x.oSrc;
|
||||
}
|
||||
function MM_preloadImages()
|
||||
{ //v3.0
|
||||
var d=document; if(d.images)
|
||||
{
|
||||
if(!d.MM_p)
|
||||
d.MM_p=new Array();
|
||||
var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
|
||||
for(i=0; i<a.length; i++)
|
||||
if (a[i].indexOf("#")!=0)
|
||||
{
|
||||
d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
function MM_findObj(n, d)
|
||||
{ //v4.0
|
||||
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
|
||||
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
|
||||
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
|
||||
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
|
||||
if(!x && document.getElementById) x=document.getElementById(n); return x;
|
||||
}
|
||||
function MM_swapImage() { //v3.0
|
||||
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
|
||||
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
|
||||
}
|
||||
|
||||
function multiLoad(top_doc,left_doc,body_doc,right_doc,bottom_doc) {
|
||||
if(top_doc != null){ parent.top.location.href=top_doc; }
|
||||
if(left_doc != null){ parent.left.location.href=left_doc; }
|
||||
if(body_doc != null){ parent.body.location.href=body_doc; }
|
||||
if(right_doc != null){ parent.right.location.href=right_doc; }
|
||||
if(bottom_doc != null){ parent.bottom.location.href=bottom_doc; }
|
||||
}
|
||||
</xsl:text>
|
||||
</script>
|
||||
</xsl:template>
|
Loading…
Reference in New Issue
Block a user