You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure it this is intended or unintended, but the styles added through classDef will apply to all diagrams on a page that contains multiple diagrams. If we consider the example,
<div class = 'mermaid'>
graph TD;
classDef exClass opacity:0.5 !important;
a-->b;
class a exClass;
</div>
<div>
graph TD;
a-->b;
class a exClass;
</div>
If this is unintended, and isolating the class styles to only the diagram in which they are part of the spec, I think we can change this line from
I'm not sure it this is intended or unintended, but the styles added through
classDef
will apply to all diagrams on a page that contains multiple diagrams. If we consider the example,If this is unintended, and isolating the class styles to only the diagram in which they are part of the spec, I think we can change this line from
to
Thanks again for such a great project.
The text was updated successfully, but these errors were encountered: