NIHVIVO-336 Create StartupStatusDisplayFilter which will forcibly display the StartupStatus if there are warnings or errors.

This commit is contained in:
j2blake 2011-09-23 18:53:36 +00:00
parent e6b4238019
commit 39dc9736a2
3 changed files with 184 additions and 0 deletions

View file

@ -0,0 +1,28 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
/* Styles for Freemarker template startupStatus-display and startupStatus-displayRaw */
table.item {
border: thin solid black;
font-family: monospace;
width: 100%;
}
table.item tr.top {
font-size: larger;
}
table.item td {
border: thin solid black;
}
.error td {
background: #FFDDDD;
font-weight: bolder;
}
.warning td {
background: #FFFFDD;
}
.info td {
background: #DDFFDD;
}
.not_executed td {
color: #444444;
}