forked from extern/egroupware
update css
This commit is contained in:
parent
a102ba435d
commit
b93e93b33e
@ -94,7 +94,7 @@
|
||||
$this->output = array
|
||||
(
|
||||
'title' => $this->getvar('title'),
|
||||
'header_background_image' => $GLOBALS['phpgw']->common->image('phpgwapi/templates/default','bg_filler.png')
|
||||
'space' => ' '
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,10 @@
|
||||
<!-- $Id$ -->
|
||||
|
||||
<xsl:template match="portal">
|
||||
<xsl:variable name="outer_width"><xsl:value-of select="outer_width"/></xsl:variable>
|
||||
<xsl:variable name="header_background_image"><xsl:value-of select="header_background_image"/></xsl:variable>
|
||||
<xsl:variable name="inner_width"><xsl:value-of select="inner_width"/></xsl:variable>
|
||||
<table cellpadding="0" cellspacing="0" class="portal">
|
||||
<tr>
|
||||
<td align="center" class="portal_text">
|
||||
<td class="portal_text">
|
||||
<xsl:value-of disable-output-escaping="yes" select="space"/>
|
||||
<xsl:value-of select="title"/>
|
||||
</td>
|
||||
<td valign="middle" align="right" class="portal_text">
|
||||
@ -16,23 +14,34 @@
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table cellpadding="3" cellspacing="0" class="portal">
|
||||
<tr>
|
||||
<td>
|
||||
<xsl:choose>
|
||||
<xsl:when test="listbox">
|
||||
<tr>
|
||||
<td>
|
||||
<ul>
|
||||
<xsl:apply-templates select="listbox"/>
|
||||
</ul>
|
||||
</xsl:when>
|
||||
<xsl:when test="extrabox">
|
||||
<xsl:value-of disable-output-escaping="yes" select="extrabox"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="extrabox"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="extrabox">
|
||||
<tr>
|
||||
<td>
|
||||
<xsl:value-of disable-output-escaping="yes" select="extrabox"/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<tr>
|
||||
<td>
|
||||
<xsl:call-template name="extrabox"/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user