Bug 32910: (follow-up) A few more icon name corrections
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
81b2ee0eb0
commit
4e90f74ab9
6 changed files with 9 additions and 9 deletions
|
@ -957,9 +957,9 @@ details[open] {
|
|||
content: "\f015";
|
||||
font-family: "Font Awesome 6 Free";
|
||||
font-style: normal;
|
||||
font-size: 14px;
|
||||
visibility: visible;
|
||||
font-size: 12px;
|
||||
padding-right: .3em;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
<ul class="nav nav-tabs" role="tablist">
|
||||
<li role="presentation" class="active">
|
||||
<a id="agreement_search_tab" title="Search agreements" href="#agreement_search" aria-controls="agreement_search" role="tab" aria-expanded="true" data-toggle="tab" class="keep_text"><i class="fa fa-check-circle-o"></i> <span class="tab-title">Search agreements</span></a>
|
||||
<a id="agreement_search_tab" title="Search agreements" href="#agreement_search" aria-controls="agreement_search" role="tab" aria-expanded="true" data-toggle="tab" class="keep_text"><i class="fa fa-check-circle"></i> <span class="tab-title">Search agreements</span></a>
|
||||
</li>
|
||||
<li role="presentation">
|
||||
<a id="license_search_tab" title="Search licenses" href="#license_search" aria-controls="license_search" role="tab" aria-expanded="true" data-toggle="tab" class="keep_text"><i class="fa fa-gavel"></i> <span class="tab-title">Search licenses</span></a>
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
margin: .9em;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.fa-file-archive-o {
|
||||
.fa-file-zipper {
|
||||
color: #777;
|
||||
font-size: 300%
|
||||
}
|
||||
|
|
|
@ -162,7 +162,7 @@ function ParseFile(file) {
|
|||
reader.readAsDataURL(file);
|
||||
} else if( file.type.indexOf("zip") > 0) {
|
||||
Output(
|
||||
'<p><i class="fa-solid fa-zipper" aria-hidden="true"></i></p>'
|
||||
'<p><i class="fa-solid fa-file-zipper" aria-hidden="true"></i></p>'
|
||||
);
|
||||
$("#biblionumber_entry").hide();
|
||||
$("#image").prop("checked", false );
|
||||
|
|
|
@ -1099,7 +1099,7 @@
|
|||
[% CASE "linkedin" -%]
|
||||
<div><a id="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url=[% current_url |url %]&title=[% title |url %]" title="Share on LinkedIn"><i class="fab fa-linkedin" aria-hidden="true"></i></a></div>
|
||||
[% CASE "email" -%]
|
||||
<div><a id="email" href="mailto:?subject=[% title |url %]&body=[% title |url %]%20([% current_url |url %])" title="Share by email"><i class="fa fa-envelope-o" aria-hidden="true"></i></a></div>
|
||||
<div><a id="email" href="mailto:?subject=[% title |url %]&body=[% title |url %]%20([% current_url |url %])" title="Share by email"><i class="fa-solid fa-envelope" aria-hidden="true"></i></a></div>
|
||||
[% CASE "twitter" -%]
|
||||
<div><a id="twitter" href="https://twitter.com/share?url=[% current_url|url %]&text=[% title | uri %]" class="twitter-share-button" data-count="none" data-lang="[% lang | html %]" title="Share on Twitter"><i class="fab fa-twitter" aria-hidden="true"></i></a></div>
|
||||
[% END # /SWITCH network -%]
|
||||
|
|
|
@ -252,7 +252,7 @@
|
|||
<input type="hidden" name="referer" value="view" />
|
||||
<input type='hidden' name='public' value='[% shelf.public | html %]' />
|
||||
<input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-edit" aria-hidden="true"></i> Edit list</button>
|
||||
</form>
|
||||
|
||||
[% PROCESS delete_shelf context = "details" %]
|
||||
|
@ -550,7 +550,7 @@
|
|||
<input type="hidden" name="referer" value="view" />
|
||||
<input type="hidden" name="public" value="[% shelf.public | html %]" />
|
||||
<input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-pencil-square-o" aria-hidden="true"></i> Edit list</button>
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-fw fa-edit" aria-hidden="true"></i> Edit list</button>
|
||||
</form>
|
||||
|
||||
[% PROCESS delete_shelf context = "details" %]
|
||||
|
@ -765,7 +765,7 @@
|
|||
<input type="hidden" name="public" value="[% s.public | html %]" />
|
||||
<input type="hidden" name="op" value="edit_form" />
|
||||
<input type="hidden" name="referer" value="list" />
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</button>
|
||||
<button type="submit" class="btn btn-link editshelf"><i class="fa fa-edit" aria-hidden="true"></i> Edit</button>
|
||||
</form>
|
||||
[% END %]
|
||||
[% IF s.can_be_deleted( loggedinusernumber ) %]
|
||||
|
|
Loading…
Reference in a new issue