Mercurial > hg-stable
changeset 18664:30d899febef8
hgweb: consistent author name width
Paper & coal use a sligtly shorter name length of 12em in the log view
than gitweb's 15em. Names too long for 12em is not entirely unheard
of, and hence increasing the length is appropriate; hgweb should
remain usable on 1024x768.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Sun, 10 Feb 2013 13:14:31 +0100 |
parents | 05cf40f9b0ec |
children | 2cbfb8c497ee |
files | mercurial/templates/static/style-coal.css mercurial/templates/static/style-paper.css |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/templates/static/style-coal.css Sun Feb 10 12:23:39 2013 -0800 +++ b/mercurial/templates/static/style-coal.css Sun Feb 10 13:14:31 2013 +0100 @@ -191,7 +191,7 @@ } .bigtable tr { border: none; } .bigtable .age { width: 6em; } -.bigtable .author { width: 12em; } +.bigtable .author { width: 15em; } .bigtable .description { } .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; } .bigtable .node { width: 5em; font-family: monospace;}
--- a/mercurial/templates/static/style-paper.css Sun Feb 10 12:23:39 2013 -0800 +++ b/mercurial/templates/static/style-paper.css Sun Feb 10 13:14:31 2013 +0100 @@ -188,7 +188,7 @@ } .bigtable tr { border: none; } .bigtable .age { width: 7em; } -.bigtable .author { width: 12em; } +.bigtable .author { width: 15em; } .bigtable .description { } .bigtable .description .base { font-size: 70%; float: right; line-height: 1.66; } .bigtable .node { width: 5em; font-family: monospace;}