I'd like to be able to style all the children elements/activities under a specific partition while leaving those activities outside of the partition alone. I've tried the following but it doesn't end up selecting anything and has no effect. Is there another way to accomplish this without specifically tagging each activity I want to modify?
@startuml
<style>
partition {
activity {
BackgroundColor: blue;
}
}
</style>
start
partition "Partition1" {
:Activity1;
:Activity2;
}
:Activity3;
@enduml