[FEATURE] Add inheritance of Perspective Styles

Please add Perspective Style inheritance so we can inherit styles from other styles. For example, we could then define font size styles which have complex stuff in them for resizing fonts based on orientation, viewport size etc. and then inherit them in other styles that should use these as a base.

Obviously this can't be done in CSS itself since CSS selectors cannot be extended/inherited from each other, so the CSS would need to be combined before it's presented to the browser

Idea:

How would you imagine inheritance enforcement? Do descendants get to override ancestor configurations? You would probably want a function at the ancestor level to re-propagate settings to descendants. Also a lock option for each configuration element, say you lock text font family but not size. I think this feature would provide convenience and is a good idea.

I think you can almost hack it now using the Advanced Stylesheet and wildcard selection
https://docs.inductiveautomation.com/display/DOC81/Style+Classes#StyleClasses-EnablingtheAdvancedStylesheet

[class^="psc-"] {
  background-color: red;
}

The issue with using the stylesheet is that you lose access to being able to select the styles from a dropdown, and you lose the nice visibility of them.

If we could use SCSS (which we can't), then you could use @extend .psc-FontSize0 to inherit P styles from others, but again, there's low visibility when looking at the perspective styles

You could use sass externally, then compile it and paste the generated css in your project.

But then you also lose the perspective styles GUI and the dropdown selections. And it adds steps outside of the designer. Though theme files are already not accessible from the designer...

A built-in sass compiler would be nice.