Theme: Disabled elements can still be focused with a click

pointer-events: none; fixes this in chrome, safari, and firefox.
IE and opera both show no focus styles on click, so lack of
pointer-events support in old ie is not a problem.

Fixes #10573
Closes gh-1330
This commit is contained in:
Alexander Schmitz 2014-08-29 11:15:22 -04:00
parent 3ecbe7867a
commit 7137c90b18

View File

@ -62,6 +62,7 @@
----------------------------------*/
.ui-state-disabled {
cursor: default !important;
pointer-events: none;
}