51 lines
954 B
SCSS
51 lines
954 B
SCSS
.breadcrumb {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
background-color: white;
|
|
}
|
|
/*! This comment will be included even in compressed mode. */
|
|
.navbar-breadcrumbs {
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--ink-gray-5);
|
|
font-weight: var(--weight-medium);
|
|
letter-spacing: get_letterspacing("sm", "regular");
|
|
&:hover {
|
|
color: var(--ink-gray-7);
|
|
}
|
|
&:before {
|
|
// content: #{"/*!rtl:var(--left-arrow-svg);*/"}var(--right-arrow-svg);
|
|
content: "/";
|
|
display: inline-block;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
color: var(--ink-gray-4);
|
|
font-size: 14px;
|
|
line-height: 1.15;
|
|
letter-spacing: 0.02em;
|
|
font-weight: 420;
|
|
}
|
|
}
|
|
|
|
&.mobile-no-divider {
|
|
a:before {
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
li:first-child a:before {
|
|
// no angle before first item
|
|
content: none;
|
|
}
|
|
|
|
li.disabled {
|
|
a {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
li:last-child > a {
|
|
font-weight: var(--weight-medium);
|
|
color: var(--ink-gray-9) !important;
|
|
}
|
|
}
|