From 721a946d77b2c07170273bcbc5b9dcc968829d6d Mon Sep 17 00:00:00 2001 From: Bianca Nenciu Date: Wed, 25 Aug 2021 16:34:01 +0300 Subject: [PATCH] FIX: Remove spacing from GitHub oneboxes (#14147) Each code line was surrounded by a lot of white space. The new styles are similar to what the web interface is using. --- lib/email/styles.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/email/styles.rb b/lib/email/styles.rb index c848ecf6159..1f3edce1879 100644 --- a/lib/email/styles.rb +++ b/lib/email/styles.rb @@ -212,7 +212,8 @@ module Email style('span.post-count', 'margin: 0 5px; color: #777;') style('pre', 'word-wrap: break-word; max-width: 694px;') style('code', 'background-color: #f9f9f9; padding: 2px 5px;') - style('pre code', 'display: block; background-color: #f9f9f9; overflow: auto; padding: 5px;') + style('pre code', 'display: block; background-color: #f9f9f9; overflow: auto; padding: 5px; white-space: normal;') + style('pre code li', 'white-space: pre;') style('.featured-topic a', "text-decoration: none; font-weight: bold; color: #{SiteSetting.email_link_color}; line-height:1.5em;") style('.summary-email', "-moz-box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-box-sizing:border-box;-webkit-text-size-adjust:100%;box-sizing:border-box;color:#0a0a0a;font-family:Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.3;margin:0;min-width:100%;padding:0;width:100%")