summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/css
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2015-09-30 14:53:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-16 14:59:59 +0100
commitef6fc2bc1a4eeafdf5eda112ffb72bfed24b85d5 (patch)
treeb68bc4a1d3253a2db1dbb8c15bfd3030ab74894d /bitbake/lib/toaster/toastergui/static/css
parent7467b6802d64e12710510d8e4653da15d12d7089 (diff)
downloadpoky-ef6fc2bc1a4eeafdf5eda112ffb72bfed24b85d5.tar.gz
bitbake: toaster: Replace "Run again" button with help text for cli builds
It's not possible to run a command-line build again, as Toaster doesn't have access to the data used for that build. Replace the "Run again" button with an icon which pops up some help text to that effect. Add test to check that the run again button is hidden and the help icon displayed instead for command-line builds. [YOCTO #8231] (Bitbake rev: b67ac9e7cbab50951847dd1a63b12f41bb345dbb) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/css')
-rw-r--r--bitbake/lib/toaster/toastergui/static/css/default.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css
index 06d9976557..bc8a97bedc 100644
--- a/bitbake/lib/toaster/toastergui/static/css/default.css
+++ b/bitbake/lib/toaster/toastergui/static/css/default.css
@@ -15,6 +15,8 @@
15/* Styles for the help information */ 15/* Styles for the help information */
16.get-help { color: #CCCCCC; } 16.get-help { color: #CCCCCC; }
17.get-help:hover, .icon-plus-sign:hover { color: #999999; cursor: pointer; } 17.get-help:hover, .icon-plus-sign:hover { color: #999999; cursor: pointer; }
18.get-help-green { color: #468847; }
19.get-help-green:hover { color: #347132; cursor: pointer; }
18.get-help-blue { color: #3A87AD; } 20.get-help-blue { color: #3A87AD; }
19.get-help-blue:hover { color: #005580; cursor: pointer; } 21.get-help-blue:hover { color: #005580; cursor: pointer; }
20.get-help-yellow { color: #C09853; } 22.get-help-yellow { color: #C09853; }
@@ -161,6 +163,9 @@ table { table-layout: fixed; word-wrap: break-word; }
161.project-name .label { font-weight: normal; margin-bottom: 5px; margin-left: -15px; padding: 5px; } 163.project-name .label { font-weight: normal; margin-bottom: 5px; margin-left: -15px; padding: 5px; }
162.project-name .label > a { color: #fff; font-weight: normal; } 164.project-name .label > a { color: #fff; font-weight: normal; }
163 165
166/* styles for showing help icons next to command-line builds */
167.build-result .get-help-green, .build-result .get-help-red, .build-result .get-help-blue { margin-right: 35px; margin-top: 8px; font-size: 16px; }
168
164/* Remove bottom margin for forms inside modal dialogs */ 169/* Remove bottom margin for forms inside modal dialogs */
165#dependencies-modal-form { margin-bottom: 0px; } 170#dependencies-modal-form { margin-bottom: 0px; }
166 171