]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
toasterui: give some space to the download log button
authorBelen Barros Pena <belen.barros.pena@intel.com>
Fri, 27 Feb 2015 17:29:04 +0000 (17:29 +0000)
committerAlexandru DAMIAN <alexandru.damian@intel.com>
Mon, 9 Mar 2015 13:15:21 +0000 (13:15 +0000)
In the build dashboard, the download build log button was
a bit too close to the build time.

Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
lib/toaster/toastergui/static/css/default.css
lib/toaster/toastergui/templates/builddashboard.html

index dc1b92a2258097f840947115a5c525a9f323fb82..778a84926fb05804f1cba9344124400823147917 100644 (file)
@@ -214,6 +214,7 @@ dl textarea { resize: vertical; }
 .new-build .input-append { margin-bottom: 0; }
 #build-selected { margin-top: 15px; }
 div.add-deps { margin-top: 15px; }
+.btn.log { margin-left: 20px; }
 
 
 .animate-repeat {
index c0898e291df8184f5af283d3f51b8205a66b3e44..4e600283a5e0561bcfb6f990b055d900c68644a1 100644 (file)
@@ -36,9 +36,9 @@
 {% endif %}
     <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>
 {% endif %}
-            <span class="pull-right">Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a> &nbsp;
+            <span class="pull-right">Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a>
       {% if MANAGED and build.project %}
-            <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>
+            <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>
       {% endif %}
             </span>
 {%endif%}