diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2015-02-27 17:29:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-09 14:33:53 +0000 |
commit | 5a03a23bfd40f6da2d79d07003e0a34b022dd23b (patch) | |
tree | 7f94ad48f3e18e6efe7ac086733c4ff5f76c34e0 /bitbake/lib | |
parent | 74bb0fb3c194e1ca2df4d3745f952955b8227e7d (diff) | |
download | poky-5a03a23bfd40f6da2d79d07003e0a34b022dd23b.tar.gz |
bitbake: toasterui: give some space to the download log button
In the build dashboard, the download build log button was
a bit too close to the build time.
(Bitbake rev: da7c450f28cdf1c851b14f7a1fac08e6cf1dd894)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 1 | ||||
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/builddashboard.html | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index dc1b92a225..778a84926f 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
@@ -214,6 +214,7 @@ dl textarea { resize: vertical; } | |||
214 | .new-build .input-append { margin-bottom: 0; } | 214 | .new-build .input-append { margin-bottom: 0; } |
215 | #build-selected { margin-top: 15px; } | 215 | #build-selected { margin-top: 15px; } |
216 | div.add-deps { margin-top: 15px; } | 216 | div.add-deps { margin-top: 15px; } |
217 | .btn.log { margin-left: 20px; } | ||
217 | 218 | ||
218 | 219 | ||
219 | .animate-repeat { | 220 | .animate-repeat { |
diff --git a/bitbake/lib/toaster/toastergui/templates/builddashboard.html b/bitbake/lib/toaster/toastergui/templates/builddashboard.html index c0898e291d..4e600283a5 100644 --- a/bitbake/lib/toaster/toastergui/templates/builddashboard.html +++ b/bitbake/lib/toaster/toastergui/templates/builddashboard.html | |||
@@ -36,9 +36,9 @@ | |||
36 | {% endif %} | 36 | {% endif %} |
37 | <span > <i class="icon-warning-sign yellow"></i><strong><a href="#warnings" class="warning show-warnings"> {{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a></strong></span> | 37 | <span > <i class="icon-warning-sign yellow"></i><strong><a href="#warnings" class="warning show-warnings"> {{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a></strong></span> |
38 | {% endif %} | 38 | {% endif %} |
39 | <span class="pull-right">Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a> | 39 | <span class="pull-right">Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a> |
40 | {% if MANAGED and build.project %} | 40 | {% if MANAGED and build.project %} |
41 | <a class="btn {%if build.outcome == build.SUCCEEDED%}btn-success{%else%}btn-danger{%endif%} pull-right" href="{% url 'build_artifact' build.id "cookerlog" build.id %}">Download build log</a> | 41 | <a class="btn {%if build.outcome == build.SUCCEEDED%}btn-success{%else%}btn-danger{%endif%} pull-right log" href="{% url 'build_artifact' build.id "cookerlog" build.id %}">Download build log</a> |
42 | {% endif %} | 42 | {% endif %} |
43 | </span> | 43 | </span> |
44 | {%endif%} | 44 | {%endif%} |