Skip to content

Commit

Permalink
chore(paging): set fixed 30px in input since it has 200px by default …
Browse files Browse the repository at this point in the history
…in the paging demo
  • Loading branch information
emoralesb05 committed Aug 31, 2017
1 parent df549f9 commit 70583f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/components/components/paging/paging.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
<md-divider></md-divider>
<td-paging-bar #pagingBarInput pageLinkCount="5" [firstLast]="false" [pageSize]="100" [total]="1345" (change)="changeInput($event)">
<p hide-xs>Go to:</p>
<md-form-field>
<md-form-field [style.width.px]="30">
<input #goToInput
mdInput
type="number"
Expand All @@ -215,7 +215,7 @@
<![CDATA[
<td-paging-bar #pagingBarInput pageLinkCount="5" [firstLast]="false" [pageSize]="100" [total]="1345" (change)="changeInput($event)">
<p hide-xs>Go to:</p>
<md-form-field>
<md-form-field [style.width.px]="30">
<input #goToInput
mdInput
type="number"
Expand Down Expand Up @@ -278,7 +278,7 @@
</md-option>
</md-select>
<p hide-xs hide-sm hide-md>Go to:</p>
<md-form-field *ngIf="media.registerQuery('gt-sm') | async">
<md-form-field [style.width.px]="30" *ngIf="media.registerQuery('gt-sm') | async">
<input #goToResponsive
mdInput
type="number"
Expand Down Expand Up @@ -310,7 +310,7 @@
</md-option>
</md-select>
<p hide-xs hide-sm hide-md>Go to:</p>
<md-form-field *ngIf="media.registerQuery('gt-sm') | async">
<md-form-field [style.width.px]="30" *ngIf="media.registerQuery('gt-sm') | async">
<input #goToResponsive
mdInput
type="number"
Expand Down

0 comments on commit 70583f2

Please sign in to comment.