feat(text-input): adding color attributes for the ion-label

closes #585
This commit is contained in:
Brandy Carney
2015-11-20 14:22:45 -05:00
parent 19ff9e0a2c
commit f966555034
2 changed files with 11 additions and 3 deletions

View File

@ -70,3 +70,11 @@ input,
textarea {
@include placeholder();
}
@each $color-name, $color-value in $colors {
ion-label {
&[#{$color-name}] {
color: $color-value !important;
}
}
}