Skip to content

Commit

Permalink
Merge pull request #90 from topcoder-platform/dev
Browse files Browse the repository at this point in the history
Mobile support and sorting on lists
  • Loading branch information
ajefts authored Nov 1, 2017
2 parents e2bf395 + 21e1f2e commit 0a339b2
Show file tree
Hide file tree
Showing 31 changed files with 802 additions and 93 deletions.
2 changes: 1 addition & 1 deletion src/app/addmembers/add.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>Import Users</h2>
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row" ng-controller="addmembers.AddMemberController">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox float-e-margins import-form">
<div class="ibox-title">
<div class="row">
<form role="form">
Expand Down
5 changes: 3 additions & 2 deletions src/app/admintool/admintool.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ <h2>Admins / Copilots / Reviewers</h2>
<div class="text-center" ng-show="formSearch.isLoading">
<img src="assets/images/loading.gif"/>
</div>
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && !users.length">
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && !users.length" class="table-responsive">
<p> No users found. </p>
</div>
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && users.length">
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && users.length" class="table-responsive">
<table class="footable table table-stripped toggle-arrow-tiny"
data-sort="true"
data-page-size="50">
Expand Down Expand Up @@ -135,6 +135,7 @@ <h2>Admins / Copilots / Reviewers</h2>
</tfoot>
</table>
</div>
<!-- table-responsive -->
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="text-center" ng-show="formSearch.isLoading">
<img src="assets/images/loading.gif" />
</div>
<div ng-show="!formSearch.isLoading">
<div ng-show="!formSearch.isLoading" class="table-responsive">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="50">
<thead>
<tr>
Expand Down Expand Up @@ -46,6 +46,7 @@
</tfoot>
</table>
</div>
<!-- table-responsive -->
</div>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/app/billing_accounts/billingaccounts.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<div class="text-center" ng-show="formSearch.isLoading">
<img src="assets/images/loading.gif" />
</div>
<div ng-show="!formSearch.isLoading">
<div ng-show="!formSearch.isLoading" class="table-responsive">
<table class="footable table table-stripped toggle-arrow-tiny">
<thead>
<tr>
Expand Down Expand Up @@ -131,6 +131,7 @@
</tfoot>
</table>
</div>
<!-- table-responsive -->
</div>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/app/clients/clients.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<div class="text-center" ng-show="formSearch.isLoading">
<img src="assets/images/loading.gif" />
</div>
<div ng-show="!formSearch.isLoading">
<div ng-show="!formSearch.isLoading" class="table-responsive">
<table class="footable table table-stripped toggle-arrow-tiny">
<thead>
<tr>
Expand Down Expand Up @@ -116,6 +116,7 @@
</tfoot>
</table>
</div>
<!-- table-responsive -->
</div>
</div>
</div>
Expand Down
Loading

0 comments on commit 0a339b2

Please sign in to comment.