[Trunk | Library]:
1. orcid-work.component.ts: Update orcid icons for landing. 2. showAuthors.component.ts: In popup shown for authors with orcid or orcid_pending info, show appropriate messages. git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60519 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
b2bec99ff4
commit
74eadebf48
|
@ -99,7 +99,7 @@ declare var UIkit: any;
|
|||
<!-- <rect x="7.5" y="1" width="1" height="15" fill="#A6CE39"></rect>-->
|
||||
<!-- <rect x="1" y="7.5" width="15" height="1" fill="#A6CE39"></rect>-->
|
||||
<!-- </svg>-->
|
||||
<img src="assets/common-assets/common/orcid_add.png" width="40" height="40">
|
||||
<img src="assets/common-assets/common/orcid_add.svg" width="40" height="40">
|
||||
</span>
|
||||
<span *ngIf="showLoading" class="uk-icon icon-button loading-action-button"><loading
|
||||
[top_margin]="false"></loading></span>
|
||||
|
@ -135,7 +135,7 @@ declare var UIkit: any;
|
|||
<!-- <rect x="11" y="7" width="1" height="9" color="#FF3D33"></rect>-->
|
||||
<!-- <rect x="2" y="3" width="16" height="1" color="#FF3D33"></rect>-->
|
||||
<!-- </svg>-->
|
||||
<img src="assets/common-assets/common/orcid_bin.png" width="40" height="40">
|
||||
<img src="assets/common-assets/common/orcid_bin.svg" width="40" height="40">
|
||||
</span>
|
||||
<span *ngIf="showLoading" class="uk-icon icon-button loading-action-button"><loading
|
||||
[top_margin]="false"></loading></span>
|
||||
|
|
|
@ -32,6 +32,12 @@ import {properties} from "../../../../environments/environment";
|
|||
<b class="uk-margin-top">{{author.fullName}}</b>
|
||||
<div>
|
||||
<div class="uk-text-muted uk-margin-small-bottom uk-margin-small-top">ORCID</div>
|
||||
|
||||
<div class="uk-text-muted uk-text-small uk-margin-small-top uk-margin-small-bottom">
|
||||
<i *ngIf="author.orcid">Harvested from ORCID Public Data File</i>
|
||||
<i *ngIf="author.orcid_pending">Derived by OpenAIRE algorithms or harvested from 3d party repositories</i>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="orcid uk-display-inline-block">
|
||||
<input #element class="uk-padding-small uk-padding-remove-vertical uk-disabled"
|
||||
|
@ -48,8 +54,6 @@ import {properties} from "../../../../environments/environment";
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="author.orcid" class="uk-text-muted uk-text-small uk-margin-top">Harvested from ORCID Public Data File</div>
|
||||
|
||||
<hr>
|
||||
<div class="uk-margin-top">
|
||||
Search <b>{{author.fullName}}</b> in OpenAIRE
|
||||
|
|
Loading…
Reference in New Issue