client: recent changes list: make possible to use a distinct style for items referencing deleted notes

This commit is contained in:
Adorian Doran 2024-12-13 02:59:04 +02:00
parent 5caf4c2461
commit 5d4dd8bc0a
2 changed files with 4 additions and 1 deletions

View File

@ -127,6 +127,9 @@ export default class RecentChangesDialog extends BasicWidget {
appContext.tabManager.getActiveContext().setNote(change.noteId);
}
})
.addClass(() => {
if (change.current_isDeleted) return "deleted-note";
})
.append(
$("<span>")
.text(formattedTime)

View File

@ -1314,7 +1314,7 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
border: 1px solid transparent;
}
.recent-changes-content li:hover {
.recent-changes-content li:not(.deleted-note):hover {
border-color: var(--hover-item-border-color);
background: var(--hover-item-background-color);
color: var(--hover-item-text-color);