Files
Trilium/apps/client/src/widgets/Breadcrumb.css
2025-12-08 22:17:49 +02:00

40 lines
699 B
CSS

.breadcrumb-row {
position: relative;
}
.component.breadcrumb {
contain: none;
margin: 0 10px;
display: flex;
align-items: center;
font-size: 0.9em;
gap: 0.25em;
flex-wrap: nowrap;
overflow: hidden;
> span,
> span > span {
display: flex;
align-items: center;
min-width: 0;
}
a {
color: inherit;
text-decoration: none;
min-width: 0;
max-width: 100px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
}
ul {
flex-direction: column;
list-style-type: none;
margin: 0;
padding: 0;
}
}