From 1371fa615d61fef0200997ed718866dd6ff95f13 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 20:20:41 -0500 Subject: [PATCH] Fix sidenote selection highlight showing through MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added vendor prefixes for user-select and transparent selection background to prevent sidenotes from showing blue highlight when selecting verse text. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/chapter.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kjvstudy_org/templates/chapter.html b/kjvstudy_org/templates/chapter.html index 8f2c073..a0f1bc8 100644 --- a/kjvstudy_org/templates/chapter.html +++ b/kjvstudy_org/templates/chapter.html @@ -48,6 +48,16 @@ transition: all 0.3s ease; position: relative; user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; +} + +.sidenote::selection, +.marginnote::selection, +.sidenote *::selection, +.marginnote *::selection { + background: transparent; } label.sidenote-number {