[Library | Trunk]: Remove custom icon class from links

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@59196 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2020-07-29 14:37:33 +00:00
parent 94d2e9aeaf
commit 79ffb5f6d0
2 changed files with 11 additions and 7 deletions

View File

@ -97,7 +97,8 @@
<div *ngIf="result['websiteURL'] != undefined && result['websiteURL'] != ''">
<span>Website URL: </span>
<span>
<a href="{{result['websiteURL']}}" target="_blank" class="custom-external custom-icon">
<a href="{{result['websiteURL']}}" target="_blank">
<span class="custom-external custom-icon"></span>
{{result['websiteURL']}}
</a>
</span>
@ -105,7 +106,8 @@
<div *ngIf="result['OAIPMHURL'] != undefined && result['OAIPMHURL'] != ''">
<span>OAI-PMH URL: </span>
<span>
<a href="{{result['OAIPMHURL']}}" target="_blank" class="custom-external custom-icon">
<a href="{{result['OAIPMHURL']}}" target="_blank">
<span class="custom-external custom-icon"></span>
{{result['OAIPMHURL']}}
</a>
</span>

View File

@ -185,7 +185,8 @@
<div *ngIf="result.websiteURL && result.websiteURL != '' && !promoteWebsiteURL" class="uk-margin-small-bottom">
<span class="uk-text-muted">Website URL: </span>
<span>
<a href="{{result.websiteURL}}" target="_blank" class="custom-external custom-icon">
<a href="{{result.websiteURL}}" target="_blank">
<span class="custom-external custom-icon"></span>
{{result.websiteURL}}
</a>
</span>
@ -194,10 +195,11 @@
<div *ngIf="result.OAIPMHURL && result.OAIPMHURL != ''" class="uk-margin-small-bottom">
<span class="uk-text-muted">OAI-PMH URL: </span>
<span>
<a href="{{result.OAIPMHURL}}" target="_blank" class="custom-external custom-icon">
{{result.OAIPMHURL}}
</a>
</span>
<a href="{{result.OAIPMHURL}}" target="_blank">
<span class="custom-external custom-icon"></span>
{{result.OAIPMHURL}}
</a>
</span>
</div>
<!-- Subjects -->
<div *ngIf="showSubjects && result.subjects && result.subjects.length > 0"