mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
39 lines
717 B
SCSS
39 lines
717 B
SCSS
.nav-breadcrumb {
|
|
background-color: var(--ds-breadcrumb-bg);
|
|
}
|
|
|
|
.breadcrumb {
|
|
border-radius: 0;
|
|
padding-bottom: calc(var(--ds-content-spacing) / 2);
|
|
padding-top: calc(var(--ds-content-spacing) / 2);
|
|
background-color: var(--ds-breadcrumb-bg);
|
|
}
|
|
|
|
li.breadcrumb-item {
|
|
display: flex;
|
|
}
|
|
|
|
.breadcrumb-item-limiter {
|
|
display: inline-block;
|
|
max-width: var(--ds-breadcrumb-max-length);
|
|
> * {
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
li.breadcrumb-item {
|
|
a {
|
|
color: var(--ds-breadcrumb-link-color);
|
|
}
|
|
}
|
|
|
|
li.breadcrumb-item.active {
|
|
color: var(--ds-breadcrumb-link-active-color);
|
|
}
|
|
|
|
.breadcrumb-item+ .breadcrumb-item::before {
|
|
display: block;
|
|
content: quote("•") !important;
|
|
}
|