We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can I do something like the following so that b1, b11 and b12 are all in color lightgreen?
@startmindmap <style> mindmapDiagram { b1{ BackgroundColor lightgreen } } </style> + root ++ b1 +++ b11 +++ b12 ++ b2 @endmindmap
The text was updated successfully, but these errors were encountered:
Hello @hyansuper,
It is not yet implemented. See Wanted features od Defect here:
But, here is a possible workaround:
@startmindmap + root <style> node { BackgroundColor lightgreen } </style> ++ b1 +++ b11 +++ b12 'Then goto normal BackgroundColor <style> node { BackgroundColor #f1f1f1 } </style> ++ b2 @endmindmap
Regards.
Sorry, something went wrong.
Hi all,
[This is an Issue Review] This is now fixed (from 2022 Summer) with:
@startmindmap <style> mindmapDiagram { .lg * { BackgroundColor lightgreen } } </style> + root ++ b1 <<lg>> +++ b11 +++ b12 ++ b2 @endmindmap
No branches or pull requests
how can I do something like the following so that b1, b11 and b12 are all in color lightgreen?
The text was updated successfully, but these errors were encountered: