Hi there!
I would like to change the severity color of a trigger so that warnings become yellow and informations green.
I have found in css.css:
table.tableinfo tr td.disaster { background-color: #FF0000; }
table.tableinfo tr:hover td.disaster { background-color: #FF0000; }
table.tableinfo tr td.high { background-color: #FF8888; }
table.tableinfo tr:hover td.high { background-color: #FF8888; }
table.tableinfo tr td.average { background-color: #DDAAAA; }
table.tableinfo tr:hover td.average { background-color: #DDAAAA; }
table.tableinfo tr td.unknown_trigger { background-color: #BCBCBC; }
table.tableinfo tr:hover td.unknown_trigger{ background-color: #BCBCBC; }
table.tableinfo tr td.normal { background-color: #AADDAA; }
table.tableinfo tr:hover td.normal { background-color: #AADDAA; }
The colors for warnings and informations are missing. (can't find them in css.css).
Any idea how I could get custom trigger severity colors?
Cheers!
I would like to change the severity color of a trigger so that warnings become yellow and informations green.
I have found in css.css:
table.tableinfo tr td.disaster { background-color: #FF0000; }
table.tableinfo tr:hover td.disaster { background-color: #FF0000; }
table.tableinfo tr td.high { background-color: #FF8888; }
table.tableinfo tr:hover td.high { background-color: #FF8888; }
table.tableinfo tr td.average { background-color: #DDAAAA; }
table.tableinfo tr:hover td.average { background-color: #DDAAAA; }
table.tableinfo tr td.unknown_trigger { background-color: #BCBCBC; }
table.tableinfo tr:hover td.unknown_trigger{ background-color: #BCBCBC; }
table.tableinfo tr td.normal { background-color: #AADDAA; }
table.tableinfo tr:hover td.normal { background-color: #AADDAA; }
The colors for warnings and informations are missing. (can't find them in css.css).
Any idea how I could get custom trigger severity colors?
Cheers!
Comment