mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 02:05:39 +03: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;
|
||||
text-decoration: none;
|
||||
}
|
||||
button > * {
|
||||
:is(button, .button) > * {
|
||||
vertical-align: middle;
|
||||
pointer-events: none;
|
||||
}
|
||||
:is(button, .button):not(:disabled, .disabled):hover {
|
||||
cursor: pointer;
|
||||
|
|
Loading…
Reference in a new issue