Change font color Reindeer

Hello!
I would like to change the font color of the Reindeer.TABSHEET_MINIMAL style from blue to a green color. I tried to find the according css style but I was not successfully. Does someone know which stylename do I have to overwrite?

Thank you for your help,
Florian

A quick look at the reindeer stylesheet suggests that should work.

.v-tabsheet-tabs-minimal .v-tabsheet-tabitem {
    color : green;
}

NB: I have not tried this, just a best guess based on the source code.

However, the best way to find out for sure is to use Firefox+firebug to analyze the matching CSS. (Chrome Dev Tools also work, but isn’t quite as good IMHO - even though I use Chrome all the time for development, I usually revert to FF+Firebug for CSS tweaking)

Cheers,

Charles.

Try .v-tabsheet-tabs-minimal .v-tabsheet-tabitem .v-captiontext { color: red; } .v-tabsheet-tabs-minimal .v-tabsheet-tabitem-selected .v-captiontext { color: green; }

Remember to add your own style names in there if you don’t want all the tabs to be of these colors :slight_smile: