Changing color of the outline of Input component
-
Is there a way to change the outline color of the Input component? This is not a general override, but case by case. E.g. I have a page with 3 Input components, where two of them needs to have a different border color
I tried several methods here: https://codepen.io/Adagio_B/pen/RwaVgOa
Unfortunately none of them seem to work. Either it changes the full div, or it only applies for the input-area
-
@AdrianG use color prop
-
@metalsadman Do you mean setting color=“green” like here?
<q-input label="1" outlined v-model="text" :dense="dense" color="green"> </q-input>
As far as I can tell, this only sets the color when the field has focus
-
@AdrianG inspect the element and override the css, the color is it is coz quasar follows the material spec. anyway here’s how you do it https://codepen.io/metalsadman/pen/xxVrwGW. know that when doing this sometime you’ll have to look into the source.
-
@metalsadman Thank you so much, I learned something new. I didn’t know you could override it like that. I only knew how to override it for all