fix(note): separate note from item so its styles will alway be applied

this was discussed with Ben previously, fixes #9173
This commit is contained in:
Brandy Carney
2016-11-22 12:45:40 -05:00
parent 8ae904759b
commit bf00803737
13 changed files with 111 additions and 35 deletions

View File

@ -0,0 +1,24 @@
@import "../../themes/ionic.globals.wp";
// Windows Note
// --------------------------------------------------
/// @prop - Text color of the note
$note-wp-color: $input-wp-border-color !default;
.note-wp {
color: $note-wp-color;
}
// Generate Windows Note Colors
// --------------------------------------------------
@each $color-name, $color-base, $color-contrast in get-colors($colors-wp) {
.note-wp-#{$color-name} {
color: $color-base;
}
}