diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2012-05-04 19:14:20 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2012-05-06 12:59:29 -0500 |
commit | e98693ada5d512e6c4a9dac40a30f5db554ead3d (patch) | |
tree | 413b69c54192d019c068f379a6289e66b0a9b643 /reports/site_media | |
parent | e7de8e63d9013e2f7d555255b08d05d7d2560a1f (diff) | |
download | bcfg2-e98693ada5d512e6c4a9dac40a30f5db554ead3d.tar.gz bcfg2-e98693ada5d512e6c4a9dac40a30f5db554ead3d.tar.bz2 bcfg2-e98693ada5d512e6c4a9dac40a30f5db554ead3d.zip |
reports: Add fine-grained filter for 'bad' clients
This filter introduces percentages which should help administrators to
quickly visually see where they should focus their time. The worse the
percentage of bad/total entries, the darker the color of the client.
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'reports/site_media')
-rw-r--r-- | reports/site_media/bcfg2_base.css | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/reports/site_media/bcfg2_base.css b/reports/site_media/bcfg2_base.css index d8066277c..d74c1b618 100644 --- a/reports/site_media/bcfg2_base.css +++ b/reports/site_media/bcfg2_base.css @@ -103,14 +103,36 @@ ul.menu-level2 { bottom: 0px; right: 0px; } - -.dirty-lineitem { +/* + * slightly-dirty: node is < 33% dirty + */ +.slightly-dirty-lineitem { background: #FFAAAA; } +.slightly-dirty-lineitem a { + color: #10324b; + text-decoration: none; +} +/* + * dirty: node is >= 33% dirty but < 66% dirty + */ +.dirty-lineitem { + background: #FF7777; +} .dirty-lineitem a { color: #10324b; text-decoration: none; } +/* + * very-dirty: node is >= 66% dirty + */ +.very-dirty-lineitem { + background: #FF4444; +} +.very-dirty-lineitem a { + color: #10324b; + text-decoration: none; +} .clean-lineitem { background: #AAFFBB; } |