diff options
author | W. Trevor King <wking@tremily.us> | 2012-09-17 09:21:18 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-09-17 09:21:18 -0400 |
commit | 0dce72cb7c6e043fd4e1d59145417de10a8937ee (patch) | |
tree | 46c48ca783cbc02a6b857e559814f6c6df728e8b /libbe | |
parent | 25296754756cbae7a435952f0017b20e71fd5c1e (diff) | |
download | bugseverywhere-0dce72cb7c6e043fd4e1d59145417de10a8937ee.tar.gz |
command:html: fix two auto% -> auto typos in CSS.
These were introduced in
commit d61d54ce33022f0613c5e19e2f52be4ab77c4664
Author: Gianluca Montecchi <gian@grys.it>
Date: Mon Jan 24 22:47:32 2011 +0100
New html output for html command
and propogated in
commit 5b6be7a511670cdf1961d13040cddcb34e70b8a1
Author: W. Trevor King <wking@drexel.edu>
Date: Sun Apr 17 02:41:07 2011 -0400
Rework `be html` to use Jinja2 templates.
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/command/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/html.py b/libbe/command/html.py index 5bfa411..eaf5f1d 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -376,7 +376,7 @@ th.target_name { border-color: #305275; background-color: #305275; color: #fff; - width: auto%; + width: auto; -moz-border-radius-topleft: 8px; -moz-border-radius-topright: 8px; padding-left: 5px; @@ -418,7 +418,7 @@ td { border-collapse: collapse; padding-left: 5px; padding-right: 5px; - width: auto%; + width: auto; } img { border-style: none; } |