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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+13 lines)
Lines 327-332 fieldset { Link Here
327
    border-radius:5px;
327
    border-radius:5px;
328
}
328
}
329
329
330
fieldset.lastchecked {
331
    margin-bottom : 0;
332
    border-bottom-width: 0;
333
    border-bottom-left-radius: 0;
334
    border-bottom-right-radius: 0;
335
}
336
330
legend {
337
legend {
331
	font-size : 123.1%;
338
	font-size : 123.1%;
332
	font-weight : bold;
339
	font-weight : bold;
Lines 2740-2743 span.onsite_checkout { Link Here
2740
    background-color : rgba(255, 242, 206, 0.5);
2747
    background-color : rgba(255, 242, 206, 0.5);
2741
    border-radius: 4px;
2748
    border-radius: 4px;
2742
    border : 1px solid #FFF2CE;
2749
    border : 1px solid #FFF2CE;
2750
}
2751
div.lastchecked {
2752
    padding : .2em 1em;
2753
    border: 2px solid #BCDB89;
2754
    border-bottom-left-radius: 5px;
2755
    border-bottom-right-radius: 5px;
2743
}
2756
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-7 / +13 lines)
Lines 517-523 No patron matched <span class="ex">[% message %]</span> Link Here
517
517
518
518
519
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
519
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
520
<fieldset id="circ_circulation_issue">
520
[% IF ( issue ) %]
521
    <fieldset id="circ_circulation_issue" class="lastchecked">
522
[% ELSE %]
523
    <fieldset id="circ_circulation_issue">
524
[% END %]
521
    [% IF ( DisplayClearScreenButton ) %]
525
    [% IF ( DisplayClearScreenButton ) %]
522
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
526
        <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
523
    [% END %]
527
    [% END %]
Lines 588-594 No patron matched <span class="ex">[% message %]</span> Link Here
588
                        <input type="hidden" name="oldamount" value="[% amountold %]" />
592
                        <input type="hidden" name="oldamount" value="[% amountold %]" />
589
                [% END %]
593
                [% END %]
590
</fieldset>
594
</fieldset>
591
</form></div>[% END %]<!-- /unless noissues -->
595
[% IF ( issue ) %]
596
    <div class="lastchecked">
597
        <p><strong>Checked out: </strong>[% issue.item.biblio.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]</p>
598
    </div>
599
[% END %]
600
</form></div>
601
602
[% END %]<!-- /unless noissues -->
592
603
593
[% IF ( noissues ) %]
604
[% IF ( noissues ) %]
594
    [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
605
    [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
Lines 752-761 No patron matched <span class="ex">[% message %]</span> Link Here
752
763
753
</div>
764
</div>
754
</div>
765
</div>
755
[% IF ( issue ) %]
756
    <div class="dialog message">[% issue.item.biblio.title %] ([% issue.item.barcode %]) due on [% issue.date_due | $KohaDates %]</div>
757
[% END %]
758
759
766
760
<div class="yui-g"><div id="patronlists" class="toptabs">
767
<div class="yui-g"><div id="patronlists" class="toptabs">
761
768
762
- 

Return to bug 13315