aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.css
Commit message (Collapse)AuthorAgeFilesLines
* The only elements using floats are dt.It-tag,Ingo Schwarze2017-07-161-3/+4
| | | | | | so the only elements allowed to the right of them are dd.It-tag. Fixes overlapping rendering after long tag lists without bodies, for example in the Xenocara apm(4) manual. Issue reported by tj@.
* use the same width increase logic for .Bl -hang as for .Bl -tagIngo Schwarze2017-07-151-2/+2
|
* correct left margins for different classes of definition listsIngo Schwarze2017-07-151-6/+6
|
* Handle .Bl -compact via CSS rather than writing individual styleIngo Schwarze2017-07-141-1/+9
| | | | | | | | attributes into .It blocks; suggested by Steffen Nurpmeso <steffen at sdaoden dot eu> on <groff at GNU dot org> in April 2017. Delete margin-bottom and margin-top style names and the 'v' argument letter from print_otag() because they are no longer used.
* Port ctags-style, less(1) :t internal searching from terminal outputIngo Schwarze2017-03-131-1/+6
| | | | | | | | | | to HTML output. For certain macros appearing at the beginning of .It heads, write HTML id="..." attributes such that deep linking works. Write HTML <a> attributes such that you can easily copy out link targets with the mouse. Try: http://man.openbsd.org/vmctl.8#create Feature suggested by <guettliml at Thomas dash Guettler dot de>, some details of the design and implementation by me.
* Wrap .St content in a <span class="St">.Ingo Schwarze2017-02-051-1/+2
| | | | Also add forgotten <span class="Ux"> to .At rendering.
* mark up .Ar, .Fa, .Va, .Ft, and .Vt with <var> rather than <i>;Ingo Schwarze2017-02-051-6/+11
| | | | suggested by bentley@ long ago, but needed lots of cleanup first
* for .Rs, use <cite>Ingo Schwarze2017-02-051-2/+3
|
* Improve HTML formatting of .Bl -tag.Ingo Schwarze2017-01-251-4/+13
| | | | | | | | | | | | | | | | | | | | | In particular, when using the style sheet, put the body on the same line as the head for short heads, or on the next line for long heads, in a way that preserves both correct indentation and correct vertical spacing with and without -compact, and with one or more heads per body (hi, Zaphod) - eight use cases so far - and with and without -tag, and with and without -offset, 32 use cases grand total. Using many ideas from zhuk@, from <David dot Dahlberg at fkie dot fraunhofer dot de>, and from Benny Lofgren <bl dash lists at lofgren dot biz>, and a few of my own. This is an excellent demonstration that CSS is an extremely hostile language, much more trapful and much harder to use than, say, C. When matthew@ reported this in July 2014 (!), it was already a known issue, and i no longer remember for how long. My first serious attempt at fixing it (in November 2015) failed miserably. I'd love to see simplifications of both the generated HTML code and of the style sheet, but without breaking any of the 32 use cases, please.
* slightly simplify header and footer stylesIngo Schwarze2017-01-211-8/+7
|
* Avoid writing constant style attributes over and over again.Ingo Schwarze2017-01-211-4/+7
| | | | Move them to the style sheet.
* clean up the remaining class attributesIngo Schwarze2017-01-211-27/+14
|
* Standardize class attributes for semantic macros.Ingo Schwarze2017-01-201-26/+42
| | | | Correct markup for .Va and iprove markup for .Dv, .Er, .Ev while here.
* standardize .Rs class attributesIngo Schwarze2017-01-201-16/+17
|
* standardize .Bl and .It class attributesIngo Schwarze2017-01-201-47/+36
|
* clean up markup of .Bd, .D1, .Dl, .Li, and .Ql;Ingo Schwarze2017-01-191-4/+12
| | | | in particular, stop abuse of <blockquote>
* clean up .Sx and .Xr HTML markupIngo Schwarze2017-01-191-4/+3
|
* Clean up CSS rules for sections and paragraphs.Ingo Schwarze2017-01-191-8/+14
| | | | Start using real macro names for CSS classes.
* Clean up and fix rules for header and footer lines.Ingo Schwarze2017-01-191-13/+22
| | | | In particular, horizontal alignment was missing.
* Start cleanup: trim useless HTML comments, <div> elements,Ingo Schwarze2017-01-191-23/+20
| | | | and CSS rules on the <html> and <body> levels.
* fix error page indentation:Ingo Schwarze2016-04-131-2/+3
| | | | | negative indent for h1 only in div.section issue reported by mikeb@
* Unify the three stylesheets into a single CSS file.Ingo Schwarze2015-11-051-0/+158
Many thanks to bentley@ for doing this work.