Commit dfc83b5e authored by Davis King's avatar Davis King

Improved the layout a little.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403226
parent 51aa2cd9
...@@ -138,6 +138,14 @@ ...@@ -138,6 +138,14 @@
padding: 0.7em; padding: 0.7em;
} }
div#extension {
background-color:#FDFDFD;
border: 1px solid rgb(102,102,102);
text-align:left;
margin-top: 1.0em;
padding: 0.7em;
}
div#logb { div#logb {
text-align:left; text-align:left;
padding: 0.0em; padding: 0.0em;
...@@ -377,11 +385,11 @@ ...@@ -377,11 +385,11 @@
<xsl:choose> <xsl:choose>
<xsl:when test="spec_file/@link = 'true'"> <xsl:when test="spec_file/@link = 'true'">
<BR/> <BR/>
<b>Specification: </b> <a href="{spec_file}.html#{name}"><xsl:value-of select="spec_file"/></a> <b><font style='font-size:1.3em' color='#006600'>Specification: </font></b> <a href="{spec_file}.html#{name}"><xsl:value-of select="spec_file"/></a>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<BR/> <BR/>
<b>Specification: </b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a> <b><font style='font-size:1.3em' color='#006600'>Specification: </font></b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</xsl:if> </xsl:if>
...@@ -405,26 +413,25 @@ ...@@ -405,26 +413,25 @@
</xsl:choose> </xsl:choose>
<xsl:if test="extensions"> <xsl:if test="extensions">
<br/>
<center> <center>
<HR align='center'/> <h1>Extensions to <xsl:value-of select="name"/></h1>
<h2>Extensions to <xsl:value-of select="name"/></h2>
</center> </center>
<xsl:for-each select="extensions/extension"> <xsl:for-each select="extensions/extension">
<xsl:sort select="translate(name,$lcletters, $ucletters)"/> <xsl:sort select="translate(name,$lcletters, $ucletters)"/>
<BR/><a name="{name}"><B><font size='4'><xsl:value-of select="name"/>:</font></B></a><Br/> <div id="extension">
<a name="{name}"><B><font size='5'><xsl:value-of select="name"/></font></B></a><Br/>
<BR/>
<xsl:apply-templates select="description"/> <xsl:apply-templates select="description"/>
<BR/> <BR/>
<BR/> <BR/>
<b>Specification: </b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a> <b><font style='font-size:1.3em' color='#006600'>Specification: </font></b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a>
<xsl:apply-templates select="examples"/> <xsl:apply-templates select="examples"/>
<xsl:apply-templates select="implementations"> <xsl:apply-templates select="implementations">
<xsl:with-param name="checked" select="$checked" /> <xsl:with-param name="checked" select="$checked" />
</xsl:apply-templates> </xsl:apply-templates>
</div>
<xsl:if test="position() != last()">
<HR width='20%' align='left'/>
</xsl:if>
</xsl:for-each> </xsl:for-each>
</xsl:if> </xsl:if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment