# HG changeset patch # User Mads Kiilerich # Date 1503890739 -7200 # Node ID fa55523f37906302747faa0d1e885e3705e1c8ec # Parent f77ef41b39aaf09be51b6e1897649365489efb5b changelog: fix column sizing - don't expand the date column but give everything to the description column The date column inherited 33% width - for now, just work around that. diff -r f77ef41b39aa -r fa55523f3790 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sun Aug 27 16:39:35 2017 +0200 +++ b/kallithea/public/css/style.css Mon Aug 28 05:25:39 2017 +0200 @@ -1464,9 +1464,10 @@ } #graph_content tr .date { - width: 76px; + width: auto !important; color: #666; font-size: 10px; + white-space: nowrap; } #graph_content_pr .compare_view_commits .expand_commit, @@ -1484,6 +1485,7 @@ } #graph_content tr .mid { + width: 100%; padding: 0; }