From e457e6a2f2868cf26f908b62b7d80547af86eae6 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 25 Aug 2025 21:07:09 +0300 Subject: [PATCH] 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 {