From 3890e82f339dbf5dc29d9cffc8d7c26b99293fc1 Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sat, 26 Dec 2015 02:33:36 -0800 Subject: theme.css and template.html: Solve overflow problem in code and a tags Over-long inline tag or long literal link in tag used to overflow the container. This is especially bad on phones where width is very limited. This commit hopefully solves the overflow problem. Still no smarter word breaking, but it's probably just an unfortunate limitation of HTML. --- source/css/theme.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/css/theme.css') diff --git a/source/css/theme.css b/source/css/theme.css index 2394024e..74522d24 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -107,12 +107,15 @@ h2 { a { color: #333; + word-wrap: break-word; } code { font-size: 0.95em; color: #777; font-family: 'Droid Sans Mono', 'Courier', monospace; + white-space: pre-wrap; + word-wrap: break-word; } pre { @@ -131,6 +134,8 @@ pre code { font-size: 0.91em; line-height: 135%; color: #333; + white-space: pre; + word-wrap: normal; } blockquote { -- cgit v1.2.1