From owner-svn-doc-all@freebsd.org Fri Sep 4 14:25:51 2015 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73FFF9C9556; Fri, 4 Sep 2015 14:25:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 61A491DA4; Fri, 4 Sep 2015 14:25:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t84EPpTU086803; Fri, 4 Sep 2015 14:25:51 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t84EPpK8086802; Fri, 4 Sep 2015 14:25:51 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201509041425.t84EPpK8086802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 4 Sep 2015 14:25:51 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r47365 - head/share/misc X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Sep 2015 14:25:51 -0000 Author: mat Date: Fri Sep 4 14:25:50 2015 New Revision: 47365 URL: https://svnweb.freebsd.org/changeset/doc/47365 Log: Fix display of the note/tip/important/warning/caution when there are more than one paragraph. Approved by: wblock Sponsored by: Absolight Modified: head/share/misc/docbook.css Modified: head/share/misc/docbook.css ============================================================================== --- head/share/misc/docbook.css Fri Sep 4 13:32:22 2015 (r47364) +++ head/share/misc/docbook.css Fri Sep 4 14:25:50 2015 (r47365) @@ -370,8 +370,11 @@ pre.programlisting { margin-right: 0; } -.note p, .tip p, .important p, .warning p, .caution p { +.note p:first-of-type, .tip p:first-of-type, .important p:first-of-type, .warning p:first-of-type, .caution p:first-of-type { display: inline-block; +} + +.note p, .tip p, .important p, .warning p, .caution p { margin: .4ex 0 .4ex 0; }