* fix: More dark mode fixes This first commit increases contrast of the leftmenu text. * Fix own ballot position highlight in dark mode * Fix dark mode axis color in timeline diagrams * Enable highcharts dark mode * Fix template * Properly import our customized bs5 everywhere * Fix #6499 * Use bs5 color for border-left * Remove superfluous load
12 lines
368 B
HTML
12 lines
368 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% origin %}
|
|
{% for p in parents %}
|
|
<li class="dropend group-menu group-parent-{{ p.id }}">
|
|
<a class="dropdown-item dropdown-toggle {% if flavor != 'top' %}text-wrap{% endif %}"
|
|
href="{{ p.menu_url }}">
|
|
{{ p.short_name }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|