#1955 Different selector in order to make it possible to change the text color for flowcharts vis classDef statements

This commit is contained in:
Knut Sveidqvist
2021-03-23 19:22:10 +01:00
parent a5cc75c1f7
commit 87458657f8
4 changed files with 44 additions and 18 deletions

View File

@@ -881,6 +881,17 @@ graph TD
`,
{htmlLabels: true, flowchart: {htmlLabels: true}, securityLevel: 'loose'}
);
it('65: text-color from classes', () => {
imgSnapshotTest(
`
flowchart LR
classDef dark fill:#000,stroke:#000,stroke-width:4px,color:#fff
Lorem --> Ipsum --> Dolor
class Lorem,Dolor dark
`,
{htmlLabels: true, flowchart: {htmlLabels: true}, securityLevel: 'loose'}
);
});
});