From: Rocco Rutte Date: Sat, 6 Dec 2008 10:41:03 +0000 (+0100) Subject: Manual: Add simple and clean stylesheet, see #3109. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57f699a8fd31025f09bbb3c6ebad7071ae9f9bb4;p=neomutt Manual: Add simple and clean stylesheet, see #3109. --- diff --git a/ChangeLog b/ChangeLog index c62bb2a46..871db5450 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-12-02 16:10 +0100 Rocco Rutte (3a8e5756613c) + + * init.c: Include mutt_menu.h in init.c for mutt_menu_init() prototype + +2008-12-01 21:27 +0100 Rocco Rutte (1e8252a9e92f) + + * ChangeLog, charset.c, history.c, init.c, init.h, pattern.c: Fix some + typos to silence compiler warnings + 2008-11-30 20:28 +0100 Rocco Rutte (cb251bde7fc1) * addrbook.c, browser.c, compose.c, crypt-gpgme.c, curs_main.c, diff --git a/doc/Makefile.am b/doc/Makefile.am index 84e04d6b6..66334ac7a 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -27,7 +27,7 @@ EXTRA_DIST = dotlock.man \ smime-notes.txt \ Muttrc Muttrc.head stamp-doc-rc \ makedoc.c makedoc-defs.h \ - html.xsl chunk.xsl $(BUILT_DISTFILES) + mutt.css html.xsl chunk.xsl $(BUILT_DISTFILES) HTML_DOCFILES = manual.html index.html intro.html gettingstarted.html \ configuration.html mimesupport.html advancedusage.html \ @@ -112,10 +112,10 @@ stamp-doc-rc: $(top_srcdir)/init.h makedoc$(EXEEXT) $(srcdir)/Muttrc.head $(top_srcdir)/init.h | ./makedoc$(EXEEXT) -c >> Muttrc touch stamp-doc-rc -manual.html: $(srcdir)/html.xsl stamp-doc-xml +manual.html: $(srcdir)/html.xsl stamp-doc-xml $(srcdir)/mutt.css -xsltproc --nonet -o $@ $(srcdir)/html.xsl manual.xml -stamp-doc-chunked: $(srcdir)/chunk.xsl stamp-doc-xml +stamp-doc-chunked: $(srcdir)/chunk.xsl stamp-doc-xml $(srcdir)/mutt.css -xsltproc --nonet $(srcdir)/chunk.xsl manual.xml touch stamp-doc-chunked diff --git a/doc/chunk.xsl b/doc/chunk.xsl index d473afd21..e06b42634 100644 --- a/doc/chunk.xsl +++ b/doc/chunk.xsl @@ -1,7 +1,16 @@ - - - + + +]> + + - + + + + diff --git a/doc/html.xsl b/doc/html.xsl index 473e0a663..c2b63193d 100644 --- a/doc/html.xsl +++ b/doc/html.xsl @@ -1,5 +1,14 @@ - - - + + +]> + + - + + + + diff --git a/doc/mutt.css b/doc/mutt.css new file mode 100644 index 000000000..58212a034 --- /dev/null +++ b/doc/mutt.css @@ -0,0 +1,18 @@ +@media screen { + body { margin-left:2%; margin-right:2%; font-family:serif; } + .toc a, .list-of-tables a { font-family:sans-serif; } + h1, h2, h3, h4, h5, h6 { font-family:sans-serif; } + p { text-align:justify; } + div.table p.title { font-size:smaller; } + div.table p.title b { font-weight:normal; } + .email, .email a { font-family:monospace; } + div.table-contents table { border-collapse:collapse; border:1px solid #c0c0c0; } + div.table-contents table td, div.table-contents table th { padding:5px; text-align:left; } + div.table-contents table th { + font-family:sans-serif; + background:#d0d0d0; + font-weight:normal; + vertical-align:top; + } + pre { background:#f0f0f0; border:1px solid #c0c0c0; padding:5px; } +}