From 5624d1158eccf41658f40705eb89b16b999c5dd8 Mon Sep 17 00:00:00 2001 From: Alex Kitchens Date: Fri, 19 Aug 2016 13:22:23 -0500 Subject: [PATCH] Increase margin-bottom for doc's code syntax highlighter Fixes #25744 by slightly increasing the margin in code syntax highlights. With a margin of 0, it was cutting off underscores in Linux browesers, so I slightly increased it to 0.5px. --- guides/assets/stylesheets/syntaxhighlighter/shCore.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/assets/stylesheets/syntaxhighlighter/shCore.css b/guides/assets/stylesheets/syntaxhighlighter/shCore.css index 34f6864a15..7e1e199343 100644 --- a/guides/assets/stylesheets/syntaxhighlighter/shCore.css +++ b/guides/assets/stylesheets/syntaxhighlighter/shCore.css @@ -33,7 +33,7 @@ height: auto !important; left: auto !important; line-height: 1.1em !important; - margin: 0 !important; + margin: 0 0 0.5px 0 !important; outline: 0 !important; overflow: visible !important; padding: 0 !important; -- GitLab