CSS subclass for rowcoloring

Hi,
on the support site I followed this: https://support.servoy.com/browse/SVY-1287

So I have added this into my CSS:

form.somethingdifferent odd, form.somethingdifferent even, form.somethingdifferent selected {
    background-color: #FF0000;
}

But now I can’t select this subclass: somethingdifferent, as a style on my form… It is simply not in the dropdown menu.
I have the same issue with portals, for which I filed a case, is this also a bug?

Using Servoy 6.0.4i2

The style form.somethingdifferent has to exist before you can do this.

So it will work if you add this to your stylesheet:

form.somethingdifferent {}

Yep thanks Joas,

I came to the same conclusion!