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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+21 lines)
Lines 2686-2691 li { Link Here
2686
    }
2686
    }
2687
}
2687
}
2688
2688
2689
#printclearscreen {
2690
    position: absolute;
2691
    right: 43px;
2692
    top: 0;
2693
2694
    a {
2695
        background-color: #EEE;
2696
        border-radius: 0 0 0 5px;
2697
        color: #CCC;
2698
        display: block;
2699
        font-size: 160%;
2700
        font-weight: bold;
2701
        padding: 0 .7em .2em;
2702
        text-decoration: none;
2703
        text-shadow: 0 -1px 0 #666;
2704
2705
        &:hover {
2706
            color: #CC0000;
2707
        }
2708
    }
2709
}
2689
.pager {
2710
.pager {
2690
    background-color: #E8E8E8;
2711
    background-color: #E8E8E8;
2691
    border: 1px solid #BCBCBC;
2712
    border: 1px solid #BCBCBC;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 508-513 No patron matched <span class="ex">[% message | html %]</span> Link Here
508
[% END %]
508
[% END %]
509
    [% IF ( DisplayClearScreenButton ) %]
509
    [% IF ( DisplayClearScreenButton ) %]
510
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
510
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
511
        <span id="printclearscreen"><a href="#" title="Print slip and clear screen"><i class="fa fa-print"></i></a></span>
511
    [% END %]
512
    [% END %]
512
513
513
    [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
514
    [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/members-menu.js (-1 / +4 lines)
Lines 75-80 $(document).ready(function(){ Link Here
75
        $(".btn-group").removeClass("open");
75
        $(".btn-group").removeClass("open");
76
        return false;
76
        return false;
77
    });
77
    });
78
    $("#printclearscreen").click(function(){
79
        printx_window("slip");
80
        window.location.replace("/cgi-bin/koha/circ/circulation.pl");
81
    });
78
    $("#searchtohold").click(function(){
82
    $("#searchtohold").click(function(){
79
        searchToHold();
83
        searchToHold();
80
        return false;
84
        return false;
81
- 

Return to bug 17854