mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 05:13:39 +08:00
2ed8f96e67
This uses a new nav style with the heirarchy: ``` Breadcrumbs |- Title |- Description |- Third-Level Navigation ``` The navigation bar uses the transparent red-underlined buttons similar to the user activity page. Over time all admin pages will use this, but this starts with the new plugin show page. --------- Co-authored-by: Ella <ella.estigoy@gmail.com>
22 lines
372 B
SCSS
22 lines
372 B
SCSS
.d-breadcrumbs {
|
|
display: flex;
|
|
margin: var(--space-2) 0 var(--space-4) 0;
|
|
|
|
&__item {
|
|
list-style-type: none;
|
|
}
|
|
|
|
&__link,
|
|
&__link:visited {
|
|
color: var(--primary-medium);
|
|
}
|
|
|
|
li:not(:last-child) a::after {
|
|
display: inline;
|
|
padding: 0 var(--space-1);
|
|
margin-right: var(--space-1);
|
|
font-size: var(--font-down-1);
|
|
content: ">";
|
|
}
|
|
}
|