CVS log for mandoc/mandoc.css

[BACK] Up to [cvsweb.bsd.lv] / mandoc

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.52 / (download) - annotate - [select for diffs], Wed Jul 6 14:34:59 2022 UTC (20 months, 3 weeks ago) by schwarze
Branch: MAIN
CVS Tags: HEAD
Changes since 1.51: +10 -10 lines
Diff to previous 1.51 (colored)

While the HTML standard allows multiple <h1> elements in the same
document, <h1> is intended for top level headers, and most of the
sections in a manual page can hardly be considered top-level.
It is more usual to use <h1> only for the main title of the document
of for the site name.

Consequently, move .Sh/.SH from <h1> to <h2> and .Ss/.SS from <h2>
to <h3>, freeing <h1> for use by header.html in man.cgi(8).

Discussed with Anna Vyalkova <cyber at sysrq dot in>.

Revision 1.51 / (download) - annotate - [select for diffs], Tue Jul 5 21:25:29 2022 UTC (20 months, 3 weeks ago) by schwarze
Branch: MAIN
Changes since 1.50: +15 -6 lines
Diff to previous 1.50 (colored)

Finally get rid of the archaic <table> markup for header and footer lines
and use flexbox CSS instead.  Improve accessibility by adding role
and aria-label attributes to these header and footer lines.
Using ideas from both Anna Vyalkova <cyber at sysrq dot in> and myself.

As a welcome side effect, this also resolves the long-standing issue
that the rendering was always 65em wide, requiring horizontal scrolling
when the window was narrower.  Now, rendering nicely adapts to browser
windows of arbitrary narrowness.

Revision 1.50 / (download) - annotate - [select for diffs], Sun Jul 3 14:29:45 2022 UTC (20 months, 3 weeks ago) by schwarze
Branch: MAIN
Changes since 1.49: +3 -5 lines
Diff to previous 1.49 (colored)

Instead of the custom <div class="manual-text">, use the standard
HTML <main> element.  The benefit is that it has the ARIA landmark
role "main" by default.  To ease the transition for people using
their own CSS file instead of mandoc.css, retain the custom class
for now.

I had this idea in a discussion with Anna Vyalkova <cyber at sysrq dot in>.
Patch from Anna, slightly tweaked by me.

Revision 1.49 / (download) - annotate - [select for diffs], Thu Mar 17 18:45:49 2022 UTC (2 years ago) by schwarze
Branch: MAIN
Changes since 1.48: +4 -4 lines
Diff to previous 1.48 (colored)

Avoid legacy CSS2 syntax for the "display" property and use the CSS3
two-value syntax "display: inline flow;" instead.  In particular, there
is no need to establish a new block formatting context with "flow-root",
and in fact that's detrimental because it appears to introduce spurious
soft-wrap opportunities.

jmc@ reported a bogus line break between the opening angle bracket
generated by .Aq Mt and the following email address.

Revision 1.48 / (download) - annotate - [select for diffs], Tue Mar 30 19:26:20 2021 UTC (2 years, 11 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_6
Changes since 1.47: +2 -1 lines
Diff to previous 1.47 (colored)

In HTML output, correctly render .Bd -unfilled in proportionally-spaced
font, rather than with the monospace font appropriate for .Bd -literal.
This fixes a minibug reported by anton@.

Implemented by no longer relying on the typical browser default of
"pre { font-family: monospace }" but instead letting <pre> elements
inherit the font family from their parent, then adding an explicit CSS .Li
class only for those displays where the manual page author requested it
by using the -literal option on the .Bd macro.

Revision 1.47 / (download) - annotate - [select for diffs], Fri Oct 30 21:34:30 2020 UTC (3 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

Finally get rid of the "overflow: auto" property of ".Bl-tag > dd"
which has long been know to cause ugly and pointless scroll bars.

Matthew Martin <phy1729 at gmail dot com>
helpfully explained the following two points to me:
1. What we need to do here is establish a new block formatting
context such that the first line of the <dd> content moves down
rather than to the right if the preceding <dt> is wide.
2. A comprehensive list of methods
to establish block formatting context is available in:
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Block_formatting_context

In that list, i found that "column-count: 1" does the job.
It is part of CSS Multi-column Layout Level 1.
While that is still in Working Draft status according to
https://www.w3.org/Style/CSS/current-work ,
it is fully supported by all browsers according to
https://developer.mozilla.org/en-US/docs/Web/CSS/column-count ,
probably because it was already part of the second draft of this
standard almost 20 years ago: WD-css3-multicol-20010118.

Revision 1.46 / (download) - annotate - [select for diffs], Sun Jun 2 16:57:13 2019 UTC (4 years, 9 months ago) by schwarze
Branch: MAIN
Changes since 1.45: +21 -8 lines
Diff to previous 1.45 (colored)

Support prefers-color-scheme: dark.
The :visited rule was contributed by <Armin at Besirovic dot com>.
Guidance and OK tj@.

Revision 1.45 / (download) - annotate - [select for diffs], Fri Mar 1 10:57:18 2019 UTC (5 years ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_5
Changes since 1.44: +11 -9 lines
Diff to previous 1.44 (colored)

Wrap .Sh/.SH sections and .Ss/.SS subsections in HTML <section> elements
as recommended for accessibility by the HTML 5 standard.
Triggered by a similar, but slightly different suggestion
from Laura Morales <lauretas at mail dot com>.

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jan 11 12:56:43 2019 UTC (5 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.43: +76 -2 lines
Diff to previous 1.43 (colored)

Remove the HTML title= attributes which harmed accessibility and
violated the principle of separation of content and presentation.
Instead, implement the tooltips purely in CSS.
Thanks to John Gardner <gardnerjohng at gmail dot com> for
suggesting most of the styling in the new ::before rules.

Revision 1.43 / (download) - annotate - [select for diffs], Thu Jan 10 07:40:10 2019 UTC (5 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.42: +7 -2 lines
Diff to previous 1.42 (colored)

After years of gnashing of teeth, i finally found a way to avoid
having to write empty list elements for non-compact .Bl -tag lists:

1. Add margin-bottom to the <dd>.
Note that margin-top on the <dt> doesn't work because it would put
a short <dt> lower than the <dd>; margin-bottom on the <dt> doesn't
work because it would put vertical space before the <dd> for a long
<dt>; and margin-top on the <dd> doesn't work because it would put
a short <dt> higher than the <dd>.  Only margin-bottom on the <dd>
has none of these adverse effects.

2. Of course, margin-bottom on the <dd> fails to take care of the
vertical spacing before the first list element, so implement that
separately by margin-top on the <dl>.

3. For .Bl -tag -compact, reset both to zero.

Revision 1.42 / (download) - annotate - [select for diffs], Tue Dec 4 06:11:49 2018 UTC (5 years, 3 months ago) by schwarze
Branch: MAIN
Changes since 1.41: +3 -3 lines
Diff to previous 1.41 (colored)

Restrict "vertical-align: middle;" to <td> descendants of class="tbl"
elements, we don't want that for other tables.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Dec 4 05:21:04 2018 UTC (5 years, 3 months ago) by schwarze
Branch: MAIN
Changes since 1.40: +7 -2 lines
Diff to previous 1.40 (colored)

Make sure all borders in a table are drawn in the same color.
Required because browsers tend to have inconsistent defaults:
For example, Firefox 62.0.2 sets border-color for tbody, but not for table,
and Pali Rohar reports that Chrome set it for td, but not for tr or tbody.
The td part is from Pali Rohar, the tbody and tr parts from me.

Revision 1.40 / (download) - annotate - [select for diffs], Mon Nov 26 21:06:02 2018 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.39: +6 -3 lines
Diff to previous 1.39 (colored)

Implement tbl(7) lines in -T html output,
as far as they are on the edges of table cells
rather than going through the middle of cells:

* the box, doublebox, and allbox options;
* the | and || layout modifiers;
* and the _ and = data lines;
- but not yet _ and = in individual layout and data cells.

Missing feature reported by Pali dot Rohar at gmail dot com.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Nov 26 15:02:38 2018 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.38: +6 -1 lines
Diff to previous 1.38 (colored)

Place mandoc.css into the public domain.

The reason for doing this rather than using the ISC license
is that i guess that in some contexts, a requirement to preserve
a Copyright and license header might be inconvenient, and i really
don't care at all how people use it.

What matters is that they do use it, or something similar - attempts
to use mandoc without any CSS are a constant source of grief and
bogus bug reports because HTML without CSS doesn't look very good:
the more structural and semantic and the less presentational and
old-fashioned the HTML, the more so.

Thanks to Mark Harris <mark dot hsj at gmail dot com> for pointing out
that the permissions on this particular file were unclear.

Revision 1.38 / (download) - annotate - [select for diffs], Sat Nov 24 23:03:18 2018 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

Implement horizontal and vertical alignment of tbl(7) cell content
in -T html output.  This does not handle spanned cells yet.
Missing feature reported by Pali dot Rohar at gmail dot com.

Revision 1.37 / (download) - annotate - [select for diffs], Mon Aug 27 23:13:44 2018 UTC (5 years, 7 months ago) by schwarze
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Reduce excessive right padding in tagged list heads.
The 1.2em was an approximate equivalent of the 2n traditionally used
for terminal display, but it is much too wide for HTML rendering.
Issue reported by mikeb@.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Jul 23 22:51:26 2018 UTC (5 years, 8 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_4
Changes since 1.35: +37 -37 lines
Diff to previous 1.35 (colored)

Remove more redundant element selectors where the class selector
is already sufficient.  John Gardner tells me that "CSS selectors
should only contain what's necessary to target their subjects".

Revision 1.35 / (download) - annotate - [select for diffs], Mon Jul 23 22:33:56 2018 UTC (5 years, 8 months ago) by schwarze
Branch: MAIN
Changes since 1.34: +6 -6 lines
Diff to previous 1.34 (colored)

replace the last instances of ex units by em;
recommended by John Gardner <gardnerjohng at gmail dot com>

Revision 1.34 / (download) - annotate - [select for diffs], Mon Jun 25 13:01:19 2018 UTC (5 years, 9 months ago) by schwarze
Branch: MAIN
Changes since 1.33: +6 -1 lines
Diff to previous 1.33 (colored)

For -man -Thtml, ignore author-specified .HP widths because they
harm responsive design; use @media-dependent defaults instead.

Revision 1.33 / (download) - annotate - [select for diffs], Sun Jun 10 16:15:43 2018 UTC (5 years, 9 months ago) by schwarze
Branch: MAIN
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored)

In HTML output, for lists that have an -indent argument, just use
a uniform indentation in CSS adapted to the viewport width and
ignore the value of the argument taken from mdoc(7).  While
author-specified widths somewhat work as a micro-optimization in
terminal and typeset output, they are nothing but harmful in HTML
style= attributes because they break responsive design, whereas
using a reasonable default indent almost never results in ugly
output.  Admittedly, the author-specified width might occasionally
look even better, but only slightly so, and only for some viewport
sizes.
Based on guidance provided by John Gardner.

Revision 1.32 / (download) - annotate - [select for diffs], Mon May 28 15:39:25 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.31: +55 -52 lines
Diff to previous 1.31 (colored)

John Gardner tells me that among frontend developers, gratuitous use
of double selectors like "element.class" is considered poor style.
When doing selection mainly by elements is not appropriate because
most elements require several different styles, exclusively selecting
by class is less cumbersome, more concise, and more flexible.
So drop the elements from the selectors, except where they are
required for disambiguation and except where they add clarity due
to the presence of child selectors.

Revision 1.31 / (download) - annotate - [select for diffs], Sat May 26 20:04:41 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.30: +15 -1 lines
Diff to previous 1.30 (colored)

Start with baby steps towards responsive design:
Use a @media width query to select a set of default indentations.
Suggested by John Gardner <gardnerjohng at gmail dot com>.

Revision 1.30 / (download) - annotate - [select for diffs], Sat May 26 17:38:01 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.29: +20 -20 lines
Diff to previous 1.29 (colored)

Use em units rather than ex units for horizontal lengths.
John Gardner and others tell me it produces more predictable results
and is generally considered better style.
Also use 0em instead of 0ex, in general.

Revision 1.29 / (download) - annotate - [select for diffs], Mon May 21 01:11:31 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.28: +3 -2 lines
Diff to previous 1.28 (colored)

Use <span> for .Ms rather than <b>; discussed with John Gardner.

Revision 1.28 / (download) - annotate - [select for diffs], Mon May 21 00:30:23 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.27: +3 -2 lines
Diff to previous 1.27 (colored)

Use <span> for .Ad rather than <i>; also suggested by John Gardner.

Revision 1.27 / (download) - annotate - [select for diffs], Mon May 21 00:00:37 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.26: +3 -2 lines
Diff to previous 1.26 (colored)

Use <span> rather than abusing <i> for .Pa;
suggested by John Gardner <gardnerjohng at gmail dot com>.

Revision 1.26 / (download) - annotate - [select for diffs], Wed May 9 00:46:10 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.25: +4 -3 lines
Diff to previous 1.25 (colored)

Fix a long-standing issue:
Some macros (Nd, Oo) can contain blocks but rendered as elements that
can only contain phrasing content, resulting in invalid HTML nesting.
Switch them to <div>.
Also move the related "display: inline" style from the HTML to the CSS.

Reminded during a conversation with John Gardner.

Revision 1.25 / (download) - annotate - [select for diffs], Tue May 8 21:42:34 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.24: +26 -18 lines
Diff to previous 1.24 (colored)

Eliminate the class=It-* attributes.
Cleaner HTML, more idiomatic CSS, and minus 30 lines of C code.
Suggested by John Gardner <gardnerjohng at gmail dot com>.

Revision 1.24 / (download) - annotate - [select for diffs], Tue May 8 17:52:55 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.23: +25 -9 lines
Diff to previous 1.23 (colored)

Switch the emitted HTML element from <b> to <code> for the fixed
syntax element macros .Nm, .Fl, .Cm, .Ic, .In, .Fd, .Fn, and .Cd.
Adjust both the internal and external style sheets such that
rendering remains unchanged in typical browsers.

Based on feedback from John Gardner <gardnerjohng at gmail dot com>.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Apr 24 00:36:52 2018 UTC (5 years, 11 months ago) by schwarze
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

replace my vague and idiosyncratic term "selflink"
with the clearer and more usual "permalink";
suggested by John Gardner <gardnerjohng at gmail dot com>

Revision 1.22 / (download) - annotate - [select for diffs], Sun Jul 16 18:45:00 2017 UTC (6 years, 8 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_3, VERSION_1_14_2
Changes since 1.21: +4 -3 lines
Diff to previous 1.21 (colored)

The only elements using floats are dt.It-tag,
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@.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Jul 15 17:29:31 2017 UTC (6 years, 8 months ago) by schwarze
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

use the same width increase logic for .Bl -hang as for .Bl -tag

Revision 1.20 / (download) - annotate - [select for diffs], Sat Jul 15 16:35:52 2017 UTC (6 years, 8 months ago) by schwarze
Branch: MAIN
Changes since 1.19: +6 -6 lines
Diff to previous 1.19 (colored)

correct left margins for different classes of definition lists

Revision 1.19 / (download) - annotate - [select for diffs], Fri Jul 14 16:06:44 2017 UTC (6 years, 8 months ago) by schwarze
Branch: MAIN
Changes since 1.18: +9 -1 lines
Diff to previous 1.18 (colored)

Handle .Bl -compact via CSS rather than writing individual style
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.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Mar 13 20:22:18 2017 UTC (7 years ago) by schwarze
Branch: MAIN
Changes since 1.17: +6 -1 lines
Diff to previous 1.17 (colored)

Port ctags-style, less(1) :t internal searching from terminal output
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.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Feb 5 21:00:43 2017 UTC (7 years, 1 month ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_1, VERSION_1_13
Changes since 1.16: +2 -1 lines
Diff to previous 1.16 (colored)

Wrap .St content in a <span class="St">.
Also add forgotten <span class="Ux"> to .At rendering.

Revision 1.16 / (download) - annotate - [select for diffs], Sun Feb 5 20:22:04 2017 UTC (7 years, 1 month ago) by schwarze
Branch: MAIN
Changes since 1.15: +11 -6 lines
Diff to previous 1.15 (colored)

mark up .Ar, .Fa, .Va, .Ft, and .Vt with <var> rather than <i>;
suggested by bentley@ long ago, but needed lots of cleanup first

Revision 1.15 / (download) - annotate - [select for diffs], Sun Feb 5 19:29:19 2017 UTC (7 years, 1 month ago) by schwarze
Branch: MAIN
Changes since 1.14: +3 -2 lines
Diff to previous 1.14 (colored)

for .Rs, use <cite>

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jan 25 02:14:43 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.13: +13 -4 lines
Diff to previous 1.13 (colored)

Improve HTML formatting of .Bl -tag.

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.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Jan 21 02:29:57 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.12: +7 -8 lines
Diff to previous 1.12 (colored)

slightly simplify header and footer styles

Revision 1.12 / (download) - annotate - [select for diffs], Sat Jan 21 02:09:51 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.11: +7 -4 lines
Diff to previous 1.11 (colored)

Avoid writing constant style attributes over and over again.
Move them to the style sheet.

Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 21 01:20:32 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.10: +14 -27 lines
Diff to previous 1.10 (colored)

clean up the remaining class attributes

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jan 20 23:51:00 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.9: +42 -26 lines
Diff to previous 1.9 (colored)

Standardize class attributes for semantic macros.
Correct markup for .Va and iprove markup for .Dv, .Er, .Ev while here.

Revision 1.9 / (download) - annotate - [select for diffs], Fri Jan 20 21:37:56 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.8: +17 -16 lines
Diff to previous 1.8 (colored)

standardize .Rs class attributes

Revision 1.8 / (download) - annotate - [select for diffs], Fri Jan 20 19:58:07 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.7: +36 -47 lines
Diff to previous 1.7 (colored)

standardize .Bl and .It class attributes

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jan 19 16:56:54 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.6: +12 -4 lines
Diff to previous 1.6 (colored)

clean up markup of .Bd, .D1, .Dl, .Li, and .Ql;
in particular, stop abuse of <blockquote>

Revision 1.6 / (download) - annotate - [select for diffs], Thu Jan 19 15:48:39 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.5: +3 -4 lines
Diff to previous 1.5 (colored)

clean up .Sx and .Xr HTML markup

Revision 1.5 / (download) - annotate - [select for diffs], Thu Jan 19 15:27:34 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.4: +14 -8 lines
Diff to previous 1.4 (colored)

Clean up CSS rules for sections and paragraphs.
Start using real macro names for CSS classes.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Jan 19 14:29:53 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.3: +22 -13 lines
Diff to previous 1.3 (colored)

Clean up and fix rules for header and footer lines.
In particular, horizontal alignment was missing.

Revision 1.3 / (download) - annotate - [select for diffs], Thu Jan 19 13:35:02 2017 UTC (7 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.2: +20 -23 lines
Diff to previous 1.2 (colored)

Start cleanup: trim useless HTML comments, <div> elements,
and CSS rules on the <html> and <body> levels.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Apr 13 10:19:23 2016 UTC (7 years, 11 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_13_4
Changes since 1.1: +3 -2 lines
Diff to previous 1.1 (colored)

fix error page indentation:
negative indent for h1 only in div.section
issue reported by mikeb@

Revision 1.1 / (download) - annotate - [select for diffs], Thu Nov 5 17:47:51 2015 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN

Unify the three stylesheets into a single CSS file.
Many thanks to bentley@ for doing this work.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb