From e3fca90c39d6d16e8c430404482254a70b05d5e4 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 12 Oct 2025 01:02:10 +0100 Subject: [PATCH] webstead: mark :active pixels This makes it more obvious that something is happening when the mouse button is pressed, even though the tickybox doesnt change state until it's released. Thus should make the UI feel less sluggish. --- webstead.xhtml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webstead.xhtml b/webstead.xhtml index f0df386..03877f2 100644 --- a/webstead.xhtml +++ b/webstead.xhtml @@ -34,6 +34,9 @@ height: var(--pix); border: 1px solid; } + #pixels input:active { + border: 3px solid; + } #pixels input:checked { background: currentColor; } -- 2.30.2