Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 206905b

Browse files
committed
style(next)/ribbon: improve the appearance of the Edited Notes list
1 parent e3d1ecc commit 206905b

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

apps/client/src/stylesheets/theme-next/ribbon.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,25 @@ div.editability-dropdown a.dropdown-item {
108108
font-size: 0.85em;
109109
}
110110

111+
/*
112+
* Edited notes (for calendar notes)
113+
*/
114+
115+
/* The path of the note */
116+
.edited-notes-list small {
117+
margin-inline-start: 4px;
118+
font-size: inherit;
119+
color: var(--muted-text-color);
120+
}
121+
122+
.edited-notes-list small::before {
123+
content: "(";
124+
}
125+
126+
.edited-notes-list small::after {
127+
content: ")";
128+
}
129+
111130
/*
112131
* Owned attributes
113132
*/

apps/client/src/widgets/ribbon_widgets/edited_notes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const TPL = /*html*/`
1919
2020
<div class="no-edited-notes-found">${t("edited_notes.no_edited_notes_found")}</div>
2121
22-
<div class="edited-notes-list"></div>
22+
<div class="edited-notes-list use-tn-links"></div>
2323
</div>
2424
`;
2525

0 commit comments

Comments
 (0)