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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 / +8 lines)
Lines 1380-1390 dd { Link Here
1380
    margin-top: -.5em;
1380
    margin-top: -.5em;
1381
1381
1382
    h5 {
1382
    h5 {
1383
        text-align: center;
1383
        border-right: 1px solid #B9D8D9;
1384
        border-right: 1px solid #B9D8D9;
1384
        margin-bottom: 0;
1385
        margin-bottom: 0;
1385
        padding-bottom: .5em;
1386
        padding-bottom: .5em;
1386
        padding-left: -.5em;
1387
        padding-left: -.5em;
1387
        padding-top: .3em;
1388
        padding-top: .5em;
1388
1389
1389
        &:empty {
1390
        &:empty {
1390
            border-right: 0;
1391
            border-right: 0;
Lines 1413-1418 dd { Link Here
1413
        border-right: 1px solid #B9D8D9;
1414
        border-right: 1px solid #B9D8D9;
1414
        width: 100%;
1415
        width: 100%;
1415
    }
1416
    }
1417
1418
    + .staffgrade {
1419
        h5 {
1420
            background-color: #EEE;
1421
        }
1422
    }
1416
}
1423
}
1417
1424
1418
.patroninfo-section {
1425
.patroninfo-section {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (-2 / +9 lines)
Lines 2-8 Link Here
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% PROCESS 'member-display-address-style.inc' %]
3
[% PROCESS 'member-display-address-style.inc' %]
4
[% IF ( patron.borrowernumber ) %]
4
[% IF ( patron.borrowernumber ) %]
5
<div class="patroninfo"><h5>[% INCLUDE 'patron-title.inc' %]</h5>
5
[% SET patrongrade = ( patron.has_permission({ 'catalogue' => 1 }) ) ? 'staffgrade' : 'normalgrade' %]
6
<div class="patroninfo [% patrongrade | html %]">
7
8
<h5>
9
    [% IF ( patrongrade == 'staffgrade' ) %]
10
        <i class="fa fa-shield" title="Staff patron"></i>
11
    [% END %]
12
    [% INCLUDE 'patron-title.inc' %]
13
</h5>
6
14
7
[% IF Koha.Preference('showLastPatron') %]
15
[% IF Koha.Preference('showLastPatron') %]
8
    <input type="hidden" id="hiddenborrowernumber" value="[% patron.borrowernumber | html %]">
16
    <input type="hidden" id="hiddenborrowernumber" value="[% patron.borrowernumber | html %]">
9
- 

Return to bug 26534