summaryrefslogtreecommitdiff
path: root/src/static/css
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2015-04-06 13:19:42 +0100
committerJohn McLear <john@mclear.co.uk>2015-04-06 13:19:42 +0100
commit7e99724feca660bbf97d1dec98457e79a6b861f1 (patch)
treebc359866a50223e08fddb221ca2cefe54f0ff859 /src/static/css
parente02708313623fa90600c1f6a24f17a01eff4aec8 (diff)
parenta5aa58e28bb9fcd5d645898077a77086a13145eb (diff)
downloadetherpad-lite-7e99724feca660bbf97d1dec98457e79a6b861f1.zip
Merge branch 'develop' of github.com:ether/etherpad-lite into editbar-accessibility
Diffstat (limited to 'src/static/css')
-rw-r--r--src/static/css/iframe_editor.css13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/static/css/iframe_editor.css b/src/static/css/iframe_editor.css
index eb69364b..c32ae3f0 100644
--- a/src/static/css/iframe_editor.css
+++ b/src/static/css/iframe_editor.css
@@ -98,7 +98,18 @@ body.grayedout { background-color: #eee !important }
}
body.doesWrap {
- white-space: pre-wrap; /*Must be pre-wrap to keep trailing spaces. Otherwise you get a zombie caret, walking around your screen (see #1766), WARNING: Enabling this causes Paste as plain text in Chrome to remove line breaks, this is probably undesirable */
+ /* white-space: pre-wrap; */
+
+ /*
+ Must be pre-wrap to keep trailing spaces. Otherwise you get a zombie caret,
+ walking around your screen (see #1766).
+ WARNING: Enabling this causes Paste as plain text in Chrome to remove line breaks
+ this is probably undesirable
+ WARNING: This causes copy & paste events to lose bold etc. attributes
+ NOTE: The walking-zombie caret issue seems to have been fixed in FF upstream
+ so let's try diabling pre-wrap and see how we get on now.
+ For more details see: https://github.com/ether/etherpad-lite/issues/2574
+ */
word-wrap: break-word; /* fix for issue #1648 - firefox not wrapping long lines (without spaces) correctly */
}