From 7137c90b1883bc19f23678582170e9df981a084d Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Fri, 29 Aug 2014 11:15:22 -0400 Subject: [PATCH] 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 --- themes/base/core.css | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.39.5