diff options
author | Christian Hofmaier | 2019-01-08 11:20:36 +0100 |
---|---|---|
committer | Christian Hofmaier | 2019-01-08 11:20:36 +0100 |
commit | 9f2c37c52c64711b86ca53f910a465513df84ea6 (patch) | |
tree | 93685c1672b5f2909cdf0854992ba7fdd9bc3a4e /modules-available | |
parent | [inc/Util] Improve prettyTime year cutoff logic (diff) | |
download | slx-admin-9f2c37c52c64711b86ca53f910a465513df84ea6.tar.gz slx-admin-9f2c37c52c64711b86ca53f910a465513df84ea6.tar.xz slx-admin-9f2c37c52c64711b86ca53f910a465513df84ea6.zip |
[locationinfo] make colors consistent for summary and default panel
- black is now status 'offline'
- grey is now status 'broken'
Diffstat (limited to 'modules-available')
-rw-r--r-- | modules-available/locationinfo/templates/frontend-summary.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules-available/locationinfo/templates/frontend-summary.html b/modules-available/locationinfo/templates/frontend-summary.html index ecb41467..95299e63 100644 --- a/modules-available/locationinfo/templates/frontend-summary.html +++ b/modules-available/locationinfo/templates/frontend-summary.html @@ -82,7 +82,8 @@ } .pc-offline { - background-color: darkgrey; + background-color: black; + color: white; } .pc-standby { @@ -91,8 +92,7 @@ .pc-broken { - background-color: black; - color: white; + background-color: darkgrey; border-radius: 0px 3px 3px 0px; } |