From nobody@FreeBSD.org  Tue Feb 18 05:24:15 2014
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 13D6D48B
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 18 Feb 2014 05:24:15 +0000 (UTC)
Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id F2D311CBB
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 18 Feb 2014 05:24:14 +0000 (UTC)
Received: from cgiserv.freebsd.org ([127.0.1.6])
	by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I5OEch080567
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 18 Feb 2014 05:24:14 GMT
	(envelope-from nobody@cgiserv.freebsd.org)
Received: (from nobody@localhost)
	by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I5OE7W080559;
	Tue, 18 Feb 2014 05:24:14 GMT
	(envelope-from nobody)
Message-Id: <201402180524.s1I5OE7W080559@cgiserv.freebsd.org>
Date: Tue, 18 Feb 2014 05:24:14 GMT
From: Allan Jude <freebsd@allanjude.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: improve handbook ToC readability
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         186858
>Category:       docs
>Synopsis:       improve handbook ToC readability
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wblock
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 18 05:30:00 UTC 2014
>Closed-Date:    Mon Feb 24 20:06:45 UTC 2014
>Last-Modified:  Mon Feb 24 20:10:00 UTC 2014
>Originator:     Allan Jude
>Release:        9.2-RELEASE
>Organization:
ScaleEngine Inc.
>Environment:
FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013     root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64

>Description:
Improve the readability of the Table of Contents of the FreeBSD Handbook by decreasing the amount of whitespace between items.

Also increase the font size of the section titles slightly, as they are the same size as the ToC items.

>How-To-Repeat:

>Fix:
Patch Attached

Patch attached with submission follows:

Index: share/misc/docbook.css
===================================================================
--- share/misc/docbook.css	(revision 43975)
+++ share/misc/docbook.css	(working copy)
@@ -120,15 +126,23 @@
 }
 
 dl {
-	margin: .8em 0;
+	margin: .4em 0 0 0;
 	line-height: 1.2;
 }
 
 dt {
 	font-weight: bold;
-	margin-top: 1em;
+	margin: 0.4em 0 0 0;
 }
 
+div.abstract div.abstract-title,
+div.toc div.toc-title,
+div.list-of-figures div.toc-title,
+div.list-of-tables div.toc-title,
+div.list-of-examples div.toc-title {
+	font-size: 115%;
+}
+
 div.calloutlist dt {
 	float: left;
 	width: 1em;


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-doc->wblock 
Responsible-Changed-By: wblock 
Responsible-Changed-When: Tue Feb 18 20:50:49 UTC 2014 
Responsible-Changed-Why:  
Take. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=186858 
State-Changed-From-To: open->closed 
State-Changed-By: wblock 
State-Changed-When: Mon Feb 24 20:06:27 UTC 2014 
State-Changed-Why:  
Committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=186858 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: docs/186858: commit references a PR
Date: Mon, 24 Feb 2014 20:06:21 +0000 (UTC)

 Author: wblock
 Date: Mon Feb 24 20:06:13 2014
 New Revision: 44049
 URL: http://svnweb.freebsd.org/changeset/doc/44049
 
 Log:
   Improve XHTML table of contents readability by reducing vertical spacing
   and using slightly larger fonts for headings.
   
   PR:		docs/186858
   Submitted by:	Allan Jude <freebsd@allanjude.com>
 
 Modified:
   head/share/misc/docbook.css
 
 Modified: head/share/misc/docbook.css
 ==============================================================================
 --- head/share/misc/docbook.css	Mon Feb 24 18:27:01 2014	(r44048)
 +++ head/share/misc/docbook.css	Mon Feb 24 20:06:13 2014	(r44049)
 @@ -120,19 +120,26 @@ body div {
  }
  
  dl {
 -	margin: .8em 0;
 +	margin: .4em 0 0 0;
  	line-height: 1.2;
  }
  
  dt {
  	font-weight: bold;
 -	margin-top: 1em;
 +	margin: 0.4em 0 0 0;
 +}
 +
 +div.abstract div.abstract-title,
 +div.toc div.toc-title,
 +div.list-of-figures div.toc-title,
 +div.list-of-tables div.toc-title,
 +div.list-of-examples div.toc-title {
 +	font-size: 115%;
  }
  
  div.calloutlist dt {
  	float: left;
 -	width: 1em;
 -}
 +	width: 1em;}
  
  div.calloutlist dd {
  	clear: right;
 _______________________________________________
 svn-doc-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-doc-all
 To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org"
 
>Unformatted:
