From 2fec5ee867cbfe065b4e304afd033fd973c9381f Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 15 Sep 2016 15:34:04 -0700 Subject: [PATCH] Fix text wrapping on long urls in ios theme // FREEBIE --- stylesheets/_themes.scss | 2 ++ stylesheets/manifest.css | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/stylesheets/_themes.scss b/stylesheets/_themes.scss index 1eef80d3..67e04fba 100644 --- a/stylesheets/_themes.scss +++ b/stylesheets/_themes.scss @@ -100,6 +100,8 @@ $ios-border-color: rgba(0,0,0,0.1); display: inline-block; padding: 10px; position: relative; + word-break: break-word; + &:before, &:after { content: ''; display: block; diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index bcc918a1..50628b44 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -1423,7 +1423,8 @@ li.entry .error-icon-container { .ios .bubble .content .body { display: inline-block; padding: 10px; - position: relative; } + position: relative; + word-break: break-word; } .ios .bubble .content .body:before, .ios .bubble .content .body:after { content: ''; display: block;