mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
update tpl
This commit is contained in:
parent
1a01f33308
commit
6fa67e867b
@ -25,26 +25,9 @@
|
||||
|
||||
$setup_info['admin']['maintainer'][] = array
|
||||
(
|
||||
'name' => 'Joseph Engo',
|
||||
'email' => 'jengo@phpgroupware.org'
|
||||
);
|
||||
|
||||
$setup_info['admin']['maintainer'][] = array
|
||||
(
|
||||
'name' => 'Marc A. Peters',
|
||||
'email' => 'skeeter@phpgroupware.org'
|
||||
);
|
||||
|
||||
$setup_info['admin']['maintainer'][] = array
|
||||
(
|
||||
'name' => 'Bettina Gille',
|
||||
'email' => 'ceb@phpgroupware.org'
|
||||
);
|
||||
|
||||
$setup_info['admin']['maintainer'][] = array
|
||||
(
|
||||
'name' => 'Dan Kuykendall',
|
||||
'email' => 'seek3r@phpgroupware.org'
|
||||
'name' => 'phpGroupWare coreteam',
|
||||
'email' => 'phpgroupware-developers@gnu.org',
|
||||
'url' => 'www.phpgroupware.org/coredevelopers'
|
||||
);
|
||||
|
||||
$setup_info['admin']['license'] = 'GPL';
|
||||
|
@ -51,7 +51,7 @@
|
||||
<xsl:variable name="app_icon" select="app_icon"/>
|
||||
<xsl:variable name="app_title" select="app_title"/>
|
||||
<xsl:variable name="app_name" select="app_name"/>
|
||||
<tr class="th">
|
||||
<tr class="th_bright">
|
||||
<td width="5%" valign="middle"><img src="{$app_icon}" alt="{$app_title}" name="{$app_title}"/></td>
|
||||
<td width="95%" valign="middle" class="th_text"><xsl:value-of select="app_title"/></td>
|
||||
</tr>
|
||||
@ -62,8 +62,8 @@
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="app_row_noicon">
|
||||
<tr class="th">
|
||||
<td height="20" colspan="2" width="100%" valign="bottom" class="th_text"> <xsl:value-of select="app_title"/></td>
|
||||
<tr class="th_bright">
|
||||
<td colspan="2" width="100%" class="th_text"> <xsl:value-of select="app_title"/></td>
|
||||
</tr>
|
||||
<xsl:apply-templates select="link_row"/>
|
||||
<tr>
|
||||
|
@ -32,7 +32,26 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="15"> </td>
|
||||
<td height="15"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%" class="th_text">
|
||||
<xsl:value-of select="lang_layout"/>
|
||||
</td>
|
||||
<td class="th_text">
|
||||
<xsl:value-of select="name_layout"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20%" valign="top">
|
||||
<xsl:value-of select="lang_author"/>
|
||||
</td>
|
||||
<td>
|
||||
<xsl:apply-templates select="layout"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="15"> </td>
|
||||
</tr>
|
||||
<xsl:apply-templates select="about_app"/>
|
||||
</table>
|
||||
@ -112,7 +131,21 @@
|
||||
<xsl:variable name="email"><xsl:value-of select="email"/></xsl:variable>
|
||||
<table>
|
||||
<tr>
|
||||
<td><xsl:value-of select="name"/><xsl:text> [</xsl:text><a href="mailto:{$email}"><xsl:value-of select="email"/></a><xsl:text>]</xsl:text></td>
|
||||
<td>
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><xsl:value-of select="name"/></td>
|
||||
<td><xsl:text> [</xsl:text><a href="mailto:{$email}"><xsl:value-of select="email"/></a><xsl:text>]</xsl:text></td>
|
||||
</tr>
|
||||
<xsl:if test="url != ''">
|
||||
<xsl:variable name="url"><xsl:value-of select="url"/></xsl:variable>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> [<a href="http://{$url}" target="_blank"><xsl:value-of select="url"/></a>]</td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</xsl:template>
|
||||
@ -141,3 +174,26 @@
|
||||
</tr>
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="layout">
|
||||
<xsl:variable name="email"><xsl:value-of select="email"/></xsl:variable>
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><xsl:value-of select="name"/></td>
|
||||
<td><xsl:text> [</xsl:text><a href="mailto:{$email}"><xsl:value-of select="email"/></a><xsl:text>]</xsl:text></td>
|
||||
</tr>
|
||||
<xsl:if test="url != ''">
|
||||
<xsl:variable name="url"><xsl:value-of select="url"/></xsl:variable>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> [<a href="http://{$url}" target="_blank"><xsl:value-of select="url"/></a>]</td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
@ -8,6 +8,11 @@ body
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
table.left_app
|
||||
{
|
||||
border-color: #660000;
|
||||
}
|
||||
|
||||
.top_top
|
||||
{
|
||||
background-color: #FF3300
|
||||
@ -33,7 +38,7 @@ td.left
|
||||
background-color: #0000A0;
|
||||
}
|
||||
|
||||
.user_info
|
||||
.user_info,.date
|
||||
{
|
||||
background-color: #FF3300;
|
||||
color: #FFFFFF;
|
||||
|
@ -8,6 +8,11 @@ body
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
table.left_app
|
||||
{
|
||||
border-color: #FFCCCC;
|
||||
}
|
||||
|
||||
.top_top
|
||||
{
|
||||
background-color: #999999;
|
||||
@ -33,7 +38,7 @@ td.left
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
.user_info
|
||||
.user_info,.date
|
||||
{
|
||||
background-color: #ADADAD;
|
||||
color: #FFFFFF;
|
||||
@ -76,14 +81,14 @@ a:hover.left,a:link.left_selected,a:active.left_selected,a:visited.left_selected
|
||||
.login,.portal,.about
|
||||
{
|
||||
background-color: #ADADAD;
|
||||
border-color: #000000;
|
||||
border-color: #FF3300;
|
||||
}
|
||||
|
||||
a.portal_text,.portal_text
|
||||
{
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
background-color: #000066;
|
||||
background-color: #FF3300;
|
||||
}
|
||||
|
||||
a:hover.portal_text
|
||||
|
152
phpgwapi/templates/funkwerk/css/mit2.css
Normal file
152
phpgwapi/templates/funkwerk/css/mit2.css
Normal file
@ -0,0 +1,152 @@
|
||||
body,p,td,th,table,input,form,option
|
||||
{
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
.top_top
|
||||
{
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
.top_bottom
|
||||
{
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
td.left
|
||||
{
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
.left_app
|
||||
{
|
||||
background-color: #FF3300;
|
||||
}
|
||||
|
||||
.top_menu
|
||||
{
|
||||
background-color: #FF3300;
|
||||
}
|
||||
|
||||
.user_info
|
||||
{
|
||||
background-color: #FF3300;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.date
|
||||
{
|
||||
background-color: #ADADAD;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.admin_info,a:link.admin_info,a:active.admin_info,a:visited.admin_info,a:hover.admin_info
|
||||
{
|
||||
background-color: #999999;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.bottom
|
||||
{
|
||||
color: #FFFFFF;
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
a:link,a:active,a:visited,a:hover
|
||||
{
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
a:link.bottom,a:active.bottom,a:visited.bottom,a:hover.bottom,a:link.top_menu,a:active.top_menu,a:visited.top_menu,a:link.left,a:active.left,a:visited.left
|
||||
{
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
a:hover.top_menu,a:link.top_menu_selected,a:active.top_menu_selected,a:visited.top_menu_selected,a:hover.top_menu_selected
|
||||
{
|
||||
color: #990000;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
a:hover.left,a:link.left_selected,a:active.left_selected,a:visited.left_selected,a:hover.left_selected
|
||||
{
|
||||
color: #990000;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.login,.portal,.about
|
||||
{
|
||||
background-color: #ADADAD;
|
||||
border-color: #990000;
|
||||
}
|
||||
|
||||
table.left_app
|
||||
{
|
||||
border-color: #990000;
|
||||
}
|
||||
|
||||
a.portal_text,.portal_text
|
||||
{
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
a:hover.portal_text
|
||||
{
|
||||
text-decoration: underline;
|
||||
color: #660000;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
.row_on,.app_header
|
||||
{
|
||||
background-color: #ADADAD;
|
||||
}
|
||||
|
||||
.th_bright
|
||||
{
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.msgbox
|
||||
{
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.row_off
|
||||
{
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
.th
|
||||
{
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
.th_text
|
||||
{
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.cal_today
|
||||
{
|
||||
background-color: #ffffcc;
|
||||
}
|
||||
|
||||
.cal_dayview
|
||||
{
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
.email_folder
|
||||
{
|
||||
background-color: #adadad;
|
||||
color: #ffffff;
|
||||
}
|
@ -23,11 +23,40 @@ table
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
table.portal
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.about
|
||||
{
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
table.login
|
||||
{
|
||||
margin-top: 130px;
|
||||
width: 40%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table.left_app
|
||||
{
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
td.alarm
|
||||
{
|
||||
color: #FF3300;
|
||||
}
|
||||
|
||||
td.left
|
||||
{
|
||||
height: 30;
|
||||
width: 131;
|
||||
}
|
||||
|
||||
a:link,a:visited,a:active
|
||||
{
|
||||
text-decoration: none;
|
||||
@ -69,35 +98,12 @@ a.th,a.th_text
|
||||
height: 30;
|
||||
}
|
||||
|
||||
td.left
|
||||
{
|
||||
height: 30;
|
||||
width: 131;
|
||||
}
|
||||
|
||||
.bottom
|
||||
{
|
||||
width: 100%;
|
||||
height: 5%;
|
||||
}
|
||||
|
||||
table.portal
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.about
|
||||
{
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
table.login
|
||||
{
|
||||
margin-top: 130px;
|
||||
width: 40%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login,.portal,.about,.msgbox
|
||||
{
|
||||
border-width: 1px;
|
||||
|
@ -8,6 +8,11 @@ body
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
table.left_app
|
||||
{
|
||||
border-color: #000000;
|
||||
}
|
||||
|
||||
.top_top
|
||||
{
|
||||
background-color: #0000A0;
|
||||
@ -33,7 +38,7 @@ td.left
|
||||
background-color: #0000A0;
|
||||
}
|
||||
|
||||
.user_info
|
||||
.user_info,.date
|
||||
{
|
||||
background-color: #0000A0;
|
||||
color: #FFFFFF;
|
||||
|
@ -78,7 +78,7 @@
|
||||
<td class="admin_info"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<td height="30" width="19%" class="user_info" align="right" valign="bottom">[<xsl:value-of select="user_info_date"/>]</td>
|
||||
<td height="30" width="19%" class="date" align="right" valign="bottom">[<xsl:value-of select="user_info_date"/>]</td>
|
||||
</tr>
|
||||
<tr align="right" height="30">
|
||||
<td colspan="4" class="top_bottom">
|
||||
|
Loading…
Reference in New Issue
Block a user