# HG changeset patch # User TK Soh # Date 1127520910 25200 # Node ID 0843e1bf2b9730a965a518f3397b01aba7e7b666 # Parent 901c645c1943ae69775f3994e4344e3265db1f79 hgweb: fixed IE display problem on changelog page IE (v6.0) didn't seemed to comply to the 15% width on the left column of changelog display. Tested with IE v6.0 and Firefox 1.0.6. diff --git a/templates/changelogentry.tmpl b/templates/changelogentry.tmpl --- a/templates/changelogentry.tmpl +++ b/templates/changelogentry.tmpl @@ -1,6 +1,6 @@ - + @@ -21,4 +21,4 @@ -
#date|age# ago:#date|age# ago: #desc|firstline|escape#
files: #files#
\ No newline at end of file + diff --git a/templates/header.tmpl b/templates/header.tmpl --- a/templates/header.tmpl +++ b/templates/header.tmpl @@ -32,7 +32,7 @@ pre { margin: 0; } /* Changelog entries */ .changelogEntry { width: 100%; } -.changelogEntry th { font-weight: normal; text-align: right; vertical-align: top; width: 15%;} +.changelogEntry th { font-weight: normal; text-align: right; vertical-align: top; } .changelogEntry th.age, .changelogEntry th.firstline { font-weight: bold; } .changelogEntry th.firstline { text-align: left; width: inherit; }