Use cursor pointer for buttons

I'm usually not a fan of changing the default browser styles for
things like the cursor image, but here it actually improves
accessibility: it's clearer for the user what can be clicked on.

Closes: https://todo.sr.ht/~emersion/gamja/81
This commit is contained in:
Simon Ser 2021-06-11 14:46:45 +02:00
parent f875426826
commit 2203553519

View file

@ -67,6 +67,7 @@ button {
border-color: var(--button-border); border-color: var(--button-border);
border-width: 1px; border-width: 1px;
font-size: 0.8rem; font-size: 0.8rem;
cursor: pointer;
} }
button:hover { button:hover {
@ -351,6 +352,7 @@ a.nick:hover, a.nick:active {
details summary[role="button"] { details summary[role="button"] {
user-select: none; user-select: none;
cursor: pointer;
} }
#buffer { #buffer {