From d95be72a5f05e5ed6f0460ff42a31eb0be4348ae 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 --- themes/base/core.css | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/base/core.css b/themes/base/core.css index e66fcf32a3b..607a9588164 100644 --- a/themes/base/core.css +++ b/themes/base/core.css @@ -65,6 +65,7 @@ ----------------------------------*/ .ui-state-disabled { cursor: default !important; + pointer-events: none; }