Skip to content

Commit

Permalink
fix(input): allow placeholder text color customization on generic input
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow authored and joneff committed Mar 11, 2022
1 parent 4cb59c8 commit 86270a9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/default/scss/input/_layout.scss
Expand Up @@ -60,6 +60,15 @@
filter: grayscale(0);
}
}

&::placeholder {
color: $kendo-input-placeholder-text;
opacity: $kendo-input-placeholder-opacity;
user-select: none;
}
&:-ms-input-placeholder {
color: $kendo-input-placeholder-text;
}
}

// Input and Textarea
Expand Down

0 comments on commit 86270a9

Please sign in to comment.