Commit e488e709 authored by Adam Conrad's avatar Adam Conrad

Update buttons.less to disable btn pointer events

Buttons that are disabled are still clickable and can still fire click events (such as hopping up to the top of the page if your anchor href points to "#"). Adding the pointer-events:none property will truly disable the button so situations like this don't happen. 
parent d0e1b566
......@@ -42,6 +42,7 @@
&[disabled],
fieldset[disabled] & {
cursor: default;
pointer-events: none;
.opacity(.65);
.box-shadow(none);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment