You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.1 KiB

.NoteList {
min-height: 80px;
height: 25%;
flex-basis: 1 1 content;
list-style-type: none;
border-color: black;
border-width: 1px;
border-style: groove;
border-top-style: none;
border-bottom-style: none;
margin: 0;
padding: 0;
text-align: left;
overflow-y: scroll;
}
.NoteList li:nth-child(even) {
background-color: #222222;
}
.NoteList li.selected {
background-color: orange;
color: black;
}
.NoteList li:hover {
cursor: pointer;
}
.NoteList .NoteListItem {
padding: 0 10px;
display: flex;
justify-content: space-between;
font-size: 9pt;
}
.NoteListItem .attributes {
display: flex;
justify-content: right;
align-items: center;
flex-basis: min-content;
max-width: 35%;
}
.NoteListItem .attributes .lastModified {
padding: 0 5px;
white-space: nowrap;
}
.NoteList .NoteListItem h2 {
flex: 0 1 min-content;
white-space: pre;
font-size: 1rem;
margin: auto;
}
.NoteListItem .preview {
overflow: hidden;
white-space: nowrap;
color: #777;
padding: 0 5px 0 10px;
text-overflow: ellipsis;
flex: 1 2 min-content;
}