Polymer 1.0 question:
When the paper input is set to “off,” the text and underline turn into a really light gray that is difficult to read. How to set text color using css. Here is what I have tried so far:
--paper-input-container-input-disabled {
color:black;
}
<paper-input label="Email" disabled></paper-input>
But it does not change the color of the text. Although I can change the background color using the same mixin.
source
share