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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-1 / +13 lines)
Lines 333-338 fieldset { Link Here
333
    border-radius:5px;
333
    border-radius:5px;
334
}
334
}
335
335
336
fieldset.lastchecked {
337
    margin-bottom : 0;
338
    border-bottom-width: 0;
339
    border-bottom-left-radius: 0;
340
    border-bottom-right-radius: 0;
341
}
342
336
legend {
343
legend {
337
	font-size : 123.1%;
344
	font-size : 123.1%;
338
	font-weight : bold;
345
	font-weight : bold;
Lines 2764-2770 span.onsite_checkout { Link Here
2764
    border-radius: 4px;
2771
    border-radius: 4px;
2765
    border : 1px solid #FFF2CE;
2772
    border : 1px solid #FFF2CE;
2766
}
2773
}
2767
2774
div.lastchecked {
2775
    padding : .2em 1em;
2776
    border: 2px solid #BCDB89;
2777
    border-bottom-left-radius: 5px;
2778
    border-bottom-right-radius: 5px;
2779
}
2768
.branchgriditem {
2780
.branchgriditem {
2769
    background-color: #fff;
2781
    background-color: #fff;
2770
    border: 1px solid #b9d8d9;
2782
    border: 1px solid #b9d8d9;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-7 / +13 lines)
Lines 526-532 No patron matched <span class="ex">[% message %]</span> Link Here
526
526
527
527
528
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
528
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
529
<fieldset id="circ_circulation_issue">
529
[% IF ( issue ) %]
530
    <fieldset id="circ_circulation_issue" class="lastchecked">
531
[% ELSE %]
532
    <fieldset id="circ_circulation_issue">
533
[% END %]
530
    [% IF ( DisplayClearScreenButton ) %]
534
    [% IF ( DisplayClearScreenButton ) %]
531
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
535
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
532
    [% END %]
536
    [% END %]
Lines 597-603 No patron matched <span class="ex">[% message %]</span> Link Here
597
                        <input type="hidden" name="oldamount" value="[% amountold %]" />
601
                        <input type="hidden" name="oldamount" value="[% amountold %]" />
598
                [% END %]
602
                [% END %]
599
</fieldset>
603
</fieldset>
600
</form></div>[% END %]<!-- /unless noissues -->
604
[% IF ( issue ) %]
605
    <div class="lastchecked">
606
        <p><strong>Checked out: </strong>[% issue.item.biblio.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]</p>
607
    </div>
608
[% END %]
609
</form></div>
610
611
[% END %]<!-- /unless noissues -->
601
612
602
[% IF ( noissues ) %]
613
[% IF ( noissues ) %]
603
    [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
614
    [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
Lines 761-770 No patron matched <span class="ex">[% message %]</span> Link Here
761
772
762
</div>
773
</div>
763
</div>
774
</div>
764
[% IF ( issue ) %]
765
    <div class="dialog message">[% issue.item.biblio.title %] ([% issue.item.barcode %]) due on [% issue.date_due | $KohaDates %]</div>
766
[% END %]
767
768
775
769
<div class="yui-g"><div id="patronlists" class="toptabs">
776
<div class="yui-g"><div id="patronlists" class="toptabs">
770
777
771
- 

Return to bug 13315