Skip to content

Commit

Permalink
fix(Pagination): Update page select to use better styling
Browse files Browse the repository at this point in the history
  • Loading branch information
coryshaw1 committed Jun 29, 2016
1 parent 341afa4 commit 984b23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pagination/Pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<div class="input-group col-md-3" *ngIf="showSelect">
<span class="input-group-addon">Jump to:</span>
<select class="form-control" (change)="setPage($event.target.value)">
<select class="c-select" (change)="setPage($event.target.value)">
<option *ngFor="let page of pagesBlank | range : 1 : totalPages" [value]="page" [selected]="page == currentPage">{{page}}</option>
</select>
</div>

0 comments on commit 984b23f

Please sign in to comment.