1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00

Fixed text color for notes in diagrams in dark mode (#4518)

fixes #4517
This commit is contained in:
Brendan 2022-11-03 06:21:54 -07:00 committed by GitHub
parent 941d634b78
commit 96e2119bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -346,6 +346,11 @@ line {
stroke: none; stroke: none;
} }
/* make statically colored note nodes use a statically color text */
.noteText > tspan {
fill: #000;
}
/* Sequence arrow head */ /* Sequence arrow head */
#arrowhead path { #arrowhead path {
fill: var(--md-mermaid-edge-color); fill: var(--md-mermaid-edge-color);