Skip to content

Commit

Permalink
SHIBUI-712: Changed text format for better color contrast (accessibil…
Browse files Browse the repository at this point in the history
…ity);
  • Loading branch information
Jodie Muramoto committed Aug 9, 2018
1 parent ce63596 commit ee4ce62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/app/schema-form/widget/string/string.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[attr.readonly]="schema.readOnly?true:null"
class="text-widget.id textline-widget form-control"
[attr.type]="this.getInputType()"
[attr.id]="id"
[attr.id]="id"
[formControl]="control"
[attr.placeholder]="schema.placeholder"
[attr.maxLength]="schema.maxLength || null"
Expand All @@ -25,7 +25,7 @@
<small class="form-text text-danger" *ngIf="errorMessages && errorMessages.length && control.touched">
{{ errorMessages }}
</small>
<small class="form-text text-muted" *ngIf="!(control.touched && errorMessages && errorMessages.length) && schema.widget.help">
<small class="form-text text-secondary" *ngIf="!(control.touched && errorMessages && errorMessages.length) && schema.widget.help">
{{ schema.widget.help }}
</small>
</div>
</div>

0 comments on commit ee4ce62

Please sign in to comment.