mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-30 03:43:40 +01:00
added css entry for alarm
This commit is contained in:
parent
349d66a4d3
commit
e7b395ba4c
@ -23,6 +23,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active,a:hover
|
a:link,a:visited,a:active,a:hover
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -8,21 +8,21 @@
|
|||||||
<xsl:variable name="record_limit"><xsl:value-of select="record_limit"/></xsl:variable>
|
<xsl:variable name="record_limit"><xsl:value-of select="record_limit"/></xsl:variable>
|
||||||
<xsl:variable name="num_records"><xsl:value-of select="num_records"/></xsl:variable>
|
<xsl:variable name="num_records"><xsl:value-of select="num_records"/></xsl:variable>
|
||||||
<xsl:variable name="all_records"><xsl:value-of select="all_records"/></xsl:variable>
|
<xsl:variable name="all_records"><xsl:value-of select="all_records"/></xsl:variable>
|
||||||
<xsl:variable name="link_url"><xsl:value-of select="link_url"/></xsl:variable>
|
<xsl:variable name="nextmatchs_url"><xsl:value-of select="nextmatchs_url"/></xsl:variable>
|
||||||
<xsl:variable name="img_path"><xsl:value-of select="img_path"/></xsl:variable>
|
<xsl:variable name="nextmatchs_img_path"><xsl:value-of select="nextmatchs_img_path"/></xsl:variable>
|
||||||
|
|
||||||
<table border="0" width="100%">
|
<table border="0" width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="number($cur_record) > number(1)">
|
<xsl:when test="number($cur_record) > number(1)">
|
||||||
<xsl:variable name="first"><xsl:value-of select="link_url"/>&start=0</xsl:variable>
|
<xsl:variable name="first"><xsl:value-of select="nextmatchs_url"/>&start=0</xsl:variable>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<a href="{$first}"><img src="{$img_path}/first.png" border="2" width="12" height="12"/></a>
|
<a href="{$first}"><img src="{$nextmatchs_img_path}/first.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<img src="{$img_path}/first-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/first-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
@ -35,29 +35,29 @@
|
|||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="number($cur_record) - number($record_limit) > number(0)">
|
<xsl:when test="number($cur_record) - number($record_limit) > number(0)">
|
||||||
<xsl:variable name="prev_number"><xsl:value-of select="number($cur_record) - number($record_limit)"/></xsl:variable>
|
<xsl:variable name="prev_number"><xsl:value-of select="number($cur_record) - number($record_limit)"/></xsl:variable>
|
||||||
<xsl:variable name="prev"><xsl:value-of select="link_url"/>&start=<xsl:value-of select="number($prev_number) - number(1)"/></xsl:variable>
|
<xsl:variable name="prev"><xsl:value-of select="nextmatchs_url"/>&start=<xsl:value-of select="number($prev_number) - number(1)"/></xsl:variable>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<a href="{$prev}"><img src="{$img_path}/left.png" border="2" width="12" height="12"/></a>
|
<a href="{$prev}"><img src="{$nextmatchs_img_path}/left.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:variable name="prev"><xsl:value-of select="link_url"/>&start=0</xsl:variable>
|
<xsl:variable name="prev"><xsl:value-of select="nextmatchs_url"/>&start=0</xsl:variable>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<a href="{$prev}"><img src="{$img_path}/left-grey.png" border="2" width="12" height="12"/></a>
|
<a href="{$prev}"><img src="{$nextmatchs_img_path}/left-grey.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<img src="{$img_path}/left-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/left-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25">
|
<td width="25">
|
||||||
<img src="{$img_path}/left-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/left-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
@ -89,21 +89,21 @@
|
|||||||
<xsl:variable name="next_num"><xsl:value-of select="number($cur_record) + number($record_limit)"/></xsl:variable>
|
<xsl:variable name="next_num"><xsl:value-of select="number($cur_record) + number($record_limit)"/></xsl:variable>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="number($all_records) > number($next_num)-number(1)">
|
<xsl:when test="number($all_records) > number($next_num)-number(1)">
|
||||||
<xsl:variable name="next"><xsl:value-of select="link_url"/>&start=<xsl:value-of select="number($next_num) - number(1)"/></xsl:variable>
|
<xsl:variable name="next"><xsl:value-of select="nextmatchs_url"/>&start=<xsl:value-of select="number($next_num) - number(1)"/></xsl:variable>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<a href="{$next}"><img src="{$img_path}/right.png" border="2" width="12" height="12"/></a>
|
<a href="{$next}"><img src="{$nextmatchs_img_path}/right.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<img src="{$img_path}/right-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/right-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<img src="{$img_path}/right-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/right-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
@ -113,36 +113,36 @@
|
|||||||
<xsl:variable name="last_num"><xsl:value-of select="number($all_records)-number($record_limit)+number(1)"/></xsl:variable>
|
<xsl:variable name="last_num"><xsl:value-of select="number($all_records)-number($record_limit)+number(1)"/></xsl:variable>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="number($last_num) > number($cur_record)">
|
<xsl:when test="number($last_num) > number($cur_record)">
|
||||||
<xsl:variable name="last"><xsl:value-of select="link_url"/>&start=<xsl:value-of select="number($last_num)-number(1)"/></xsl:variable>
|
<xsl:variable name="last"><xsl:value-of select="nextmatchs_url"/>&start=<xsl:value-of select="number($last_num)-number(1)"/></xsl:variable>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<a href="{$last}"><img src="{$img_path}/last-grey.png" border="2" width="12" height="12"/></a>
|
<a href="{$last}"><img src="{$nextmatchs_img_path}/last-grey.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<img src="{$img_path}/last-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/last-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<img src="{$img_path}/last-grey.png" border="2" width="12" height="12"/>
|
<img src="{$nextmatchs_img_path}/last-grey.png" border="2" width="12" height="12"/>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="number($all_records) =1">
|
<xsl:when test="number($all_records) =1">
|
||||||
<xsl:variable name="all"><xsl:value-of select="link_url"/>&start=0</xsl:variable>
|
<xsl:variable name="all"><xsl:value-of select="nextmatchs_url"/>&start=0</xsl:variable>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<a href="{$all}"><img src="{$img_path}/down_nm.png" border="2" width="12" height="12"/></a>
|
<a href="{$all}"><img src="{$nextmatchs_img_path}/down_nm.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:variable name="all"><xsl:value-of select="link_url"/>&allrows=1</xsl:variable>
|
<xsl:variable name="all"><xsl:value-of select="nextmatchs_url"/>&allrows=1</xsl:variable>
|
||||||
<td width="25" align="right">
|
<td width="25" align="right">
|
||||||
<a href="{$all}"><img src="{$img_path}/down_nm.png" border="2" width="12" height="12"/></a>
|
<a href="{$all}"><img src="{$nextmatchs_img_path}/down_nm.png" border="2" width="12" height="12"/></a>
|
||||||
</td>
|
</td>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<!-- $Id$ -->
|
<!-- $Id$ -->
|
||||||
|
|
||||||
<xsl:template name="search_field">
|
<xsl:template name="search_field">
|
||||||
<xsl:variable name="select_action"><xsl:value-of select="select_action"/></xsl:variable>
|
<xsl:variable name="search_url"><xsl:value-of select="search_url"/></xsl:variable>
|
||||||
<xsl:variable name="query"><xsl:value-of select="query"/></xsl:variable>
|
<xsl:variable name="query"><xsl:value-of select="query"/></xsl:variable>
|
||||||
<xsl:variable name="lang_submit"><xsl:value-of select="lang_submit"/></xsl:variable>
|
<xsl:variable name="lang_search"><xsl:value-of select="lang_search"/></xsl:variable>
|
||||||
<form method="post" action="{$select_action}">
|
<form method="post" action="{$search_url}">
|
||||||
<input type="text" name="query" value="{$query}" onMouseout="window.status='';return true;">
|
<input type="text" name="query" value="{$query}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
<xsl:text> </xsl:text>
|
<xsl:text> </xsl:text>
|
||||||
<input type="submit" name="submit" value="{$lang_submit}" onMouseout="window.status='';return true;">
|
<input type="submit" name="submit" value="{$lang_search}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
<xsl:value-of select="lang_searchbutton_statustext"/>
|
<xsl:value-of select="lang_searchbutton_statustext"/>
|
||||||
|
@ -23,6 +23,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF3300;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active
|
a:link,a:visited,a:active
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -24,6 +24,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active,a:hover
|
a:link,a:visited,a:active,a:hover
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -23,6 +23,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active,a:hover
|
a:link,a:visited,a:active,a:hover
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -23,6 +23,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active,a:hover
|
a:link,a:visited,a:active,a:hover
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -23,6 +23,11 @@ table
|
|||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.alarm
|
||||||
|
{
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,a:visited,a:active,a:hover
|
a:link,a:visited,a:active,a:hover
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
Loading…
Reference in New Issue
Block a user