mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed Mermaid sequence diagram box colors
This commit is contained in:
parent
639dabff64
commit
97fd112fe7
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -240,7 +240,7 @@
|
||||
</script>
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script src="{{ 'assets/javascripts/bundle.407015b8.min.js' | url }}"></script>
|
||||
<script src="{{ 'assets/javascripts/bundle.51198bba.min.js' | url }}"></script>
|
||||
{% for path in config.extra_javascript %}
|
||||
<script src="{{ path | url }}"></script>
|
||||
{% endfor %}
|
||||
|
@ -397,6 +397,17 @@ line {
|
||||
fill: var(--md-accent-bg-color);
|
||||
}
|
||||
|
||||
/* Sequence rectangle */
|
||||
rect.rect {
|
||||
fill: var(--md-mermaid-node-bg-color);
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
/* Sequence rectangle text */
|
||||
rect.rect + text.text {
|
||||
fill: var(--md-mermaid-edge-color);
|
||||
}
|
||||
|
||||
/* Sequence diagram markers */
|
||||
defs #sequencenumber {
|
||||
fill: var(--md-mermaid-node-fg-color) !important;
|
||||
|
Loading…
Reference in New Issue
Block a user