Make everything default to lowercase

Hello…
unfortunately, I cannot seem to find which css text-transform I need to change in order to make all the text lower case.

Any help will be much appreciated.
Best,
Michael

Adding this to the root’s css will affect everything except the sidepanel (you’d need to create a theme file for this):

* {
  text-transform:initial;
}

great. and if I wanted to do it on a per-widget bases. say… for example… the title of the main tab?
thanks,
Michael

Then you’d need to use more specific css selectors, for instance putting this in the root’s css would only affect the first level of tabs:

> .panel > .navigation {
  text-transform:initial;
}

The css syntax is extensively documented on the web, and a few tricks specific to open stage control are documented here.