Bug 31439: Use pseudo element for bullet in results.tt

To test:
1. Apply patch and regenerate CSS. See:
  https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client
2. Go to the staff results page and inscept the result_item_details
   class.
3. It should contain a ::before pseudo element that is the bullet point.
4. This is easier to remove of alter with the following CSS in
   IntraNetUSerCSS:

.result_item_details::before {
	content: " " !important;
}

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Lucas Gass 2022-09-01 18:10:50 +00:00 committed by Tomas Cohen Arazi
parent 613554edc6
commit 97461b7029
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 5 additions and 2 deletions

View file

@ -4688,7 +4688,11 @@ div .suggestion_note {
.result_item_details {
display:inline-block;
white-space:nowrap
white-space:nowrap;
&::before {
content: "\2022";
}
}
.item-date-due {

View file

@ -613,7 +613,6 @@
<span class="shelvingloc">[% items_loo.location | html %]</span>
[% END %]
&bull;
[% IF ( items_loo.itemcallnumber ) %]
<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&amp;q=%22[% items_loo.itemcallnumber |uri %]%22">[% items_loo.itemcallnumber | html %]</a>
[% END %]