From 0136ff95e2357dec76b1613cba52765be87554f2 Mon Sep 17 00:00:00 2001 From: Peter Foster Date: Sun, 22 Feb 2026 11:52:05 +0000 Subject: [PATCH] CSS: fix flashing cursor by adding cursor:default to html element Browser UA stylesheet sets cursor:auto on , causing I-beam cursor to flash on text content in Firefox/Safari even with body{cursor:default}. Adding cursor:default to the html{} block in both CSS files ensures the root element has explicit arrow cursor everywhere. --- assets/css/main.css | 1 + assets/css/main.min.css | 1 + 2 files changed, 2 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index f39f204..f801acc 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -7,6 +7,7 @@ html { scroll-behavior: smooth; + cursor: default; } body { diff --git a/assets/css/main.min.css b/assets/css/main.min.css index 4346a2d..13440cf 100644 --- a/assets/css/main.min.css +++ b/assets/css/main.min.css @@ -7,6 +7,7 @@ html { scroll-behavior: smooth; + cursor: default; } body {