Author: kkolinko Date: Fri Oct 14 12:26:04 2011 New Revision: 1183328 URL: http://svn.apache.org/viewvc?rev=1183328&view=rev Log: https://issues.apache.org/bugzilla/show_bug.cgi?id=50923 Documentation: Use default color, but lightcyan background for code tags. Based on a suggestion by sebb. Properties table (e.g. config/systemprops.html) needs the same handling as attributes table.
Modified: tomcat/trunk/webapps/docs/tomcat-docs.xsl Modified: tomcat/trunk/webapps/docs/tomcat-docs.xsl URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/tomcat-docs.xsl?rev=1183328&r1=1183327&r2=1183328&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/tomcat-docs.xsl (original) +++ tomcat/trunk/webapps/docs/tomcat-docs.xsl Fri Oct 14 12:26:04 2011 @@ -84,8 +84,8 @@ td#mainBody {width: 100%;} </style> <style type="text/css"> - code {color:rgb(0,128,128);padding:0 0.1em;} - code.attributeName {color:rgb(0,0,0);} + code {background-color:rgb(224,255,255);padding:0 0.1em;} + code.attributeName, code.propertyName {background-color:transparent;} </style> </head> @@ -392,7 +392,7 @@ <xsl:for-each select="property"> <tr> <td align="left" valign="center"> - <code><xsl:value-of select="@name"/></code> + <code class="propertyName"><xsl:value-of select="@name"/></code> </td> <td align="left" valign="center"> <xsl:apply-templates/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org