# HG changeset patch # User Mads Kiilerich # Date 2017-08-28 05:25:39 # 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 --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 @@ -1464,9 +1464,10 @@ tr.out-of-range { } #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 @@ tr.out-of-range { } #graph_content tr .mid { + width: 100%; padding: 0; }