From 54d4a95cc4b38d70c15070dbcec4818912391019 Mon Sep 17 00:00:00 2001 From: Matt Keenan Date: Tue, 26 Nov 2024 10:36:39 -0500 Subject: [PATCH] Make main cell always selected --- src/haz3lweb/www/style/cell.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/haz3lweb/www/style/cell.css b/src/haz3lweb/www/style/cell.css index 248be845e..a5d0a3a2f 100644 --- a/src/haz3lweb/www/style/cell.css +++ b/src/haz3lweb/www/style/cell.css @@ -51,6 +51,14 @@ gap: 1em; } +.Scratch .cell { + background-color: var(--cell-active); +} + +.Documentation .cell { + background-color: var(--cell-active); +} + .cell:has(.code-editor.selected) { background-color: var(--cell-active); }