From 711a700d4756156255d4b47b445b4223f5c1893f Mon Sep 17 00:00:00 2001 From: That-Guy Date: Sat, 21 Apr 2012 13:02:51 +0200 Subject: [PATCH] stream status colors --- server.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server.html b/server.html index d5c8be19..84cc145a 100644 --- a/server.html +++ b/server.html @@ -204,12 +204,12 @@ tbody td.center line-height: 30px; } -.disconnected +.disconnected, .red { color: #cc3333; } -.connected +.connected, .green { color: #14991a; } @@ -1050,7 +1050,7 @@ td $tr.append( $('').text(cstr.name) ); - $tr.append( $('').text(cstr.online == 1 ? 'Running' : 'Error') ); + $tr.append( $('').html(cstr.online == 1 ? "Running" : "Error") ); var cviewers = 0;