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

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/opac.css (+7 lines)
Lines 108-113 td { Link Here
108
#booleansearch label {
108
#booleansearch label {
109
  display: inline;
109
  display: inline;
110
}
110
}
111
112
.componentPartRecordsContainer {
113
    float: right;
114
    overflow-y: auto;
115
    overflow-x: hidden;
116
}
117
111
#basketcount {
118
#basketcount {
112
  display: inline;
119
  display: inline;
113
  margin: 0;
120
  margin: 0;
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+4 lines)
Lines 1658-1663 Link Here
1658
//]]>
1658
//]]>
1659
</script>
1659
</script>
1660
1660
1661
[% IF ( Koha.Preference( 'AddComponentPartRecordsToDetailedViews' ) == 1 ) %]
1662
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/componentPart.js"></script>
1663
[% END %]
1664
1661
[% IF OPACPopupAuthorsSearch %]
1665
[% IF OPACPopupAuthorsSearch %]
1662
    <script type="text/javascript">
1666
    <script type="text/javascript">
1663
    //<![CDATA[
1667
    //<![CDATA[
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +25 lines)
Lines 91-96 Link Here
91
            </xsl:choose>
91
            </xsl:choose>
92
        </xsl:variable>
92
        </xsl:variable>
93
93
94
		<!--Component part records: Displaying title and author of component part records if available. These are floated to right by css. -->
95
		<xsl:if test="marc:componentPartRecords/marc:componentPart">
96
		 <span class="componentPartRecordsContainer results_summary">
97
			   <h5>Component part records:</h5>
98
			   <xsl:for-each select="marc:componentPartRecords/marc:componentPart">
99
				 <span class="componentPartRecord">
100
					   <xsl:if test="marc:title">
101
						 <span class="componentPartRecordTitle">
102
							   <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="marc:biblionumber" /></xsl:attribute>
103
								 <xsl:value-of select="marc:title" />
104
							   </a>
105
						 </span>
106
					   </xsl:if>
107
					   <xsl:if test="marc:author">
108
						 -
109
						 <span class="componentPartRecordAuthor">
110
							   <xsl:value-of select="marc:author" />
111
						 </span>
112
					   </xsl:if>
113
				 </span>
114
				 <br />
115
			   </xsl:for-each>
116
		 </span>
117
		</xsl:if>
118
94
        <!-- Title Statement -->
119
        <!-- Title Statement -->
95
        <!-- Alternate Graphic Representation (MARC 880) -->
120
        <!-- Alternate Graphic Representation (MARC 880) -->
96
        <xsl:if test="$display880">
121
        <xsl:if test="$display880">
97
- 

Return to bug 11175