42 lines
728 B
CSS
42 lines
728 B
CSS
|
|
.__PFX__-breadcrumb {
|
|
margin: 12px 0;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
color: var(--text-muted-color);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.__PFX__-breadcrumb a {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.__PFX__-breadcrumb a:hover {
|
|
color: var(--primary-color);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.__PFX__-breadcrumb .sep {
|
|
margin: 0 6px;
|
|
color: var(--text-muted-color);
|
|
}
|
|
|
|
.__PFX__-breadcrumb .current {
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Family B */
|
|
.__PFX__-breadcrumb.B .label {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
/* Family D */
|
|
.__PFX__-breadcrumb.D .prefix {
|
|
margin-right: 6px;
|
|
color: var(--text-color);
|
|
}
|