mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-23 22:14:42 +01:00
Make everything inside buttons un-pointer-able
Gets annoying when getting e.target from interacting with buttons
This commit is contained in:
parent
6397b2d67b
commit
75f03cf0eb
1 changed files with 2 additions and 1 deletions
|
@ -118,8 +118,9 @@ button,
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
button > * {
|
:is(button, .button) > * {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
:is(button, .button):not(:disabled, .disabled):hover {
|
:is(button, .button):not(:disabled, .disabled):hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
Loading…
Add table
Reference in a new issue