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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss (-2 / +11 lines)
Lines 295-302 a.navbar-toggle { Link Here
295
}
295
}
296
296
297
#lastborrowerlink {
297
#lastborrowerlink {
298
    color: #FFFFFF;
298
    font-size: 13px;
299
    background-color: $background-color-primary;
299
    padding: 0 .7em;
300
301
    & + .dropdown-toggle {
302
        margin-left: 0;
303
        padding: .01em .7em;
304
305
        &:hover {
306
            background-color: #FFF;
307
        }
308
    }
300
}
309
}
301
310
302
@media (max-width: 768px) {
311
@media (max-width: 768px) {
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-1 / +9 lines)
Lines 941-946 details[open] { Link Here
941
    justify-content: space-between;
941
    justify-content: space-between;
942
}
942
}
943
943
944
#shortcut {
945
    display: flex;
946
}
947
944
#breadcrumbs, #shortcut {
948
#breadcrumbs, #shortcut {
945
    background-color: transparent;
949
    background-color: transparent;
946
    clear: both;
950
    clear: both;
Lines 3223-3229 label { Link Here
3223
    }
3227
    }
3224
3228
3225
    > .btn:first-child:not( :last-child ):not( .dropdown-toggle ) {
3229
    > .btn:first-child:not( :last-child ):not( .dropdown-toggle ) {
3226
        border-right: 1px solid darken( saturate( $btn-primary, 15 ), 15 );
3230
        border-right: 1px solid #CCC;
3231
3232
        &.btn-primary {
3233
            border-right: 1px solid darken( saturate( $btn-primary, 15 ), 15 );
3234
        }
3227
    }
3235
    }
3228
}
3236
}
3229
3237
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/last-borrower.inc (-3 / +3 lines)
Lines 3-14 Link Here
3
</script>
3
</script>
4
<div id="lastborrower-window">
4
<div id="lastborrower-window">
5
    <div class="btn-group">
5
    <div class="btn-group">
6
        <a class="btn btn-default navbar-btn lastborrower" id="lastborrowerlink" href="#" title=""><i class="fa fa-arrow-right"></i> Last patron</a>
6
        <a class="btn btn-link navbar-btn lastborrower" id="lastborrowerlink" href="#" title=""><i class="fa fa-arrow-right"></i> Last patron</a>
7
        <button type="button" data-toggle="dropdown" class="btn btn-default navbar-btn dropdown-toggle" aria-haspopup="true" aria-expanded="false">
7
        <button type="button" data-toggle="dropdown" class="btn btn-link navbar-btn dropdown-toggle" aria-haspopup="true" aria-expanded="false">
8
            <span class="caret"></span>
8
            <span class="caret"></span>
9
            <span class="sr-only">Toggle Dropdown</span>
9
            <span class="sr-only">Toggle Dropdown</span>
10
        </button>
10
        </button>
11
        <ul id="lastBorrowerList" class="dropdown-menu">
11
        <ul id="lastBorrowerList" class="dropdown-menu dropdown-menu-right">
12
            <li role="separator" class="divider"></li>
12
            <li role="separator" class="divider"></li>
13
            <li><a id="lastborrower-remove" class="lastborrower" href="#">Clear list</a></li>
13
            <li><a id="lastborrower-remove" class="lastborrower" href="#">Clear list</a></li>
14
        </ul>
14
        </ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/shortcut.inc (-2 / +3 lines)
Lines 3-7 Link Here
3
        [% INCLUDE 'last-borrower.inc' %]
3
        [% INCLUDE 'last-borrower.inc' %]
4
    [% END %]
4
    [% END %]
5
5
6
    <a class="toplinks" href="/cgi-bin/koha/help.pl" id="helper"><i class="fa-solid fa-circle-question"></i> <span>Help</span></a>
6
    <div>
7
        <a class="" href="/cgi-bin/koha/help.pl" id="helper"><i class="fa-solid fa-circle-question"></i> <span>Help</span></a>
8
    </div>
7
</nav>
9
</nav>
8
- 

Return to bug 35037