Merge pull request #1130 from hardyoyo/DS-2826-use-bootstrap-glyphicon-arrows

[DS-2826] changed arrow characters for navigation to improve legibility,
This commit is contained in:
Hardy Pottinger
2015-10-27 17:09:37 -05:00
2 changed files with 6 additions and 5 deletions

View File

@@ -373,6 +373,7 @@ header {
.pagination {
width: 100%;
font-size: larger;
}
.pagination-info {
@@ -463,4 +464,4 @@ header {
a {
font-weight: bold;
}
}
}

View File

@@ -186,7 +186,7 @@
<xsl:attribute name="href">
<xsl:value-of select="$prev-page"/>
</xsl:attribute>
<xsl:text>&#171;</xsl:text>
<span class="glyphicon glyphicon-arrow-left"></span>
</a>
</li>
<li>
@@ -201,7 +201,7 @@
<xsl:attribute name="href">
<xsl:value-of select="$next-page"/>
</xsl:attribute>
<xsl:text>&#187;</xsl:text>
<span class="glyphicon glyphicon-arrow-right"></span>
</a>
</li>
</ul>
@@ -289,7 +289,7 @@
<xsl:value-of
select="substring-after(parent::node()/@pageURLMask,'{pageNum}')"/>
</xsl:attribute>
<xsl:text>&#171;</xsl:text>
<span class="glyphicon glyphicon-arrow-left"></span>
</a>
</li>
<xsl:if test="(parent::node()/@currentPage - 4) &gt; 0">
@@ -363,7 +363,7 @@
<xsl:value-of
select="substring-after(parent::node()/@pageURLMask,'{pageNum}')"/>
</xsl:attribute>
<xsl:text>&#187;</xsl:text>
<span class="glyphicon glyphicon-arrow-right"></span>
</a>
</li>
</xsl:if>