From 6062efe48d362836a0acf99322cda90dc8ee7e1e Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Wed, 10 Jun 2020 14:47:14 +0200 Subject: [PATCH] fixed group report and table styles --- pandora_console/include/styles/pandoraPDF.css | 62 ++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/pandoraPDF.css b/pandora_console/include/styles/pandoraPDF.css index 2a046aa122..f8c3528932 100644 --- a/pandora_console/include/styles/pandoraPDF.css +++ b/pandora_console/include/styles/pandoraPDF.css @@ -39,7 +39,7 @@ table.header_table tbody tr td { } table thead tr th { - background-color: #acacac; + background-color: #373737; } table thead tr th.title_table_pdf { @@ -154,3 +154,63 @@ span.mpdf_toc_t_level_2 { span.mpdf_toc_p_level_2 { /* Page no. level 2 - may be inside */ } + +table tbody td.cellCritical { + background: #f85858; + color: #fff; +} + +table tbody td.cellBold { + font-weight: bold; +} + +table tbody td.cellRight { + text-align: right; +} + +table tbody td.cellCenter { + text-align: center; +} + +table tbody td.cellWhite { + background: #fff; + color: #111; +} + +table tbody td.cellNormal { + background: #6eb432; + color: #fff; +} + +table tbody td.cellCritical { + background: #f85858; + color: #fff; +} + +table tbody td.cellWarning { + background: #ffea59; + color: #111; +} + +table tbody td.cellUnknown { + background: #aaaaaa; + color: #ffffff; +} + +table tbody td.cellNotInit { + background: #4a83f3; + color: #ffffff; +} + +table tbody td.cellAlert { + background: #ff8800; + color: #111; +} + +table tbody td.cellBorder1 { + border: 1px solid #666; +} + +table tbody td.cellBig { + font-size: 18px; +}