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/badge.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/badge.html')
-rwxr-xr-x | src/main/resources/webapp/apps/frontPageApp/badge.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/badge.html b/src/main/resources/webapp/apps/frontPageApp/badge.html index b501f15..1035b80 100755 --- a/src/main/resources/webapp/apps/frontPageApp/badge.html +++ b/src/main/resources/webapp/apps/frontPageApp/badge.html @@ -15,13 +15,13 @@ <p> The badge was awarded for having {{badge.personalBadge.builds.length}} successful builds in a row: </p> - <table class="table table-striped"> + <table class="table table-striped align-middle"> <tr ng-repeat="b in badge.personalBadge.builds"> <td> {{b.timestamp | date:'medium'}} </td> <td> - <a class="btn" href="#/build/{{b}}">{{$index + 1}} <i class="icon-chevron-right"></i></a> + <a class="btn btn-mini" href="#/build/{{b}}">{{$index + 1}} <i class="icon-chevron-right"></i></a> </td> </tr> </table> |