mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
37 lines
762 B
SCSS
37 lines
762 B
SCSS
.nav-breadcrumb {
|
|
background-color: var(--ds-breadcrumb-bg);
|
|
}
|
|
|
|
.breadcrumb {
|
|
border-radius: 0;
|
|
margin-top: calc(-1 * var(--ds-content-spacing));
|
|
padding-bottom: var(--ds-content-spacing / 3);
|
|
padding-top: var(--ds-content-spacing / 3);
|
|
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) !important;
|
|
}
|
|
li.breadcrumb-item.active {
|
|
color: var(--ds-breadcrumb-link-active-color) !important;
|
|
}
|
|
|
|
.breadcrumb-item+ .breadcrumb-item::before {
|
|
display: block;
|
|
content: quote("•") !important;
|
|
}
|