diff --git a/web/zm_html_view_console.php b/web/zm_html_view_console.php
index 4b292cb2b..d6acd249f 100644
--- a/web/zm_html_view_console.php
+++ b/web/zm_html_view_console.php
@@ -207,10 +207,6 @@ window.setTimeout( "window.location.replace('= $PHP_SELF ?>')", = ($start||$
{
$fclass = "redtext";
}
- elseif ( $monitor['RunMode'] == 'Triggered' )
- {
- $fclass = "blutext";
- }
elseif ( $monitor['Function'] == 'Monitor' )
{
$fclass = "ambtext";
@@ -219,6 +215,10 @@ window.setTimeout( "window.location.replace('= $PHP_SELF ?>')", = ($start||$
{
$fclass = "gretext";
}
+ if ( $monitor['RunMode'] == 'Triggered' )
+ {
+ $fclass .= "em";
+ }
?>
= makeLink( "javascript: newWindow( '$PHP_SELF?view=watch&mid=$monitor[Id]', 'zmWatch$monitor[Name]', ".($monitor[Width]+$jws['watch']['w']).", ".($monitor[Height]+$jws['watch']['h'])." );", $monitor[Name], canView( 'Stream' ) ) ?> |
= makeLink( "javascript: newWindow( '$PHP_SELF?view=function&mid=$monitor[Id]', 'zmFunction', ".$jws['function']['w'].", ".$jws['function']['h']." );", "$monitor[Function]", canEdit( 'Monitors' ) ) ?> |
diff --git a/web/zm_styles.css b/web/zm_styles.css
index 881e32514..dbe3d0670 100644
--- a/web/zm_styles.css
+++ b/web/zm_styles.css
@@ -27,25 +27,40 @@
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color: #DC143C;
- font-weight: bold
+ font-weight: bold;
}
.ambtext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color: #FF8C00;
- font-weight: bold
-}
-.blutext {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size:10px;
- color: #48D1CC;
- font-weight: bold
+ font-weight: bold;
}
.gretext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color: #688E23;
- font-weight: bold
+ font-weight: bold;
+}
+.redtextem {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size:10px;
+ color: #DC143C;
+ font-weight: bold;
+ font-style: italic;
+}
+.ambtextem {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size:10px;
+ color: #FF8C00;
+ font-weight: bold;
+ font-style: italic;
+}
+.gretextem {
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size:10px;
+ color: #688E23;
+ font-weight: bold;
+ font-style: italic;
}
.smallhead {
font-family: Verdana, Arial, Helvetica, sans-serif;