Skip to content

Commit 6fe53db

Browse files
Merge pull request #117 from MyPureCloud/Class-Identifiers
Grid CSS Selectors
2 parents 4b16d96 + 56a7c26 commit 6fe53db

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<h4>
1+
<h4 class="fixtable-empty-message">
22
{{values.nullMessage}}
33
</h4>

addon/templates/components/fixtable-footer.hbs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<span>Page</span>
2-
<button type="button" class="btn btn-default" aria-label="Previous Page" {{action 'goToPreviousPage'}} disabled={{equals currentPage 1}}>
2+
<button type="button" class="btn btn-default page-prev" aria-label="Previous Page" {{action 'goToPreviousPage'}} disabled={{equals currentPage 1}}>
33
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
44
</button>
5-
{{input type="number" class="form-control" value=currentPage min=1 max=totalPages}}
6-
<button type="button" class="btn btn-default" aria-label="Next Page" {{action 'goToNextPage'}} disabled={{equals currentPage totalPages}}>
5+
{{input type="number" class="form-control page-input" value=currentPage min=1 max=totalPages}}
6+
<button type="button" class="btn btn-default page-next" aria-label="Next Page" {{action 'goToNextPage'}} disabled={{equals currentPage totalPages}}>
77
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
88
</button>
99
<span>of {{totalPages}}</span>
1010

1111
<span class="pull-right">
12-
<select class="form-control" onchange={{action (mut pageSize) value="target.value"}}>
12+
<select class="form-control page-size" onchange={{action (mut pageSize) value="target.value"}}>
1313
{{#each pageSizeOptions as |choice|}}
1414
<option value={{choice}} selected={{equals pageSize choice}}>{{choice}}</option>
1515
{{/each}}

addon/templates/components/fixtable-grid.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
</table>
105105
<div class="fixtable-centered">
106106
{{#if isLoading}}
107-
<i class="fa fa-refresh fa-spin fa-4x fa-fw" aria-hidden="true"></i>
107+
<i class="fa fa-refresh fa-spin fa-4x fa-fw fixtable-loading" aria-hidden="true"></i>
108108
<span class="sr-only">Loading...</span>
109109
{{else}}
110110
{{#unless visibleContent.length}}

0 commit comments

Comments
 (0)