This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed coloring for the hint-text. (#288)
- Loading branch information
1 parent
405dbe2
commit ad18acd
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
src/core/components/inputs/text-input/text-input.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<span> | ||
<label for="inputElement">{{label}}</label> | ||
<input id="inputElement" type="text" | ||
<label for="inputElement">{{label}}</label> | ||
<input id="inputElement" type="text" | ||
[placeholder]="placeholder" | ||
(keydown.enter)="onEnter.emit()" | ||
[class]="flavor" | ||
[disabled]="disabled"> | ||
<small [class]="flavor" >{{hintText}}</small> | ||
<small [class]="flavor+hintHaveColor()">{{hintText}}</small> | ||
</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters