aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/webapp/apps/jenkinsApp/job.html
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-23 09:06:27 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-23 09:06:27 +0100
commita4373cd0e6ce6c3b1c7ad31d9f12f1f87de028e5 (patch)
tree96ea793e8fafbe3219bc27900f4ad186b7377078 /src/main/resources/webapp/apps/jenkinsApp/job.html
parente0433a61af4e1b9796cee8f095486fec85eb136f (diff)
downloadesper-testing-master.tar.gz
esper-testing-master.tar.bz2
esper-testing-master.tar.xz
esper-testing-master.zip
o Better look for tables showing some kind of details of an object.HEADmaster
o Using smaller buttons for navigation so they don't change their container's size.
Diffstat (limited to 'src/main/resources/webapp/apps/jenkinsApp/job.html')
-rwxr-xr-xsrc/main/resources/webapp/apps/jenkinsApp/job.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/resources/webapp/apps/jenkinsApp/job.html b/src/main/resources/webapp/apps/jenkinsApp/job.html
index 4f21fad..91527dc 100755
--- a/src/main/resources/webapp/apps/jenkinsApp/job.html
+++ b/src/main/resources/webapp/apps/jenkinsApp/job.html
@@ -14,7 +14,7 @@
<h3>Overview</h3>
- <table class="table">
+ <table class="table details-table">
<tbody>
<tr>
<th>URL</th>
@@ -40,7 +40,11 @@
<tr ng-repeat="build in builds.rows" class="{{{true: 'success', false: 'error'}[build.success]}}">
<td>{{build.timestamp | date:'medium'}}</td>
<td>{{build.result}}</td>
- <td><a class="btn" href="/jenkins/#/server/{{serverUuid}}/job/{{jobUuid}}/build/{{build.uuid}}"><i class="icon-chevron-right"></i></a></td>
+ <td>
+ <a class="btn btn-mini" href="/jenkins/#/server/{{serverUuid}}/job/{{jobUuid}}/build/{{build.uuid}}">
+ <i class="icon-chevron-right"></i>
+ </a>
+ </td>
</tr>
</tbody>
<tfoot>