summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-04-12 15:56:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:03 +0100
commit443f7b39158c891015a791814b9b1fe2324edc41 (patch)
tree3f570a138594273bc7498225e066b7f9a99bf0c5 /bitbake/lib/toaster/toastergui/static/html
parent79e0eb9e52e9b954aa3b6bc6dee15a75b5eb990c (diff)
downloadpoky-443f7b39158c891015a791814b9b1fe2324edc41.tar.gz
bitbake: toaster: Migrate project configuration from bootstrap 2 to bootstrap 3
Convert all the HTML templates, JS and CSS in the project parts of toaster to use bootstrap 3. (Bitbake rev: 69527a731eada699d3f604ff8f3ae9410981ba9b) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/html')
-rw-r--r--bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html38
1 files changed, 21 insertions, 17 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html b/bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html
index e1dba4358d..e843d8d857 100644
--- a/bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html
+++ b/bitbake/lib/toaster/toastergui/static/html/layer_deps_modal.html
@@ -1,17 +1,21 @@
1<div id="dependencies-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="false"> 1<div id="dependencies-modal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="false">
2 <form id="dependencies-modal-form"> 2 <div class="modal-dialog">
3 <div class="modal-header"> 3 <div class="modal-content">
4 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button> 4 <form id="dependencies-modal-form">
5 <h3><span id="title"></span> dependencies</h3> 5 <div class="modal-header">
6 </div> 6 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
7 <div class="modal-body"> 7 <h3><span id="title"></span> dependencies</h3>
8 <p id="body-text"> <strong id="layer-name"></strong> depends on some layers that are not added to your project. Select the ones you want to add:</p> 8 </div>
9 <ul class="unstyled" id="dependencies-list"> 9 <div class="modal-body">
10 </ul> 10 <p id="body-text"> <strong id="layer-name"></strong> depends on some layers that are not added to your project. Select the ones you want to add:</p>
11 </div> 11 <ul class="list-unstyled" id="dependencies-list">
12 <div class="modal-footer"> 12 </ul>
13 <button class="btn btn-primary" type="submit">Add layers</button> 13 </div>
14 <button class="btn" type="reset" data-dismiss="modal">Cancel</button> 14 <div class="modal-footer">
15 </div> 15 <button class="btn btn-primary" type="submit">Add layers</button>
16 </form> 16 <button class="btn btn-link" type="reset" data-dismiss="modal">Cancel</button>
17</div> 17 </div>
18 </form>
19 </div><!-- /.modal-content -->
20 </div><!-- /.modal-dialog -->
21</div><!-- /.modal -->