Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Aug 2014 17:53:25 +0000 (UTC)
From:      Gavin Atkinson <gavin@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r45418 - head/share/misc
Message-ID:  <53e50e96.204c.19a0adb@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gavin
Date: Fri Aug  8 17:53:25 2014
New Revision: 45418
URL: http://svnweb.freebsd.org/changeset/doc/45418

Log:
  e a serif font when printing.
  
  Discussed on:	-doc (about 18 months ago)

Modified:
  head/share/misc/docbook.css

Modified: head/share/misc/docbook.css
==============================================================================
--- head/share/misc/docbook.css	Fri Aug  8 11:25:37 2014	(r45417)
+++ head/share/misc/docbook.css	Fri Aug  8 17:53:25 2014	(r45418)
@@ -117,7 +117,14 @@ body address {
 html body {
 	margin: 1em 8% 1em 10%;
 	line-height: 1.2;
-	font-family: sans-serif;
+}
+
+@media screen {
+	html body { font-family: sans-serif; }
+}
+
+@media print {
+	html body { font-family: serif; }
 }
 
 .legalnotice {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e50e96.204c.19a0adb>