Fixed background filler not showing up in IE, created better logo and logos that fit each theme
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 702 B |
BIN
phpgwapi/templates/verdilak/images/logo_000000.gif
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_000099.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_003300.gif
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_486591.gif
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_5A0000.gif
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_663366.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_80CCFF.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_885522.gif
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_967FF4.gif
Executable file
After Width: | Height: | Size: 1019 B |
BIN
phpgwapi/templates/verdilak/images/logo_990000.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
phpgwapi/templates/verdilak/images/logo_F7E58F.gif
Executable file
After Width: | Height: | Size: 1017 B |
@ -49,6 +49,15 @@
|
||||
}
|
||||
$tpl->set_var('applications',$applications);
|
||||
|
||||
if ($phpgw_info['theme']['special_logo'])
|
||||
{
|
||||
$tpl->set_var('logo',$phpgw_info['theme']['special_logo']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$tpl->set_var('logo','logo.gif');
|
||||
}
|
||||
|
||||
$tpl->set_var('home_link',$phpgw_info['navbar']['home']['url']);
|
||||
$tpl->set_var('preferences_link',$phpgw_info['navbar']['preferences']['url']);
|
||||
$tpl->set_var('logout_link',$phpgw_info['navbar']['logout']['url']);
|
||||
|
@ -3,9 +3,9 @@
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="{table_bg_color}">
|
||||
<tr background="{img_root}/bg_filler.gif">
|
||||
<td align="left" valign="bottom"><a href="http://www.phpgroupware.org" target="_new"><img src="{img_root}/logo.gif" height="32" width="123" border="0" alt="phpGroupWare"></a></td>
|
||||
<td align="center" valign="bottom" width="100%"><font color="FFFFFF" size="-1">{user_info}</font></td>
|
||||
<td align="right" valign="bottom" rowspan="2" nowrap><a href="{home_link}"><img src="{welcome_img}" border="0" alt="Welcome"></a><a href="{preferences_link}"><img src="{preferences_img}" border="0" alt="Preferences"></a><a href="{logout_link}"><img src="{logout_img}" border="0" alt="Logout"></a><a href="{help_link}"><img src="{img_root}/help.gif" border="0" alt="Help"></a></td></tr>
|
||||
<td background="{img_root}/bg_filler.gif" align="left" valign="bottom"><a href="http://www.phpgroupware.org" target="_new"><img src="{img_root}/{logo}" border="0" alt="phpGroupWare"></a></td>
|
||||
<td background="{img_root}/bg_filler.gif" align="center" valign="bottom" width="100%"><font color="FFFFFF" size="-1">{user_info}</font></td>
|
||||
<td background="{img_root}/bg_filler.gif" align="right" valign="bottom" rowspan="2" nowrap><a href="{home_link}"><img src="{welcome_img}" border="0" alt="Welcome"></a><a href="{preferences_link}"><img src="{preferences_img}" border="0" alt="Preferences"></a><a href="{logout_link}"><img src="{logout_img}" border="0" alt="Logout"></a><a href="{help_link}"><img src="{img_root}/help.gif" border="0" alt="Help"></a></td></tr>
|
||||
<tr background="{img_root}/bg_filler.gif">
|
||||
<td align="center" width="100%" valign="bottom" colspan="2"><img src="{img_root}/greybar.jpg" height="6" width="100%" alt="bar"></td></tr>
|
||||
</table>
|
||||
|