Skip to content

Commit 1ec52ed

Browse files
committed
improvement: cursor: default if btn:disabled
This is primarily to target the "phone" icon in "call" messages. I have searched for `<(icon)?button(.|\n){1,400}?disabled` and there are only 7 matches, and in those matches, no matter if they're actually affected or not, I think it makes sense to have `cursor: default`.
1 parent b351456 commit 1ec52ed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/frontend/scss/_global.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ button {
7575
font-size: inherit;
7676
user-select: none;
7777
}
78+
button:disabled {
79+
cursor: default;
80+
}
7881

7982
a {
8083
color: var(--globalLinkColor);

0 commit comments

Comments
 (0)