Made image file names appear fully in breadcrumbs.
This commit is contained in:
@@ -152,6 +152,14 @@ body {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.crumb-link-full {
|
||||||
|
color: var(--text);
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 15px;
|
||||||
|
max-width: 240px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.crumb-link:hover {
|
.crumb-link:hover {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -112,7 +112,7 @@
|
|||||||
{% if crumb.path %}
|
{% if crumb.path %}
|
||||||
<a href="{{ crumb.path }}" class="crumb-link">{{ crumb.label }}</a>
|
<a href="{{ crumb.path }}" class="crumb-link">{{ crumb.label }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="crumb-link">{{ crumb.label }}</span>
|
<span class="crumb-link-full">{{ crumb.label }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user