diff options
author | John McLear <john@mclear.co.uk> | 2013-02-12 11:06:45 -0800 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-02-12 11:06:45 -0800 |
commit | 14dca926927b0c68e0498068f6163e48d3ea5468 (patch) | |
tree | 90b1087744660847e9f2297f7fcf283b072d3f2b /src/static/css/iframe_editor.css | |
parent | 760bebc429c155d6aae0e3d47c78f8c4a7c694d7 (diff) | |
parent | 2f2046144554bf431d88c3a5167fba1fe039bc12 (diff) | |
download | etherpad-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 ...
Diffstat (limited to 'src/static/css/iframe_editor.css')
-rw-r--r-- | src/static/css/iframe_editor.css | 4 |
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 */ +} |