From 719f5e41b3bea41dee001540fcdb55d5d34d509f Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Mon, 29 Sep 2014 14:00:36 +0100 Subject: [PATCH] bitbake: toastergui: Fix blue highlight for failed tasks Change the background colour of table rows with the .error class from white to transparent, to make sure the blue highlight animation works when you click on the order number in the task details page. (Bitbake rev: 25fd347b6a972164af9a0b5b56f803a296290246) Signed-off-by: Belen Barros Pena Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/static/css/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index 778d8b8456..8e0df591df 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css @@ -59,7 +59,7 @@ td a { color: #333333; } td a:hover { color: #000000; text-decoration: underline; } /* Override default Twitter Bootstrap styles for tr.error */ -.table tbody tr.error > td { background-color: #FFFFFF; } /* override default Bootstrap behaviour */ +.table tbody tr.error > td { background-color: transparent; } /* override default Bootstrap behaviour */ .table-hover tbody tr.error:hover > td { background-color: #F5F5F5;} /* override default Bootstrap behaviour */ /* Right justify Bootstrap table columns for size fields */