diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:26:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:26:01 +0000 |
commit | b4b566f2e27b30860a34ca722167ff748d29060d (patch) | |
tree | 823bbd3030622f85d4f9ff3522e047882d93c262 /html.c | |
parent | 9a0c4c4571a9055eab5a14fcee755c5dde12f643 (diff) | |
download | mandoc-b4b566f2e27b30860a34ca722167ff748d29060d.tar.gz |
Remove last hard-coded width attribute.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -85,7 +85,6 @@ static const char *const htmlattrs[ATTR_MAX] = { "media", /* ATTR_MEDIA */ "class", /* ATTR_CLASS */ "style", /* ATTR_STYLE */ - "width", /* ATTR_WIDTH */ "id", /* ATTR_ID */ "colspan", /* ATTR_COLSPAN */ "charset", /* ATTR_CHARSET */ @@ -202,7 +201,9 @@ print_gen_head(struct html *h) t = print_otag(h, TAG_STYLE, 0, NULL); print_text(h, "table.head, table.foot { width: 100%; }\n" "td.head-rtitle, td.foot-os { text-align: right; }\n" - "td.head-vol { text-align: center; }\n"); + "td.head-vol { text-align: center; }\n" + "table.foot td { width: 50%; }\n" + "table.head td { width: 33%; }\n"); print_tagq(h, t); if (h->style) { |