style/list view: handle the title and attributes when overflowing the container

This commit is contained in:
Adorian Doran 2026-02-15 14:08:50 +02:00
parent 4afbabb977
commit fea8de89c6

View File

@ -153,6 +153,7 @@
.note-list-attributes {
flex-grow: 1;
margin-inline-start: 1em;
text-align: right;
font-size: .75em;
opacity: .75;
@ -160,6 +161,16 @@
.nested-note-list-item-menu {
margin-inline-start: 8px;
flex-shrink: 0;
}
}
.nested-note-list:not(.search-results) h5 {
span.tn-icon + span,
.note-list-attributes {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}