From 894c874baf665fcacb76a4e567db955b78513783 Mon Sep 17 00:00:00 2001 From: Charles Hedrick Date: Wed, 20 Apr 2016 12:29:17 -0400 Subject: [PATCH] LSNBLDR-611; break long unbreakable words --- lessonbuilder/tool/src/webapp/css/Simplepagetool.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lessonbuilder/tool/src/webapp/css/Simplepagetool.css b/lessonbuilder/tool/src/webapp/css/Simplepagetool.css index 222486a98c9a..44635edf045a 100644 --- a/lessonbuilder/tool/src/webapp/css/Simplepagetool.css +++ b/lessonbuilder/tool/src/webapp/css/Simplepagetool.css @@ -44,6 +44,16 @@ /* end override */ +/* wrap unbreakable words */ +#content { + word-wrap:break-word; + overflow-wrap:break-word; +} +/* without this, these divs expand beyond the width of the column if there's an unbreakable word */ +.right-col, .contentCol { + max-width:100%; +} + .title-tools h2{ padding-top: 0px; }