diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-25 12:43:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-25 12:43:05 +0000 |
commit | f8aa4137921c2e27cf2f171f323cb6b481b01332 (patch) | |
tree | 4d35373bb82136bd3d2e7fdfbc50660f8f17a711 | |
parent | 916a2db50757b20a937523dec30a3d21e0dbf32f (diff) | |
download | mandoc-f8aa4137921c2e27cf2f171f323cb6b481b01332.tar.gz |
Changed -Thtml document header to be 10/80/10 with no wrapping of the middle.
-rw-r--r-- | mdoc_html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 12ba8adf..0e2ae182 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -525,19 +525,19 @@ mdoc_root_pre(MDOC_ARGS) tt = print_otag(h, TAG_TR, 0, NULL); tag[0].key = ATTR_STYLE; - tag[0].val = "width: 33%;"; + tag[0].val = "width: 10%;"; print_otag(h, TAG_TD, 1, tag); print_text(h, title); print_stagq(h, tt); tag[0].key = ATTR_STYLE; - tag[0].val = "width: 33%; text-align: center;"; + tag[0].val = "width: 80%; white-space: nowrap; text-align: center;"; print_otag(h, TAG_TD, 1, tag); print_text(h, b); print_stagq(h, tt); tag[0].key = ATTR_STYLE; - tag[0].val = "width: 33%; text-align: right;"; + tag[0].val = "width: 10%; text-align: right;"; print_otag(h, TAG_TD, 1, tag); print_text(h, title); print_tagq(h, t); |