From e457e6a2f2868cf26f908b62b7d80547af86eae6 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 25 Aug 2025 21:07:09 +0300 Subject: [PATCH 01/13] style/note icon buttons: fade the color and use the default cursor when disabled --- apps/client/src/widgets/note_icon.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/client/src/widgets/note_icon.css b/apps/client/src/widgets/note_icon.css index 67eeadecf..cb067a7f6 100644 --- a/apps/client/src/widgets/note_icon.css +++ b/apps/client/src/widgets/note_icon.css @@ -10,13 +10,14 @@ font-size: 180%; background-color: transparent; border: 1px solid transparent; - cursor: pointer; padding: 6px; - color: var(--main-text-color); + cursor: pointer; + color: var(--muted-text-color); } - -.note-icon-widget button.note-icon:hover { - border: 1px solid var(--main-border-color); + +.note-icon-widget button.note-icon:disabled { + cursor: default; + opacity: .75; } .note-icon-widget .dropdown-menu { From b9101c9fb2cb0a31bd3431e9591ee8d070146b6f Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 25 Aug 2025 21:12:26 +0300 Subject: [PATCH 02/13] style/delete note dialog: tweak layout --- apps/client/src/widgets/dialogs/delete_notes.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/dialogs/delete_notes.tsx b/apps/client/src/widgets/dialogs/delete_notes.tsx index b16fafd0a..bb1b4e7cd 100644 --- a/apps/client/src/widgets/dialogs/delete_notes.tsx +++ b/apps/client/src/widgets/dialogs/delete_notes.tsx @@ -113,10 +113,10 @@ function DeletedNotes({ noteIdsToBeDeleted }: { noteIdsToBeDeleted: DeleteNotesP if (noteIdsToBeDeleted.length) { return ( -
+

{t("delete_notes.notes_to_be_deleted", { notesCount: noteIdsToBeDeleted.length })}

-