[Frontend] Style and display changes to status block

open #159
open #170
Refined structure in status block markup and css;
Added status-related color constants to theme scss files;
This commit is contained in:
Charles Hacskaylo
2015-10-02 17:42:31 -07:00
parent 7014808c13
commit 926aed72c3
6 changed files with 117 additions and 59 deletions

View File

@@ -60,6 +60,12 @@ $colorInputIcon: pushBack($colorBodyFg, 25%);
$colorSelectBg: #ddd;
$colorSelectFg: $colorBodyFg;
// Status colors, mainly used for messaging and item ancillary symbols
$colorStatusDefault: #ccc;
$colorStatusOk: #090;
$colorStatusCaution: #fa0;
$colorStatusAlert: $colorAlert;
// Limits and staleness colors//
$colorTelemFresh: pullForward($colorBodyFg, 20%);
$colorTelemStale: pushBack($colorBodyFg, 20%);