Merge pull request #200 from CartoDB/disable-pointerevents-in-disabled-buttons

Disable pointer events in disabled buttons
This commit is contained in:
Jesús Botella 2018-06-14 12:21:39 +02:00 committed by GitHub
commit 34c8e8c816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,6 +175,10 @@ Layout Component:
&.is-disabled { &.is-disabled {
opacity: 0.24; opacity: 0.24;
cursor: default; cursor: default;
&:active {
pointer-events: none;
}
} }
} }