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 2694-2699 li { Link Here
2694
    }
2694
    }
2695
}
2695
}
2696
2696
2697
#printclearscreen {
2698
    position: absolute;
2699
    right: 43px;
2700
    top: 0;
2701
2702
    a {
2703
        background-color: #EEE;
2704
        border-radius: 0 0 0 5px;
2705
        color: #CCC;
2706
        display: block;
2707
        font-size: 160%;
2708
        font-weight: bold;
2709
        padding: 0 .7em .2em;
2710
        text-decoration: none;
2711
        text-shadow: 0 -1px 0 #666;
2712
2713
        &:hover {
2714
            color: #CC0000;
2715
        }
2716
    }
2717
}
2697
.pager {
2718
.pager {
2698
    background-color: #E8E8E8;
2719
    background-color: #E8E8E8;
2699
    border: 1px solid #BCBCBC;
2720
    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