Optimize CSS
Is your feature request related to a problem? Please describe.
☝️The CSS selector depth is much deeper than it needs to be. This makes it hard for consuming applications to override default styles, since overrides would need to be more specific than .view-wrapper .node .shape > use.node. Additionally extremely specific CSS selectors can have an impact on CSS performance, especially in large scale applications with large CSS outputs. I was also able to identify several dead lines of CSS that do not need to be declared.
Describe the solution you'd like CSS should strive to achieve the desired results with as minimal CSS selector depth as possible and should not contain dead code. When CSS is optimal, performance is maintained and extensibility of consuming applications is easy. This issue is only opened as a tracker. I plan to submit a fix for this myself.
Describe alternatives you've considered None