From 2be718287fd59fcc5be3d54b7d84cbf934309ecd Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Thu, 13 Nov 2025 19:45:40 -0500 Subject: [PATCH 1/2] Change overflow to auto for show notes pre tags --- public_html/css/hpr.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 8210858..e2297f7 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -754,7 +754,7 @@ fieldset > table td input[type="radio"] { { background-color: var(--show-notes-pre-background); border: 1px solid #ddd; - overflow: scroll; + overflow: auto; padding: 0.1em 0; } nav.episodes { -- 2.43.5 From 23f91a04108dac118b194c3f0b40d79925aa6267 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Thu, 13 Nov 2025 19:55:35 -0500 Subject: [PATCH 2/2] Move highlighting to all show notes code tags --- public_html/css/hpr.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index e2297f7..cf66cbc 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -752,11 +752,14 @@ fieldset > table td input[type="radio"] { } #show_notes pre { + overflow: auto; +} +#show_notes code { + display: inline-block; background-color: var(--show-notes-pre-background); border: 1px solid #ddd; - overflow: auto; padding: 0.1em 0; -} +} nav.episodes { color: var(--background-primary); font-size: 0.9em; -- 2.43.5