diff options
-rw-r--r-- | themes/seven/style.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/seven/style.css b/themes/seven/style.css index d2dc969b9..c84fe5906 100644 --- a/themes/seven/style.css +++ b/themes/seven/style.css @@ -481,6 +481,8 @@ table td, table th { vertical-align: middle; padding: 8px 10px; + border: 0; + color: #000; } table.system-status-report th { padding-left: 30px; @@ -488,15 +490,27 @@ table.system-status-report th { table.system-status-report tr.ok > * { background-color: #dfd; } +table.system-status-report tr.ok.even > * { + background-color: #d3f3d3; +} table.system-status-report tr.info > * { background-color: #bdf; } +table.system-status-report tr.info.even > * { + background-color: #b1d1f1; +} table.system-status-report tr.warning > * { background-color: #ffd; } +table.system-status-report tr.warning.even > * { + background-color: #f2f2d2; +} table.system-status-report tr.error > * { background-color: #fdd; } +table.system-status-report tr.error.even > * { + background-color: #ecc; +} tr.even, tr.odd { border-width: 0 1px 0 1px; |