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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-3 / +3 lines)
Lines 1831-1838 ul.budget_hierarchy li:first-child:after { Link Here
1831
.child_fund_amount {
1831
.child_fund_amount {
1832
    font-style: italic;
1832
    font-style: italic;
1833
}
1833
}
1834
.holdcount { font-size : 105%; line-height : 200%; }
1834
.number_box { font-size : 105%; line-height : 200%; }
1835
.holdcount a {
1835
.number_box a {
1836
	border : 1px solid #a4bedd;
1836
	border : 1px solid #a4bedd;
1837
	background-color : #e4ecf5;
1837
	background-color : #e4ecf5;
1838
	font-weight : bold;
1838
	font-weight : bold;
Lines 1841-1847 ul.budget_hierarchy li:first-child:after { Link Here
1841
	padding : .1em .4em;
1841
	padding : .1em .4em;
1842
	text-decoration : none;
1842
	text-decoration : none;
1843
}
1843
}
1844
.holdcount a:hover { background-color : #ebeff7; }
1844
.number_box a:hover { background-color : #ebeff7; }
1845
.container {
1845
.container {
1846
	border : 1px solid #EEE;
1846
	border : 1px solid #EEE;
1847
	padding : 1em;
1847
	padding : 1em;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +19 lines)
Lines 2-7 Link Here
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
4
[% USE Branches %]
4
[% USE Branches %]
5
[% USE Biblio %]
5
6
6
[% ShowCourseReserves = 0 %]
7
[% ShowCourseReserves = 0 %]
7
[% IF UseCourseReserves %]
8
[% IF UseCourseReserves %]
Lines 378-384 function verify_images() { Link Here
378
                    </span>
379
                    </span>
379
        [% END %]
380
        [% END %]
380
        <span id="catalogue_detail_marc_preview" class="results_summary"><span class="label">MARC Preview:</span> <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblionumber %]&amp;viewas=html" title="MARC" class="previewMARC">Show</a></span>
381
        <span id="catalogue_detail_marc_preview" class="results_summary"><span class="label">MARC Preview:</span> <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblionumber %]&amp;viewas=html" title="MARC" class="previewMARC">Show</a></span>
381
        [% IF ( holdcount ) %]<span class="results_summary"><span class="label">Holds:</span> <span class="holdcount"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">[% holdcount %]</a></span></span>[% ELSE %][% END %]
382
383
        [% IF ( holdcount ) %]
384
            <span class="results_summary">
385
                <span class="label">Holds:</span>
386
                <span class="number_box">
387
                    <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">[% holdcount %]</a>
388
                </span>
389
            </span>
390
        [% END %]
391
392
        [% IF ( article_requests_count = Biblio.ArticleRequestsActiveCount( biblionumber ) ) %]
393
            <span class="results_summary">
394
                <span class="label">Article requests:</span>
395
                <span class="number_box">
396
                    <a href="/cgi-bin/koha/circ/request-article.pl?biblionumber=[% biblionumber %]">[% article_requests_count %]</a>
397
                </span>
398
            </span>
399
        [% END %]
382
400
383
        [% IF ( AmazonCoverImages  || LocalCoverImages ) %]
401
        [% IF ( AmazonCoverImages  || LocalCoverImages ) %]
384
        </div><div class="yui-u" id="bookcoverimg">
402
        </div><div class="yui-u" id="bookcoverimg">
385
- 

Return to bug 14610