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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+8 lines)
Lines 2548-2550 a.disabled { Link Here
2548
.modal-header .closebtn{margin-top:2px;}
2548
.modal-header .closebtn{margin-top:2px;}
2549
.closebtn{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.closebtn:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
2549
.closebtn{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.closebtn:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
2550
button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
2550
button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
2551
2552
.inline {
2553
    display : inline;
2554
}
2555
2556
.nowrap {
2557
    white-space: nowrap;
2558
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (-8 / +7 lines)
Lines 1-3 Link Here
1
[% USE String %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] Catalog &rsaquo; Your cart</title>
3
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] Catalog &rsaquo; Your cart</title>
3
    [% IF ( print_basket ) %]
4
    [% IF ( print_basket ) %]
Lines 88-99 function placeHold () { Link Here
88
        $(".holdsep").text("| ");
89
        $(".holdsep").text("| ");
89
        $(".hold").text(_("Place Hold"));
90
        $(".hold").text(_("Place Hold"));
90
        $("#downloadcartc").empty();
91
        $("#downloadcartc").empty();
91
        yuiToolbar();
92
92
93
        /* Define two custom functions (asc and desc) for string sorting */
93
        /* Define two custom functions (asc and desc) for string sorting */
94
        jQuery.fn.dataTableExt.oSort['callnumbers-asc']  = function(x,y) {
94
        jQuery.fn.dataTableExt.oSort['callnumbers-asc']  = function(x,y) {
95
                var x_array = x.split("<span>");
95
                var x_array = x.split("<div>");
96
                var y_array = y.split("<span>");
96
                var y_array = y.split("<div>");
97
97
98
                /* Pop the first elements, they are empty strings */
98
                /* Pop the first elements, they are empty strings */
99
                x_array.shift();
99
                x_array.shift();
Lines 109-116 function placeHold () { Link Here
109
        };
109
        };
110
110
111
        jQuery.fn.dataTableExt.oSort['callnumbers-desc'] = function(x,y) {
111
        jQuery.fn.dataTableExt.oSort['callnumbers-desc'] = function(x,y) {
112
                var x_array = x.split("<span>");
112
                var x_array = x.split("<div>");
113
                var y_array = y.split("<span>");
113
                var y_array = y.split("<div>");
114
114
115
                /* Pop the first elements, they are empty strings */
115
                /* Pop the first elements, they are empty strings */
116
                x_array.shift();
116
                x_array.shift();
Lines 348-355 function placeHold () { Link Here
348
     | <a href="#" onclick="placeHold(); return false;">Place hold</a>
348
     | <a href="#" onclick="placeHold(); return false;">Place hold</a>
349
[% END %]
349
[% END %]
350
350
351
352
[% END %]
351
[% END %]
352
353
</p>
353
</p>
354
    <table id="itemst">
354
    <table id="itemst">
355
	<thead><tr>
355
	<thead><tr>
Lines 385-391 function placeHold () { Link Here
385
            <td>
385
            <td>
386
                [% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %]
386
                [% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %]
387
                    [% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %]
387
                    [% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %]
388
                        <span>[% ITEM_RESULT.itemcallnumber %] [% ITEM_RESULT.branchname %] <span class="shelvingloc">[% ITEM_RESULT.location_description %]</span></span>
388
                        <div><span class="nowrap"><strong>[% ITEM_RESULT.itemcallnumber %]</strong> [% ITEM_RESULT.branchname %] <span class="shelvingloc inline">[% ITEM_RESULT.location_description %]</span></span></div>
389
                    [% END %]
389
                    [% END %]
390
                [% ELSE %]
390
                [% ELSE %]
391
                    This record has no items.
391
                    This record has no items.
392
- 

Return to bug 9456