Lines 3-8
Link Here
|
3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
4 |
[% USE KohaPlugins %] |
4 |
[% USE KohaPlugins %] |
5 |
[% USE String %] |
5 |
[% USE String %] |
|
|
6 |
[% USE Branches %] |
6 |
[% PROCESS 'html_helpers.inc' %] |
7 |
[% PROCESS 'html_helpers.inc' %] |
7 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
8 |
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
9 |
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
Lines 52-57
var Koha = {};
Link Here
|
52 |
[% IF ( login ) %] |
53 |
[% IF ( login ) %] |
53 |
[% Asset.css("css/login.css") | $raw %] |
54 |
[% Asset.css("css/login.css") | $raw %] |
54 |
[% END %] |
55 |
[% END %] |
|
|
56 |
[% SET branchcolor = Branches.GetBranchColor( Branches.GetLoggedInBranchcode() ) || '#408540' %] |
57 |
<style> |
58 |
.toptabs, |
59 |
#header_search, |
60 |
#header_search ul, |
61 |
#header_search .nav-tabs > li > a { |
62 |
background: [% branchcolor | html %] !important; |
63 |
border-color: [% branchcolor | html %] !important; |
64 |
} |
65 |
|
66 |
.form-title, #header_search button[type="submit"] { |
67 |
background: [% branchcolor | html %] !important; |
68 |
filter: brightness(85%); |
69 |
} |
70 |
|
71 |
#header_search .nav-tabs > li > a { |
72 |
background: [% branchcolor | html %] !important; |
73 |
border-color: [% branchcolor | html %] !important; |
74 |
} |
75 |
</style> |
55 |
[% IF ( IntranetUserCSS ) %]<style>[% IntranetUserCSS | $raw %]</style>[% END %] |
76 |
[% IF ( IntranetUserCSS ) %]<style>[% IntranetUserCSS | $raw %]</style>[% END %] |
56 |
|
77 |
|
57 |
[% KohaPlugins.get_plugins_intranet_head | $raw %] |
78 |
[% KohaPlugins.get_plugins_intranet_head | $raw %] |
58 |
- |
|
|