# HG changeset patch # User domruf # Date 1509218119 -7200 # Node ID adf1dd34f3a0a77ec44d71c052e1c80bcec77044 # Parent 1ea5d93c97de4249dbe35ad54637ed4be44d3b4e less: don't break author, date and comment cells into multiple lines in changeset table diff -r 1ea5d93c97de -r adf1dd34f3a0 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sat Oct 28 19:25:26 2017 +0200 +++ b/kallithea/public/css/style.css Sat Oct 28 21:15:19 2017 +0200 @@ -113,6 +113,12 @@ cursor: pointer; color: #999; } +/* don't break author, date and comment cells into multiple lines in changeset table */ +table.changesets .author, +table.changesets .date, +table.changesets .comments { + white-space: nowrap; +} .form-group > label { float: left; } diff -r 1ea5d93c97de -r adf1dd34f3a0 kallithea/public/less/style.less --- a/kallithea/public/less/style.less Sat Oct 28 19:25:26 2017 +0200 +++ b/kallithea/public/less/style.less Sat Oct 28 21:15:19 2017 +0200 @@ -126,6 +126,15 @@ color: #999; } +/* don't break author, date and comment cells into multiple lines in changeset table */ +table.changesets { + .author, + .date, + .comments { + white-space: nowrap; + } +} + .form-group > label { float: left; }