# HG changeset patch # User Thomas De Schampheleire # Date 2015-02-20 10:44:02 # Node ID 49521e9d20cbff48bd8460eeb66b0036f337cd67 # Parent 1619d9ebc1b9b40379c192ddb45e5802ecfb8f2b changelog: fix display artifacts in expanded multi-line commit messages When a multi-line commit message is expanded in a changelog, and the last line of the commit message has some characters that go below the baseline, like an underscore, g, j, y, ... the bottom part of these characters would not be shown. This is caused by the 'overflow: hidden' property set on the unexpanded message. Reset that property by adding 'overflow: initial' on the expanded class. Additionally, slightly enlarge the margin of the expanded message box. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -2558,7 +2558,8 @@ BIN_FILENODE = 6 #graph_content .container .mid .message.expanded, #graph_content_pr .compare_view_commits .message.expanded { height: auto; - margin: 4px 0px 4px 0px; + margin: 8px 0px 8px 0px; + overflow: initial; } #graph_content .container .extra-container {