From 47cb598dc56be4122c700174973efc5f27ae7b4d Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 8 Oct 2025 19:46:43 -0400 Subject: [PATCH] fix select --- public/styles/git.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/public/styles/git.css b/public/styles/git.css index 7fef6fc..f0f68f3 100644 --- a/public/styles/git.css +++ b/public/styles/git.css @@ -1,5 +1,5 @@ .clone-line { - font-family: 'Apercu Mono', monospace !important; + font-family: 'Apercu Mono', monospace; font-size: 1.2em; margin: 0 1em; text-align: left; @@ -7,11 +7,17 @@ } .clone-line code { + background: transparent !important; all: unset; - font-family: 'Apercu Mono', monospace !important; - white-space: normal !important; + font-family: 'Apercu Mono', monospace; + white-space: normal; word-break: break-word; overflow-wrap: anywhere; line-height: 1.5; cursor: text; } + +.clone-line .prompt { + user-select: none; + -webkit-user-select: none; +}