From 98ef022acb8e2f80d908e2b89f66851921150490 Mon Sep 17 00:00:00 2001 From: Laura Sach <5183697+lawsie@users.noreply.github.com> Date: Thu, 6 Aug 2026 10:23:02 +0100 Subject: [PATCH] Add visible shadow to workspace comments --- style/blockly.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/style/blockly.css b/style/blockly.css index 3f5cbea7..58c77b73 100644 --- a/style/blockly.css +++ b/style/blockly.css @@ -164,6 +164,18 @@ textarea.blocklyCommentText::placeholder { color: #000 !important; } +.blocklySelected .blocklyCommentHighlight, +.blocklyCollapsed.blocklySelected .blocklyCommentTopbarBackground { + stroke: #511d91 !important; + stroke-width: 5px !important; + vector-effect: non-scaling-stroke !important; + filter: + drop-shadow(2px 0 0 #fff) + drop-shadow(-2px 0 0 #fff) + drop-shadow(0 2px 0 #fff) + drop-shadow(0 -2px 0 #fff) !important; +} + .blocklyTreeRow { border-left: none !important; }