Skip to content

Commit 0a339b2

Browse files
authored
Merge pull request #90 from topcoder-platform/dev
Mobile support and sorting on lists
2 parents e2bf395 + 21e1f2e commit 0a339b2

31 files changed

+802
-93
lines changed

src/app/addmembers/add.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h2>Import Users</h2>
1010
<div class="wrapper wrapper-content animated fadeInRight">
1111
<div class="row" ng-controller="addmembers.AddMemberController">
1212
<div class="col-lg-12">
13-
<div class="ibox float-e-margins">
13+
<div class="ibox float-e-margins import-form">
1414
<div class="ibox-title">
1515
<div class="row">
1616
<form role="form">

src/app/admintool/admintool.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ <h2>Admins / Copilots / Reviewers</h2>
8484
<div class="text-center" ng-show="formSearch.isLoading">
8585
<img src="assets/images/loading.gif"/>
8686
</div>
87-
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && !users.length">
87+
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && !users.length" class="table-responsive">
8888
<p> No users found. </p>
8989
</div>
90-
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && users.length">
90+
<div ng-show="!formSearch.isLoading && formSearch.role && formSearch.usersFound && users.length" class="table-responsive">
9191
<table class="footable table table-stripped toggle-arrow-tiny"
9292
data-sort="true"
9393
data-page-size="50">
@@ -135,6 +135,7 @@ <h2>Admins / Copilots / Reviewers</h2>
135135
</tfoot>
136136
</table>
137137
</div>
138+
<!-- table-responsive -->
138139
</div>
139140
</div>
140141
</div>

src/app/billing_account_resources/billingaccountresources.list.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div class="text-center" ng-show="formSearch.isLoading">
1919
<img src="assets/images/loading.gif" />
2020
</div>
21-
<div ng-show="!formSearch.isLoading">
21+
<div ng-show="!formSearch.isLoading" class="table-responsive">
2222
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="50">
2323
<thead>
2424
<tr>
@@ -46,6 +46,7 @@
4646
</tfoot>
4747
</table>
4848
</div>
49+
<!-- table-responsive -->
4950
</div>
5051
</div>
5152
</div>

src/app/billing_accounts/billingaccounts.list.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<div class="text-center" ng-show="formSearch.isLoading">
6565
<img src="assets/images/loading.gif" />
6666
</div>
67-
<div ng-show="!formSearch.isLoading">
67+
<div ng-show="!formSearch.isLoading" class="table-responsive">
6868
<table class="footable table table-stripped toggle-arrow-tiny">
6969
<thead>
7070
<tr>
@@ -131,6 +131,7 @@
131131
</tfoot>
132132
</table>
133133
</div>
134+
<!-- table-responsive -->
134135
</div>
135136
</div>
136137
</div>

src/app/clients/clients.list.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<div class="text-center" ng-show="formSearch.isLoading">
6060
<img src="assets/images/loading.gif" />
6161
</div>
62-
<div ng-show="!formSearch.isLoading">
62+
<div ng-show="!formSearch.isLoading" class="table-responsive">
6363
<table class="footable table table-stripped toggle-arrow-tiny">
6464
<thead>
6565
<tr>
@@ -116,6 +116,7 @@
116116
</tfoot>
117117
</table>
118118
</div>
119+
<!-- table-responsive -->
119120
</div>
120121
</div>
121122
</div>

0 commit comments

Comments
 (0)