From 79ec30f30b6edbf286f7828b91b75e04dbdaa671 Mon Sep 17 00:00:00 2001 From: Manuel Date: Wed, 7 Apr 2021 15:28:37 +0200 Subject: [PATCH] Prevent line numbers from being selectable When selecting everything (Ctrl+A) the line numbers should not be selected --- static/application.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/application.css b/static/application.css index 678faea..fe7668b 100644 --- a/static/application.css +++ b/static/application.css @@ -180,3 +180,7 @@ textarea { #messages li.error { background:rgba(102,8,0,0.8); } + +#lineos { + user-select: none; +} \ No newline at end of file