Replace <strong> in media pages with CSS.
parent
e968868797
commit
59efae6296
|
@ -239,3 +239,7 @@ p.infobox {
|
|||
border: 1px solid #ccc;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
p.mediafile {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
|
|
@ -80,16 +80,16 @@
|
|||
</xsl:if>
|
||||
<xsl:if test="mediafile">
|
||||
<h2>Download</h2>
|
||||
<div><strong>
|
||||
<div>
|
||||
<xsl:copy-of select="$infotext" />
|
||||
<p>
|
||||
<p class="mediafile">
|
||||
HTTP (web browser):
|
||||
<xsl:apply-templates select="mediafile">
|
||||
<xsl:with-param name="mirror" select="$mirror" />
|
||||
</xsl:apply-templates>
|
||||
</p>
|
||||
<xsl:if test="$bittorrent = 'yes'">
|
||||
<p>
|
||||
<p class="mediafile">
|
||||
BitTorrent:
|
||||
<xsl:apply-templates select="mediafile">
|
||||
<xsl:with-param name="ext">.torrent</xsl:with-param>
|
||||
|
@ -97,7 +97,7 @@
|
|||
</xsl:apply-templates>
|
||||
</p>
|
||||
</xsl:if>
|
||||
</strong></div>
|
||||
</div>
|
||||
</xsl:if>
|
||||
<xsl:if test="@buttons = 'yes'">
|
||||
<p>
|
||||
|
|
Loading…
Reference in New Issue