From 5dce9c429bce5f574a218f0d26e4995937fb58e6 Mon Sep 17 00:00:00 2001 From: Adam Bramley Date: Mon, 26 Aug 2013 10:50:53 +1200 Subject: [PATCH] Issue #1879560 by wiifm: Support Error classes on table rows. --- core.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core.css b/core.css index 9337ecf..bbbad0d 100644 --- a/core.css +++ b/core.css @@ -194,6 +194,14 @@ table.field-multiple-table td { padding: 10px; } background: #f9f9f9; } +/* Overrides the striping with core classes for errors and warnings */ +.page-admin table tr.error, .page-admin table tr.error td { + background: #FCC; +} +.page-admin table tr.warning, .page-admin table tr.warning td { + background: #FFD; +} + /** * Forms ============================================================== */ @@ -551,7 +559,7 @@ body.page-admin div.vertical-tabs .vertical-tabs-panes .vertical-tabs-pane field .filter-wrapper { font-size:11px; margin-top:-10px; - border-top:none; + border-top:none; } .text-format-wrapper .filter-wrapper{ border-top:1px solid #CCC; -- 1.7.9.5