My goal is to make all read only input fields distinguishable for my users. Currently, in Vuetify 2.0.12 readonly <v-text-field>
and <v-textarea>
components are indistinguishable from non read only fields.
I would like to globally change the background color, and text color of all <v-text-field>
and <v-textarea>
components that have the readonly prop.
example :
background-color = yellow lighten-3
text color = black
This needs to work for both light/dark themes as my application allows the user to choose their theme.
My CSS/Sass knowledge is extremely lacking so I apologize for such a rudimentary question. Feel free to suggest a better approach as well. What is a good way to "signal" to my users that this field is readonly?