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 @@ -113,6 +113,12 @@ nav.navbar #logo > .navbar-brand > img { 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 --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -126,6 +126,15 @@ nav.navbar #logo > .navbar-brand > img { 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; }