How to change the opacity level of unenabled components?

Hi folks.

Title says it all. My table gets greyed out a bit too much when .setEnabled(false).

How to change the opacity level so it would show a bit more when disabled.

Thank you.

Hi Vesa,

try it with CSS.

.v-disabled {
  opacity: 0.5;
}

Thank you, that did it.