Modulation Matrix CSS
-
Did anyone successfully change the
Invertedlabel name (or any other header name using CSS?I tried these below but obviously they don't work or break other things
td #inverted /* doesn't do anything */ { content: 'Inv'; }td, #inverted /* changes all header labels and the button */ { content: 'Inv'; }#inverted /* works but changes the button too... */ { content: 'Inv'; }td, .targetLabel #inverted /* changes all header labels */ { content: 'Inv'; } -
@ustk Have you tried this:
th #inverted /* should target table header with ID #inverted */ { content: 'Inv'; }Having said that, I've hit many many CSS cases that either have no effect or break other things.
It would be cool to get a hit list together of stuff that needs fixing/updating.
-
@dannytaurus Thanks, yeah I tried using
thas well, it does nothing...I agree, but unfortunately I am very limited with CSS, so I usually don't know when I'm doing wrong and when it's a Hise issue/limitation
AI is of no help because of the particular way Hise handles CSS. Conventional stuff often don't work