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 1381-1391 dd { Link Here
1381
    margin-top: -.5em;
1381
    margin-top: -.5em;
1382
1382
1383
    h5 {
1383
    h5 {
1384
        text-align: center;
1384
        border-right: 1px solid #B9D8D9;
1385
        border-right: 1px solid #B9D8D9;
1385
        margin-bottom: 0;
1386
        margin-bottom: 0;
1386
        padding-bottom: .5em;
1387
        padding-bottom: .5em;
1387
        padding-left: -.5em;
1388
        padding-left: -.5em;
1388
        padding-top: .3em;
1389
        padding-top: .5em;
1389
1390
1390
        &:empty {
1391
        &:empty {
1391
            border-right: 0;
1392
            border-right: 0;
Lines 1414-1419 dd { Link Here
1414
        border-right: 1px solid #B9D8D9;
1415
        border-right: 1px solid #B9D8D9;
1415
        width: 100%;
1416
        width: 100%;
1416
    }
1417
    }
1418
1419
    + .staffgrade {
1420
        h5 {
1421
            background-color: #EEE;
1422
        }
1423
    }
1417
}
1424
}
1418
1425
1419
.patroninfo-section {
1426
.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