diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-23 09:06:27 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-23 09:06:27 +0100 |
commit | a4373cd0e6ce6c3b1c7ad31d9f12f1f87de028e5 (patch) | |
tree | 96ea793e8fafbe3219bc27900f4ad186b7377078 /src/main/resources/webapp/apps/frontPageApp/buildList.html | |
parent | e0433a61af4e1b9796cee8f095486fec85eb136f (diff) | |
download | esper-testing-master.tar.gz esper-testing-master.tar.bz2 esper-testing-master.tar.xz esper-testing-master.zip |
o Using smaller buttons for navigation so they don't change their container's size.
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/buildList.html')
-rwxr-xr-x | src/main/resources/webapp/apps/frontPageApp/buildList.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/buildList.html b/src/main/resources/webapp/apps/frontPageApp/buildList.html index 7e795e4..4c4fe65 100755 --- a/src/main/resources/webapp/apps/frontPageApp/buildList.html +++ b/src/main/resources/webapp/apps/frontPageApp/buildList.html @@ -24,7 +24,7 @@ <h2>{{date | date:'mediumDate'}}</h2> </div> <div class="span12"> - <table class="table"> + <table class="table align-middle"> <tr ng-repeat="build in group" class="{{{true: 'success', false: 'error'}[build.build.success]}}"> <td> <h4> @@ -35,10 +35,12 @@ <span ng-repeat="p in build.participants" ng-show="build.participants"> <dogtag-xl person="p"></dogtag-xl> </span> - <p ng-hide="build.participants"> + <span ng-hide="build.participants"> No participants. - </p> - <a class="btn pull-right" href="#/build/{{build.build.uuid}}"><i class="icon-chevron-right"></i></a> + </span> + <a class="btn pull-right" href="#/build/{{build.build.uuid}}"> + <i class="icon-chevron-right"></i> + </a> </td> </tr> </table> |