Skip to content

Commit

Permalink
revert last change and use css to add whitespace which is currently ...
Browse files Browse the repository at this point in the history
removed in later xsl transformation step
  • Loading branch information
kkrebs committed Mar 31, 2023
1 parent b054d8a commit b56a153
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@
content: "* \00A0";
}

.ubo-duplicateid-link::after {
content: " ";
}

// Large devices (desktops) and below: <= 1200px
@include media-breakpoint-down(lg) {
// add/overwrite styles for responsive level lg and lower
Expand Down
6 changes: 4 additions & 2 deletions ubo-common/src/main/resources/xsl/duplicates.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@
</xsl:template>

<xsl:template match="id">
<a href="{$ServletsBaseURL}DozBibEntryServlet?id={text()}">
<a class="ubo-duplicateid-link" href="{$ServletsBaseURL}DozBibEntryServlet?id={text()}">
<xsl:value-of select="number(substring-after(text(),'mods_'))" />
</a>
<xsl:text> </xsl:text>
<xsl:if test="position() != last()">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:template>

<xsl:template match="dedup">
Expand Down

0 comments on commit b56a153

Please sign in to comment.