From 4aed73d94729651a9aebe30e6aea1f20fdae675a Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 29 Jun 2012 13:34:01 -0600 Subject: [PATCH] Selections don't absorb click events Clicking on a selection was causing the click event not to reach the editor, which was causing the editor to lose focus. Using CSS to disallow pointer events on selection region elements fixes this. --- static/editor.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/editor.css b/static/editor.css index 8bcb7a94a..4780e5b2d 100644 --- a/static/editor.css +++ b/static/editor.css @@ -107,4 +107,5 @@ position: absolute; background: white; opacity: .25; + pointer-events: none; }