Breadcrumb label and items on single line

Add flex layout to .mod-breadcrumbs so the "You are here" label
and breadcrumb list sit inline. Label floats left with margin.
Bump to 03.09.12.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-08 00:16:54 -05:00
parent a70e74c72a
commit b6e7c64786
2 changed files with 16 additions and 1 deletions

View File

@@ -14764,6 +14764,21 @@ iframe {
}
/* Breadcrumbs module */
.mod-breadcrumbs {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.mod-breadcrumbs__here {
float: left;
font-weight: 600;
white-space: nowrap;
color: var(--body-font-color, #444);
margin-right: 0.5rem;
}
.mod-breadcrumbs .breadcrumb {
background: transparent;
padding: 0;