style/note icon buttons: fade the color and use the default cursor when disabled

This commit is contained in:
Adorian Doran
2025-08-25 21:07:09 +03:00
committed by Elian Doran
parent f3416fa03e
commit e457e6a2f2

View File

@@ -10,13 +10,14 @@
font-size: 180%; font-size: 180%;
background-color: transparent; background-color: transparent;
border: 1px solid transparent; border: 1px solid transparent;
cursor: pointer;
padding: 6px; padding: 6px;
color: var(--main-text-color); cursor: pointer;
color: var(--muted-text-color);
} }
.note-icon-widget button.note-icon:hover { .note-icon-widget button.note-icon:disabled {
border: 1px solid var(--main-border-color); cursor: default;
opacity: .75;
} }
.note-icon-widget .dropdown-menu { .note-icon-widget .dropdown-menu {