]> source.dussan.org Git - jquery-ui.git/commitdiff
Theme: Disabled elements can still be focused with a click
authorAlexander Schmitz <arschmitz@gmail.com>
Fri, 29 Aug 2014 15:15:22 +0000 (11:15 -0400)
committerAlexander Schmitz <arschmitz@gmail.com>
Fri, 16 Jan 2015 13:56:22 +0000 (08:56 -0500)
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

themes/base/core.css

index 75cfa9268a0b5bc91ed8502711b2aecb3a7c99d0..4a39cd39560ad01cc04db5647ab91578ec810887 100644 (file)
@@ -62,6 +62,7 @@
 ----------------------------------*/
 .ui-state-disabled {
        cursor: default !important;
+       pointer-events: none;
 }