fix(label): add color to label in a select

references #5669
This commit is contained in:
Brandy Carney
2016-03-14 18:11:48 -04:00
parent e4b161dcf0
commit 8fff76e299
3 changed files with 9 additions and 6 deletions

View File

@ -16,10 +16,11 @@ ion-label {
} }
// iOS Default Label Inside An Input Item // iOS Default Label Inside An Input/Select Item
// -------------------------------------------------- // --------------------------------------------------
.item-input ion-label { .item-input ion-label,
.item-select ion-label {
color: $label-ios-text-color; color: $label-ios-text-color;
} }

View File

@ -21,10 +21,11 @@ ion-label {
line-height: $item-md-body-text-line-height; line-height: $item-md-body-text-line-height;
} }
// Material Design Default Label Inside An Input Item // Material Design Default Label Inside An Input/Select Item
// -------------------------------------------------- // --------------------------------------------------
.item-input ion-label { .item-input ion-label,
.item-select ion-label {
color: $label-md-text-color; color: $label-md-text-color;
} }

View File

@ -16,10 +16,11 @@ ion-label {
} }
// Windows Default Label Inside An Input Item // Windows Default Label Inside An Input/Select Item
// -------------------------------------------------- // --------------------------------------------------
.item-input ion-label { .item-input ion-label,
.item-select ion-label {
color: $label-wp-text-color; color: $label-wp-text-color;
} }