From d87a2c2d2d5db2dbd479aede47ad1b6848078f91 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 2 Jul 2018 22:18:42 -0400 Subject: [PATCH] Adjust pointer css for note markers This sets `pointer-events: none` for the `.note-shadow` class, to fix an amusing bug where hovering over the filled part of the comment icon would work ok but hovering over the "dots" would not. --- css/65_data.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/65_data.css b/css/65_data.css index 788c0e9eb..0b4db4d47 100644 --- a/css/65_data.css +++ b/css/65_data.css @@ -3,16 +3,16 @@ .layer-notes { pointer-events: none; } -.layer-notes * { - pointer-events: visible; - cursor: pointer; -} .layer-notes .note .note-shadow { color: #000; + pointer-events: none; } .layer-notes .note .note-fill { color: #ff3300; + pointer-events: visible; + cursor: pointer; /* Opera */ + cursor: url(img/cursor-select-point.png), pointer; /* FF */ } .layer-notes .note.closed .note-fill { color: #55dd00;