plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
9.81k stars 888 forks source link

activity styling bug #1653

Closed grivo closed 4 months ago

grivo commented 4 months ago

prerequisites

plantuml server version 1.2023.13

example

@startuml
<style>
activityDiagram {
    .x {
        BackGroundColor pink
    }
}
</style>

start

:single line action;
note left : ok

:multi
line
action;
note left : ok

:object; <<task>>
note left
    =question

    is //<<task>>// stereotype the only
    out of the box way to create object
    at activity diagram, btw?
end note

#pink:coloured single line action;
note left : ok

#pink:coloured
multi
line
action; <<x>>
note left : ok

:stereotyped coloured single line action; <<x>>
note left : ok

:stereotyped
coloured
multi
line
action; <<x>>
note left
    =NOK

    once action has multiple
    lines - no styling occurs
end note

stop

@enduml

The-Lum commented 4 months ago

Hello @grivo,

[Just for the record] See similar reported issue here:

Regards, Th.

grivo commented 4 months ago

oh, me bad: should i close this issue in favour of linked one?

The-Lum commented 4 months ago

Hello @grivo, and all,

For:

Is <<task>> stereotype the only out of the box way to create object at activity diagram, btw?

See this part on the doc.:

Then:

Thanks for the report. Regards, Th.

The-Lum commented 4 months ago

Duplicate of #1534

The-Lum commented 3 months ago

Hi @grivo,

This is now fixed (by 6c945e25)

Regards.