svn commit: r44293 - head/share/misc

Warren Block wblock at FreeBSD.org
Thu Mar 20 04:13:05 UTC 2014


Author: wblock
Date: Thu Mar 20 04:13:05 2014
New Revision: 44293
URL: http://svnweb.freebsd.org/changeset/doc/44293

Log:
  Fix the display of line numbers in screen and programlisting elements.
  Later version of the patch supplied by Allan Jude
  <freebsd at allanjude.com>.
  
  PR:		docs/187733
  Submitted by:	Dru Lavigne <dru at freebsd.org>

Modified:
  head/share/misc/docbook.css

Modified: head/share/misc/docbook.css
==============================================================================
--- head/share/misc/docbook.css	Wed Mar 19 23:47:11 2014	(r44292)
+++ head/share/misc/docbook.css	Thu Mar 20 04:13:05 2014	(r44293)
@@ -272,7 +272,7 @@ html {
 	background-color: #edc;
 	border-style: solid;
 	border-color: #EEB985;
-	border-width: 0 0 0 24px;
+	border-width: 0 0 0 2.5em;
 	border-radius: 6px;
 	counter-reset: code;
 }
@@ -284,7 +284,7 @@ html {
 	background-color: #eee;
 	border-style: solid;
 	border-color: #BABABA;
-	border-width: 0 0 0 24px;
+	border-width: 0 0 0 2.5em;
 	border-radius: 6px;
 	counter-reset: code;
 }
@@ -292,18 +292,19 @@ html {
 span.verbatim {
 	counter-increment: code;
 	display: block;
-	padding: 0 13px 0 29px;
+	padding: 0 0.5em 0 3.75em;
 	position: relative;
-	margin: 0 -8px 0 -24px;
+	margin: 0 -0.3em 0 -3.85em;
 	overflow: hidden;
 }
 
 span.verbatim:before {
-	width: 24px;
+	width: 3em;
 	text-align: right;
-	content: counter(code) " ";
+	content: counter(code);
 	position: absolute;
-	left: -10px;
+	left: 0;
+	color: #404040;
 }
 
 @media screen {  /* hide from IE3 */


More information about the svn-doc-all mailing list