summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2013-02-12 11:06:45 -0800
committerJohn McLear <john@mclear.co.uk>2013-02-12 11:06:45 -0800
commit14dca926927b0c68e0498068f6163e48d3ea5468 (patch)
tree90b1087744660847e9f2297f7fcf283b072d3f2b
parent760bebc429c155d6aae0e3d47c78f8c4a7c694d7 (diff)
parent2f2046144554bf431d88c3a5167fba1fe039bc12 (diff)
downloadetherpad-lite-14dca926927b0c68e0498068f6163e48d3ea5468.zip
Merge pull request #1505 from ether/fix-for-long-strings
very simple fix that might break other things but stops the caret focus ...
-rw-r--r--src/static/css/iframe_editor.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/static/css/iframe_editor.css b/src/static/css/iframe_editor.css
index 5134fcdb..dd7452b2 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; /* Stops super long lines without being spaces such as aaaaaaaaaaaaaa*100 breaking the editor */
+}