svn path=/Website/trunk/; revision=5704

This commit is contained in:
Arthur Egberink
2012-02-29 11:21:50 +00:00
parent 5468e9807c
commit c73bcb9d84
4 changed files with 26 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
/*
* $Revision: 5 $
* $Modtime: 19-01-11 12:18 $
* $Revision: 6 $
* $Modtime: 29-02-12 13:21 $
*/
/* Connexxion bassikleuren:
@@ -77,7 +77,3 @@ li.mk {
div#besItemSel .fcltblockhead {
background-color: #D1EA32;
}
#headerlogout {
visibility: hidden;
}

View File

@@ -31,8 +31,11 @@
<table cellspacing="10">
<xsl:for-each select="notes/note">
<tr>
<td><xsl:value-of select="aanmaak/tijd"/></td>
<td><xsl:value-of select="omschrijving"/></td>
<td>
<xsl:call-template name="linebreaks">
<xsl:with-param name="string" select="omschrijving"/>
</xsl:call-template>
</td>
</tr>
</xsl:for-each>
</table>

View File

@@ -1,6 +1,6 @@
/*
* $Revision: 3 $
* $Modtime: 19-01-11 12:19 $
* $Revision: 4 $
* $Modtime: 24-11-11 10:45 $
*/
#headerblok
{
@@ -20,10 +20,6 @@ div.fcltframeheader {
color: #EEEEEE;
}
#headerlogout {
visibility: hidden;
}
.E td { background-color: #EEEEEE;
border:1px solid #FFFFFF;
}
@@ -38,3 +34,15 @@ div.fcltframeheader {
#editbody .fcltblockhead {
background-color:#D0D0D0;
}
input[readOnly], select[readOnly], textarea[readOnly] {
background-color: #F0F0F0;
}
input[readOnly]:hover, select[readOnly]:hover, textarea[readOnly]:hover {
background-color: #F8F8F8;
}
input[type=checkbox], input[type=radio]{
background-color: #F0F0F0;
}

View File

@@ -27,11 +27,13 @@ function stripHtml(html)
// verwijder html-tags
html = html.replace(/(<([^>]+)>)/ig,"");
//verwijder leading spaces and tabs
html = html.replace(/\n\r[ \t]+/g,"\n\r");
html = html.replace(/^[ \t]+/gm,"");
// verwijder lege regels
html = html.replace(/[\n\r]+/g,"\n\r");
html = html.replace(/[(\n\r)]+/g,"\n\r");
// zet een regel die begint met : maar achter de vorige
html = html.replace(/(\n\r:)/g,":");
return html;
}
}
function CreateFullPath(sPath)