aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/static
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-01-31 07:02:32 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-17 15:38:26 +0000
commite5cbb190317dba2eddd933678474569563ec840b (patch)
treea87af0ed31fe5556ba84ba0f91915a83d9ebacba /lib/toaster/toastergui/static
parentc2e43750bf0913523a1abcb2c8bf97b764da2524 (diff)
downloadbitbake-e5cbb190317dba2eddd933678474569563ec840b.tar.gz
toaster: Apply error style to cell links
This patch changes default.css so that any anchor tag inside a table cell with the error class applied inherits the class styles. This ensures that the failed tasks listed in the builds table look red like the failed tasks in the tasks table. Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Diffstat (limited to 'lib/toaster/toastergui/static')
-rw-r--r--lib/toaster/toastergui/static/css/default.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/toaster/toastergui/static/css/default.css b/lib/toaster/toastergui/static/css/default.css
index 461583977..80ae07267 100644
--- a/lib/toaster/toastergui/static/css/default.css
+++ b/lib/toaster/toastergui/static/css/default.css
@@ -64,7 +64,7 @@ td a:hover { color: #000000; text-decoration: underline; }
.table-hover tbody tr.error:hover > td { background-color: #F5F5F5;} /* override default Bootstrap behaviour */
/* Set error, warning, success and muted styles */
-.error, .red, tr.error a { color: #b94a48; }
+.error, .red, td.error a, tr.error a { color: #b94a48; }
a.error:hover, a.error:focus, tr.error a:hover { color: #943A38; text-decoration: underline; }
.warning, .yellow { color: #c09853;}
a.warning { background-color: transparent; }