summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2014-09-29 14:00:36 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-30 13:39:48 +0000
commit719f5e41b3bea41dee001540fcdb55d5d34d509f (patch)
tree46cdfe6c8a625cee696504a66ac50adc8ab556b6 /bitbake
parent927943bd9e0e53f0fb9f8a031b1f2173e81b7131 (diff)
downloadpoky-719f5e41b3bea41dee001540fcdb55d5d34d509f.tar.gz
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 <belen.barros.pena@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/static/css/default.css2
1 files changed, 1 insertions, 1 deletions
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; }
59td a:hover { color: #000000; text-decoration: underline; } 59td a:hover { color: #000000; text-decoration: underline; }
60 60
61/* Override default Twitter Bootstrap styles for tr.error */ 61/* Override default Twitter Bootstrap styles for tr.error */
62.table tbody tr.error > td { background-color: #FFFFFF; } /* override default Bootstrap behaviour */ 62.table tbody tr.error > td { background-color: transparent; } /* override default Bootstrap behaviour */
63.table-hover tbody tr.error:hover > td { background-color: #F5F5F5;} /* override default Bootstrap behaviour */ 63.table-hover tbody tr.error:hover > td { background-color: #F5F5F5;} /* override default Bootstrap behaviour */
64 64
65/* Right justify Bootstrap table columns for size fields */ 65/* Right justify Bootstrap table columns for size fields */