Bugzilla – Attachment 111871 Details for
Bug 26687
Add a Font Awesome icon for superlibrarian patrons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26687: Add color to Font Awesome icon for superlibrarian patrons
Bug-26687-Add-color-to-Font-Awesome-icon-for-super.patch (text/plain), 2.36 KB, created by
Owen Leonard
on 2020-10-16 12:50:10 UTC
(
hide
)
Description:
Bug 26687: Add color to Font Awesome icon for superlibrarian patrons
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2020-10-16 12:50:10 UTC
Size:
2.36 KB
patch
obsolete
>From 2173ecc1b94fc1e78c46e53fe31fea017cec4249 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Thu, 15 Oct 2020 10:48:52 +0200 >Subject: [PATCH] Bug 26687: Add color to Font Awesome icon for superlibrarian > patrons > >Bug 26534 adds a shield Font Awesome icon to help identify staff >patrons. I propose to color this icon when patron is a superlibrarian. > >Patch adds 'is-superlibrarian' class that may be used for more CSS >tuning. > >Test plan: >1) Update staff CSS (yarn build) >2) Compare display between a patron A beeing superlibarian and a patron > B having only staff interface access >3) Patron B has unchanged black shield icon >4) Patron A has red shield icon >5) Check a patron without permissions has no shield icon > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 6 ++++++ > koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 8 +++++++- > 2 files changed, 13 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >index a698ec9bf9..bf7a023a63 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >+++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >@@ -1419,6 +1419,12 @@ dd { > background-color: #EEE; > } > } >+ >+ &.is-superlibrarian { >+ .fa.fa-shield { >+ color: #CC0000; >+ } >+ } > } > > .patroninfo-section { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >index 17f8f36f11..7189171a2b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >@@ -3,7 +3,13 @@ > [% PROCESS 'member-display-address-style.inc' %] > [% IF ( patron.borrowernumber ) %] > [% SET patron_is_staff = patron.has_permission({ 'catalogue' => 1 }) %] >-[% SET patron_type_class = patron_is_staff ? 'is-staff' : 'is-not-staff' %] >+[% SET patron_is_superlibrarian = patron.is_superlibrarian %] >+[% SET patron_type_class = 'is-not-staff' %] >+[% IF ( patron_is_superlibrarian ) %] >+ [% patron_type_class = 'is-staff is-superlibrarian' %] >+[% ELSIF ( patron_is_staff ) %] >+ [% patron_type_class = 'is-staff' %] >+[% END %] > <div class="patroninfo [% patron_type_class | html %]"> > > [% IF ( patronimages ) %] >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26687
:
111686
|
111871
|
111875
|
112140
|
112141
|
112245
|
112247