From: Steve F. <sm...@us...> - 2002-09-01 00:29:09
|
Update of /cvsroot/mockobjects/no-stone-unturned/doc/xdocs In directory usw-pr-cvs1:/tmp/cvs-serv10582/doc/xdocs Modified Files: htmlbook.xsl htmlbook.css Log Message: fixed emphasis within programlisting style Index: htmlbook.xsl =================================================================== RCS file: /cvsroot/mockobjects/no-stone-unturned/doc/xdocs/htmlbook.xsl,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- htmlbook.xsl 21 Aug 2002 19:16:43 -0000 1.10 +++ htmlbook.xsl 1 Sep 2002 00:29:07 -0000 1.11 @@ -49,6 +49,12 @@ </xsl:call-template> </xsl:template> + <xsl:template match="programlisting/emphasis"> + <xsl:call-template name="inline.span"> + <xsl:with-param name="spanclass" select="'emphasis'" /> + </xsl:call-template> + </xsl:template> + <xsl:template match="comment|remark"> <xsl:if test="$show.comments != 0"> <xsl:call-template name="inline.span"> Index: htmlbook.css =================================================================== RCS file: /cvsroot/mockobjects/no-stone-unturned/doc/xdocs/htmlbook.css,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- htmlbook.css 21 Aug 2002 21:32:16 -0000 1.13 +++ htmlbook.css 1 Sep 2002 00:29:07 -0000 1.14 @@ -31,7 +31,7 @@ DIV.sidebar P { margin-top: 10px; margin-bottom: 10px; } DIV.sidebar P.title { margin-top: 0%; font-style: italic; font-size: 130%; } -PRE SPAN.emphasis { font-weight: bold; } +PRE SPAN.emphasis { font-style: italic; } .lineannotation { font-style: italic; font-family: "Century Schoolbook", Times, serif; } .footnote { margin-left: 5%; text-indent: -3% } |