Table of Contents
svg:aqua-button-defs — Aqua-style Button
<xsl:template name="svg:aqua-button-defs"><xsl:param name="prefix" select=""aqua-""/><xsl:param name="color1" select=""#d9d9d9""/><xsl:param name="color2" select=""#a9a9a9""/><xsl:param name="color3" select=""#f9f9f9""/> ...</xsl:template>
Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document's defs element. This template only needs to be included once. Use this in conjunction with svg:aqua-button.
The default values for color1, color2 and color3 result in a grey button.
A prefix to append to the identifiers used, so that they don't clash with other identifiers. Default: "aqua-".
The base colour of the button. Default: "#d9d9d9".
A "background" colour for the button. Should be a darker colour than color1. Default: "#a9a9a9".
A highlight colour for the button. Should be a lighter colour than color1. Default: "#f9f9f9".
svg:aqua-button — Aqua-style Button
<xsl:template name="svg:aqua-button"><xsl:param name="prefix" select=""aqua-""/> ...</xsl:template>
Part of the mechanism to create an Aqua-style button. Include a call to this template in your SVG document where you want a button to appear. This template can be used many times in a single SVG document. Use this in conjunction with svg:aqua-button-defs.