Css for Textfield inside Table

Hi there

im using an editable table. The fields that can be changed are displayed in a textfield and I’d like to change the appearance of these textfields (without affecting the fields outside the table).

Does anyone know how to solve this issue? - Or: how can I select the textfields in a css - file?

Thanks in advance!

Assuming you’ve
created your own theme
(you can inherit from a standard theme, so not quite as big a deal as it sounds) you can select a textfield inside a table like this :


.v-table .v-textfield {
    background: yellow;
}

HTH,

Cheers,

Charles.

Hey Charles

thanks! - that’s exactly what I was looking for!

Best