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

View File

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