View | Details | Raw Unified | Return to bug 27613
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-1 / +2 lines)
Lines 83-88 a { Link Here
83
    }
83
    }
84
84
85
    &.title {
85
    &.title {
86
        display: block;
86
        font-size: 108%;
87
        font-size: 108%;
87
        font-weight: bold;
88
        font-weight: bold;
88
    }
89
    }
Lines 1154-1160 div { Link Here
1154
}
1155
}
1155
1156
1156
.resource_list {
1157
.resource_list {
1157
    display: inline-block;
1158
    display: inline;
1158
    margin: 0 auto;
1159
    margin: 0 auto;
1159
    padding-left: 0;
1160
    padding-left: 0;
1160
1161
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-3 / +6 lines)
Lines 1718-1723 Link Here
1718
                    <!--#13382 Changed Additional author to contributor -->
1718
                    <!--#13382 Changed Additional author to contributor -->
1719
                    <xsl:otherwise>Contributor(s): </xsl:otherwise>
1719
                    <xsl:otherwise>Contributor(s): </xsl:otherwise>
1720
                </xsl:choose>
1720
                </xsl:choose>
1721
           </xsl:for-each>
1722
            <ul class="resource_list">
1723
            <xsl:for-each select="$authorfield">
1724
            <li>
1721
            <xsl:choose>
1725
            <xsl:choose>
1722
                <xsl:when test="not(@tag=111) or @tag=700 or @tag=710 or @tag=711"/>
1726
                <xsl:when test="not(@tag=111) or @tag=700 or @tag=710 or @tag=711"/>
1723
                <xsl:when test="marc:subfield[@code='n']">
1727
                <xsl:when test="marc:subfield[@code='n']">
Lines 1971-1980 Link Here
1971
                    </xsl:element>
1975
                    </xsl:element>
1972
                </a>
1976
                </a>
1973
            </xsl:if>
1977
            </xsl:if>
1974
                <xsl:choose>
1978
            </li>
1975
                    <xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
1976
                </xsl:choose>
1977
            </xsl:for-each>
1979
            </xsl:for-each>
1980
        </ul>
1978
        </span>
1981
        </span>
1979
        </xsl:if>
1982
        </xsl:if>
1980
    </xsl:template>
1983
    </xsl:template>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACResults.xsl (-9 / +5 lines)
Lines 503-509 Link Here
503
    </xsl:if>
503
    </xsl:if>
504
    <!-- End of OpenURL -->
504
    <!-- End of OpenURL -->
505
505
506
    <p>
507
    <!-- Author Statement: Alternate Graphic Representation (MARC 880) -->
506
    <!-- Author Statement: Alternate Graphic Representation (MARC 880) -->
508
    <xsl:if test="$display880">
507
    <xsl:if test="$display880">
509
      <xsl:call-template name="m880Select">
508
      <xsl:call-template name="m880Select">
Lines 515-523 Link Here
515
    <xsl:choose>
514
    <xsl:choose>
516
    <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
515
    <xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
517
516
518
        <span class="byAuthor">by </span><span class="author">
517
        <span class="byAuthor">by </span>
518
        <ul class="author resource_list">
519
        <!-- #13383 -->
519
        <!-- #13383 -->
520
        <xsl:for-each select="marc:datafield[(@tag=100 or @tag=700 or @tag=110 or @tag=710 or @tag=111 or @tag=711) and @ind1!='z']">
520
        <xsl:for-each select="marc:datafield[(@tag=100 or @tag=700 or @tag=110 or @tag=710 or @tag=111 or @tag=711) and @ind1!='z']">
521
            <li>
521
            <xsl:call-template name="chopPunctuation">
522
            <xsl:call-template name="chopPunctuation">
522
                <xsl:with-param name="chopString">
523
                <xsl:with-param name="chopString">
523
                    <xsl:call-template name="subfieldSelect">
524
                    <xsl:call-template name="subfieldSelect">
Lines 633-647 Link Here
633
                    <xsl:text>]</xsl:text>
634
                    <xsl:text>]</xsl:text>
634
                </span>
635
                </span>
635
            </xsl:if>
636
            </xsl:if>
636
            <xsl:choose>
637
            </li>
637
                <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
638
            </xsl:choose>
639
        </xsl:for-each>
638
        </xsl:for-each>
640
639
        </ul>
641
    </span>
642
    </xsl:when>
640
    </xsl:when>
643
    </xsl:choose>
641
    </xsl:choose>
644
    </p>
645
642
646
    <xsl:call-template name="show-series">
643
    <xsl:call-template name="show-series">
647
        <xsl:with-param name="searchurl">/cgi-bin/koha/opac-search.pl</xsl:with-param>
644
        <xsl:with-param name="searchurl">/cgi-bin/koha/opac-search.pl</xsl:with-param>
648
- 

Return to bug 27613