From 5f73a5ec30202dee9b6e7710013160af28542e4a Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 12 Feb 2013 00:08:44 +0000 Subject: [PATCH] very simple fix that might break other things but stops the caret focus being moved to the end of new lines when a long string without spaces is pasted into a pad --- src/static/css/iframe_editor.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/static/css/iframe_editor.css b/src/static/css/iframe_editor.css index 5134fcdb1..34b562e76 100644 --- a/src/static/css/iframe_editor.css +++ b/src/static/css/iframe_editor.css @@ -176,3 +176,7 @@ p { } #overlaysdiv { position: absolute; left: -1000px; top: -1000px; } + +.ace-line{ + overflow:hidden; +}