summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-24 17:20:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-24 23:35:44 +0000
commit1e0e700f4b52465ee0afd5b67222785b9a1a0055 (patch)
treead61b8bd874c9aab76b87aaeb5eac4c717942ad6 /bitbake/lib/toaster/toastergui/static
parent4742ae94a91028f7128b862fdb6ec80123749859 (diff)
downloadpoky-1e0e700f4b52465ee0afd5b67222785b9a1a0055.tar.gz
bitbake: toasterui: style the Toaster version information
When debugging is turned on, we show some Toaster version information in the top bar. Present it so that it can be easily copied and pasted. (Bitbake rev: 5de46fabe9ab1e525048353c2ecd8846ffefc760) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static')
-rw-r--r--bitbake/lib/toaster/toastergui/static/css/default.css3
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/libtoaster.js3
2 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css
index 86cf67ad53..f97e6c4b76 100644
--- a/bitbake/lib/toaster/toastergui/static/css/default.css
+++ b/bitbake/lib/toaster/toastergui/static/css/default.css
@@ -5,7 +5,8 @@
5/* style the version information */ 5/* style the version information */
6.brand > a { color: #777; } 6.brand > a { color: #777; }
7.brand > a:hover { color: #999; text-decoration: none; } 7.brand > a:hover { color: #999; text-decoration: none; }
8.icon-info-sign.get-help { color: #777; font-size: 16px; margin-left: 5px;} 8.icon-info-sign { color: #777; font-size: 16px; margin-left: 5px;}
9.icon-info-sign:hover { color: #999; cursor: pointer; }
9 10
10/* Style the breadcrumb */ 11/* Style the breadcrumb */
11.breadcrumb { display: inline-block; background-color: transparent; } 12.breadcrumb { display: inline-block; background-color: transparent; }
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
index 2dc5b0a0a1..ea1522f471 100644
--- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
+++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
@@ -317,6 +317,9 @@ $(document).ready(function() {
317 // initialise the tooltips for the download icons 317 // initialise the tooltips for the download icons
318 $(".icon-download-alt").tooltip({ container: 'body', html: true, delay: { show: 200 } }); 318 $(".icon-download-alt").tooltip({ container: 'body', html: true, delay: { show: 200 } });
319 319
320 // initialise popover for debug information
321 $(".icon-info-sign").popover( { placement: 'bottom', html: true, container: 'body' });
322
320 // linking directly to tabs 323 // linking directly to tabs
321 $(function(){ 324 $(function(){
322 var hash = window.location.hash; 325 var hash = window.location.hash;