From: Alexander Schmitz Date: Fri, 29 Aug 2014 15:15:22 +0000 (-0400) Subject: Theme: Disabled elements can still be focused with a click X-Git-Tag: 1.12.0-beta.1~452 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7137c90b1883bc19f23678582170e9df981a084d;p=jquery-ui.git 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 --- diff --git a/themes/base/core.css b/themes/base/core.css index 75cfa9268..4a39cd395 100644 --- a/themes/base/core.css +++ b/themes/base/core.css @@ -62,6 +62,7 @@ ----------------------------------*/ .ui-state-disabled { cursor: default !important; + pointer-events: none; }