mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
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:
parent
f875426826
commit
2203553519
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue