Hi.
Take for example, this small diagram using the old formatting commands:
@startuml
'FORMAT
skinparam frameBorderColor Blue
skinparam frameBackgroundcolor LightBlue
skinparam frameShadowing false
skinparam rectangleBorderColor Green
skinparam rectangleBackgroundcolor LightGreen
skinparam rectangleShadowing true
'ELEMENTS
frame Foo5 {
rectangle Foo6
}
@enduml
If I try it in the new styling format, then the nesting element properties are not rendered at all:
@startuml
'FORMAT
<style>
frame {
LineColor Blue
BackgroundColor LightBlue
Shadowing 0
}
rectangle {
LineColor Green
Backgroundcolor LightGreen
Shadowing 1
}
</style>
'ELEMENTS
frame Foo5 {
rectangle Foo6
}
@enduml
So, the frame line is not blue, background is not light blue and the shadow is still showing even though I set it to 0. This happens with other types of diagrams too (i.e.: Deployment, Component, etc.).
Is the new styling supported already for all kinds of elements in all diagram types? Else, is it possible to make it available? I'm really trying to do without the good ol' SKINPARAM, but this is making it really difficult ;)
Thanks!