changeset 4840:49521e9d20cb

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.
author Thomas De Schampheleire <thomas.de_schampheleire@alcatel-lucent.com>
date Fri, 20 Feb 2015 10:44:02 +0100
parents 1619d9ebc1b9
children bce8e20057e1
files kallithea/public/css/style.css
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Tue Feb 17 15:02:34 2015 -0800
+++ b/kallithea/public/css/style.css	Fri Feb 20 10:44:02 2015 +0100
@@ -2558,7 +2558,8 @@
 #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 {