layout changes| new external link icon, open, closed | update custom.css from dl119
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@48772 d315682c-612b-4755-9ff5-7f18f6832af3
|
@ -184,7 +184,6 @@ getCommunities () {
|
||||||
this._contextService.getCommunities().subscribe(
|
this._contextService.getCommunities().subscribe(
|
||||||
data => {
|
data => {
|
||||||
this.communities = data.communities;
|
this.communities = data.communities;
|
||||||
console.log(this.communities);
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
|
@ -196,7 +195,6 @@ getCommunities () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
getCategories () {
|
getCategories () {
|
||||||
console.log(" Getting Categories... ");
|
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.categories=[];
|
this.categories=[];
|
||||||
if(this.selectedCommunityId != '0'){
|
if(this.selectedCommunityId != '0'){
|
||||||
|
@ -233,11 +231,11 @@ getCommunities () {
|
||||||
this.saveStateAndRedirectLogin();
|
this.saveStateAndRedirectLogin();
|
||||||
}else{
|
}else{
|
||||||
this.concepts = [];
|
this.concepts = [];
|
||||||
this.addCommunityInConcepts();
|
|
||||||
var token=Session.getUserJwt();
|
var token=Session.getUserJwt();
|
||||||
this._contextService.getConcepts(this.selectedCategoryId, "",true).subscribe(
|
this._contextService.getConcepts(this.selectedCategoryId, "",true).subscribe(
|
||||||
data => {
|
data => {
|
||||||
this.concepts = data;
|
|
||||||
|
this.concepts =data;
|
||||||
this.addCommunityInConcepts();
|
this.addCommunityInConcepts();
|
||||||
if (this.query !== ""){
|
if (this.query !== ""){
|
||||||
var event = {value: ""};
|
var event = {value: ""};
|
||||||
|
@ -264,7 +262,6 @@ getCommunities () {
|
||||||
}else{
|
}else{
|
||||||
this.conceptsClassDisplay[id] = true;
|
this.conceptsClassDisplay[id] = true;
|
||||||
}
|
}
|
||||||
console.log("displaySubcategory: "+id+" value:"+ this.conceptsClassDisplay[id]);
|
|
||||||
}
|
}
|
||||||
browseConcepts (categoryId) {
|
browseConcepts (categoryId) {
|
||||||
if(!Session.isValidAndRemove()){
|
if(!Session.isValidAndRemove()){
|
||||||
|
@ -281,10 +278,11 @@ getCommunities () {
|
||||||
this.conceptsCategoryLoading[categoryId] = true;
|
this.conceptsCategoryLoading[categoryId] = true;
|
||||||
this._contextService.getConcepts(categoryId, "",false).subscribe(
|
this._contextService.getConcepts(categoryId, "",false).subscribe(
|
||||||
data => {
|
data => {
|
||||||
for(var i=0;i<data.length; i++){
|
var concepts = (Array.isArray(data))? data:[data];
|
||||||
console.log("Data"+data[i]);
|
for(var i=0;i<concepts.length; i++){
|
||||||
if(data[i].id.split("::").length==3){
|
console.log("Data"+concepts[i]);
|
||||||
this.conceptsClass[categoryId].push(data[i]);
|
if(concepts[i].id.split("::").length==3){
|
||||||
|
this.conceptsClass[categoryId].push(concepts[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(this.conceptsClass[categoryId]);
|
console.log(this.conceptsClass[categoryId]);
|
||||||
|
|
|
@ -54,20 +54,26 @@ export class ContextsService {
|
||||||
let url= this.baseUrl + 'categories/' + categoryId+ "/concepts";
|
let url= this.baseUrl + 'categories/' + categoryId+ "/concepts";
|
||||||
let key = url+"_parsing="+parsing;
|
let key = url+"_parsing="+parsing;
|
||||||
if (this._cache.has(key)) {
|
if (this._cache.has(key)) {
|
||||||
return Observable.of(this._cache.get(key));
|
return Observable.of(this._cache.get(key)).map(res => (parsing)?this.parse(res.concept):res.concept);
|
||||||
|
//.do(res => console.info("Result is "+ res.length));
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.http.get( url, this.getAuthOptions())
|
return this.http.get( url, this.getAuthOptions())
|
||||||
.map(request => <any> request.json().data)
|
.map(request => <any> request.json().data)
|
||||||
.map(res => (parsing)?this.parse(res.concept):res.concept)
|
|
||||||
.do(res => console.info(res ))
|
|
||||||
.catch(this.handleError)
|
.catch(this.handleError)
|
||||||
.do(res => {
|
.do(res => {
|
||||||
this._cache.set(key, res);
|
this._cache.set(key, res);
|
||||||
});
|
}).map(res => (parsing)?this.parse(res.concept):res.concept);
|
||||||
|
// .do(res => console.info("Result is "+ res.length ));
|
||||||
}
|
}
|
||||||
parse (data: any):AutoCompleteValue[] {
|
parse (data: any):AutoCompleteValue[] {
|
||||||
var array:AutoCompleteValue[] =[]
|
var array:AutoCompleteValue[] =[]
|
||||||
|
if(!Array.isArray(data) && data.id && data.label){
|
||||||
|
var value:AutoCompleteValue = new AutoCompleteValue();
|
||||||
|
value.id = data.id;
|
||||||
|
value.label = data.label;
|
||||||
|
array.push(value);
|
||||||
|
}
|
||||||
for(var i = 0; i < data.length; i++){
|
for(var i = 0; i < data.length; i++){
|
||||||
var value:AutoCompleteValue = new AutoCompleteValue();
|
var value:AutoCompleteValue = new AutoCompleteValue();
|
||||||
value.id = data[i].id;
|
value.id = data[i].id;
|
||||||
|
|
|
@ -34,11 +34,11 @@ import { Meta} from '../../../angular2-meta';
|
||||||
</span> Linking Functionality:</div>
|
</span> Linking Functionality:</div>
|
||||||
<p>Through linking functioanilty you are able to create links from {{type}} to {{(linkTo =='context')?"communities/ concepts":((linkTo =='project')?"projects":"research results")}}. You have to select at least one {{(linkTo =='context')?"community/ concept":((linkTo =='project')?"project":"research result")}} in order to be able to proceed.</p>
|
<p>Through linking functioanilty you are able to create links from {{type}} to {{(linkTo =='context')?"communities/ concepts":((linkTo =='project')?"projects":"research results")}}. You have to select at least one {{(linkTo =='context')?"community/ concept":((linkTo =='project')?"project":"research result")}} in order to be able to proceed.</p>
|
||||||
|
|
||||||
<p *ngIf="linkTo=='project'"><span class="uk-text-bold">Projects:</span> Search and add projects using keyword search. Limit the search space by specifying project Funder. </p>
|
<p *ngIf="linkTo=='project'"><span class="uk-text-bold">Projects:</span> Search & add projects using keyword search. Limit the search space by specifying project Funder. </p>
|
||||||
<p *ngIf="linkTo=='context'"><span class="uk-text-bold">Communities:</span> Search and add communities/ concepts by selecting community, category and using keyword search for . Or browse through the categories and add communities. </p>
|
<p *ngIf="linkTo=='context'"><span class="uk-text-bold">Communities:</span> Search & add communities/ concepts by selecting community, category and using keyword search for . Or browse through the categories and add communities. </p>
|
||||||
<p *ngIf="linkTo=='result'"><span class="uk-text-bold">Research Results:</span> You can search for reasearch results (publication and/ or research data) to link, in openaire, crossref, and/ or Datacite. Use search mode, to search and add results through keyword search. Use upload mode, to upload a list of DOIs of results. </p>
|
<p *ngIf="linkTo=='result'"><span class="uk-text-bold">Research Results:</span> You can search for reasearch results (publication and/ or research data) to link, in openaire, crossref, Orcid, and/ or Datacite. Use search mode, to search and add results through keyword search. Use upload mode, to upload a list of DOIs of results. </p>
|
||||||
<p *ngIf="show=='claim' && linkTo=='result'"><span class="uk-text-bold">Review Metadata:</span> For selected research results that came from 3rd party repositories (Datacite, Crossreff), you need to set access mode, and type before they are included in openaire information space.
|
<p *ngIf="show=='claim' && linkTo=='result'"><span class="uk-text-bold">Review Metadata of research results:</span> The selected research results that came from 3rd party repositories (Datacite, Crossreff, Orcid), need review and change of metadata (such as access mode, and type) before they are included in openaire information space.
|
||||||
Please have in mind that if you ignore this step they will have the default values.
|
Please have in mind that ignoring this step, the research results will get the default values, that may be wrong.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ import { Meta} from '../../../angular2-meta';
|
||||||
</div>
|
</div>
|
||||||
<ul *ngIf="linkTo == 'result'" class="uk-pagination">
|
<ul *ngIf="linkTo == 'result'" class="uk-pagination">
|
||||||
<li *ngIf="show == 'claim'" (click)="show='result';"><a><span class="uk-margin-small-right" uk-pagination-previous></span> Previous</a></li>
|
<li *ngIf="show == 'claim'" (click)="show='result';"><a><span class="uk-margin-small-right" uk-pagination-previous></span> Previous</a></li>
|
||||||
<li *ngIf="show != 'claim'"(click)="show='claim';" class="uk-margin-auto-left"><a>Next <span class="uk-margin-small-left" uk-pagination-next></span></a></li>
|
<li *ngIf="show != 'claim'"(click)="show='claim';" class="uk-margin-auto-left uk-width-1-1"><a>Next <span class="uk-margin-small-left" uk-pagination-next></span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -170,7 +170,7 @@ private validate(){
|
||||||
if( this.results && this.results.length == 0){
|
if( this.results && this.results.length == 0){
|
||||||
this.warningMessage = "There are no research results selected.";
|
this.warningMessage = "There are no research results selected.";
|
||||||
}else if((!this.contexts|| this.contexts.length==0 )&&(!this.projects|| this.projects.length==0 )&& ( this.inlineEntity == null)){
|
}else if((!this.contexts|| this.contexts.length==0 )&&(!this.projects|| this.projects.length==0 )&& ( this.inlineEntity == null)){
|
||||||
this.warningMessage = "There are no projects or concepts to link.";
|
this.warningMessage = "There are no projects or communities to link.";
|
||||||
// }else if (this.inline && !this.inlineEntity){
|
// }else if (this.inline && !this.inlineEntity){
|
||||||
// this.errorMessage = "No inline entity";
|
// this.errorMessage = "No inline entity";
|
||||||
// console.log(this.inline + " "+ this.inlineEntity);
|
// console.log(this.inline + " "+ this.inlineEntity);
|
||||||
|
|
|
@ -32,13 +32,13 @@ declare var UIkit:any;
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="info" ratio="1"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"></path><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"></circle></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="info" ratio="1"><path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z"></path><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"></circle></svg>
|
||||||
</span> Linking Functionality:</div>
|
</span> Linking Functionality:</div>
|
||||||
<p>Through linking functioanilty you are able to create links from research results to projects and/ or communities. You have to select at least one research result and one project or community in order to be able to proceed.</p>
|
<p>Through linking functioanilty you are able to create links from research results to projects and/ or communities. You have to select at least one research result and one project or community in order to be able to proceed.</p>
|
||||||
<p>You can search for reasearch results (publication and/ or research data) to link, in openaire, crossref, and/ or Datacite. </p>
|
<p>You can search for reasearch results (publication and/ or research data) to link, in openaire, crossref, Orcid, and/ or Datacite. </p>
|
||||||
|
|
||||||
<p *ngIf="show=='project'"><span class="uk-text-bold">Projects:</span> Search and add projects using keyword search. Limit the search space by specifying project Funder. </p>
|
<p *ngIf="show=='project'"><span class="uk-text-bold">Projects:</span> Search & add projects using keyword search. Limit the search space by specifying project Funder. </p>
|
||||||
<p *ngIf="show=='context'"><span class="uk-text-bold">Communities:</span> Search and add communities/ concepts by selecting community, category and using keyword search for . Or browse through the categories and add communities. </p>
|
<p *ngIf="show=='context'"><span class="uk-text-bold">Communities:</span> Search & add communities/ concepts by selecting community, category and using keyword search for . Or browse through the categories and add communities. </p>
|
||||||
<p *ngIf="show=='result'"><span class="uk-text-bold">Research Results:</span> Use search mode, to search and add results through keyword search. Use upload mode, to upload a list of DOIs of results. </p>
|
<p *ngIf="show=='result'"><span class="uk-text-bold">Research Results:</span> Use search mode, to search & add results through keyword search. Use upload mode, to upload a list of DOIs of results. </p>
|
||||||
<p *ngIf="show=='claim'"><span class="uk-text-bold">Review Metadata:</span> For selected research results that came from 3rd party repositories (Datacite, Crossreff), you need to set access mode, and type before they are included in openaire information space.
|
<p *ngIf="show=='claim'"><span class="uk-text-bold">Review Metadata of research results:</span> The selected research results that came from 3rd party repositories (Datacite, Crossreff, Orcid), need review and change of metadata (such as access mode, and type) before they are included in openaire information space.
|
||||||
Please have in mind that if you ignore this step they will have the default values.
|
Please have in mind that ignoring this step, the research results will get the default values, that may be wrong.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ declare var UIkit:any;
|
||||||
<ul class="uk-pagination">
|
<ul class="uk-pagination">
|
||||||
<!--li *ngIf="show != 'result' " (click)="prev()"><a><span class="uk-margin-small-right" uk-pagination-previous></span> Previous</a></li-->
|
<!--li *ngIf="show != 'result' " (click)="prev()"><a><span class="uk-margin-small-right" uk-pagination-previous></span> Previous</a></li-->
|
||||||
<li *ngIf="show != 'claim' && this.results.length > 0 " (click)="canProceedToMetadata()" class="uk-margin-auto-left"><a> Review Metadata <span class="uk-margin-small-left" uk-pagination-next></span></a></li>
|
<li *ngIf="show != 'claim' && this.results.length > 0 " (click)="canProceedToMetadata()" class="uk-margin-auto-left"><a> Review Metadata <span class="uk-margin-small-left" uk-pagination-next></span></a></li>
|
||||||
<li *ngIf="show == 'claim' " (click)="next()" class="uk-margin-auto-left">
|
<li *ngIf="show == 'claim' " (click)="next()" class="uk-margin-auto-left uk-width-1-1">
|
||||||
<claim-insert [contexts]="contexts" [results]="results" [projects]="projects" [show] = "show"
|
<claim-insert [contexts]="contexts" [results]="results" [projects]="projects" [show] = "show"
|
||||||
(showChange)="showChange($event)" ></claim-insert>
|
(showChange)="showChange($event)" ></claim-insert>
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@
|
||||||
<showTitle [title]="dataProviderInfo.title"></showTitle>
|
<showTitle [title]="dataProviderInfo.title"></showTitle>
|
||||||
<div class="uk-text-large " *ngIf="dataProviderInfo.officialName && this.dataProviderInfo.title.name != dataProviderInfo.officialName ">{{dataProviderInfo.officialName}}</div>
|
<div class="uk-text-large " *ngIf="dataProviderInfo.officialName && this.dataProviderInfo.title.name != dataProviderInfo.officialName ">{{dataProviderInfo.officialName}}</div>
|
||||||
|
|
||||||
<span *ngIf="dataProviderInfo.type" class="uk-label custom-label label-type " title="Type">{{dataProviderInfo.type}}</span>
|
<span *ngIf="dataProviderInfo.type" class="uk-label custom-label label-type label-dataprovider " title="Type">{{dataProviderInfo.type}}</span>
|
||||||
<span *ngIf="dataProviderInfo.compatibility" class="uk-label custom-label label-compatibility " title="Compatibility">{{dataProviderInfo.compatibility}}</span>
|
<span *ngIf="dataProviderInfo.compatibility" class="uk-label custom-label label-blue " title="Compatibility">{{dataProviderInfo.compatibility}}</span>
|
||||||
|
|
||||||
<ul class="uk-list">
|
<ul class="uk-list">
|
||||||
|
|
||||||
|
@ -71,9 +71,9 @@
|
||||||
<a
|
<a
|
||||||
(click)="search(tab.content, 1, 10); activeTab=tab.name">
|
(click)="search(tab.content, 1, 10); activeTab=tab.name">
|
||||||
{{tab.name}}
|
{{tab.name}}
|
||||||
<i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
||||||
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
||||||
</svg></i>
|
</svg></i>
|
||||||
|
@ -107,9 +107,9 @@
|
||||||
<a
|
<a
|
||||||
(click)="search(tab.content, 1, 10); activeTab=tab.name">
|
(click)="search(tab.content, 1, 10); activeTab=tab.name">
|
||||||
{{tab.name}}
|
{{tab.name}}
|
||||||
<i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
||||||
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
||||||
</svg></i>
|
</svg></i>
|
||||||
|
|
|
@ -24,9 +24,9 @@ import {RouterHelper} from '../../utils/routerHelper.class';
|
||||||
<a
|
<a
|
||||||
(click)="search(tab.content, 1, 10)">
|
(click)="search(tab.content, 1, 10)">
|
||||||
{{tab.name}}
|
{{tab.name}}
|
||||||
<i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i *ngIf="tab.content == 'metricsTab'" class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
<i *ngIf="tab.content == 'statisticsTab'" class="icon-pie-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 32" style="fill:currentColor;">
|
||||||
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
<path d="M14.026 18.028v-14.016c-7.741 0-14.016 6.275-14.016 14.016s6.275 14.016 14.016 14.016 14.016-6.275 14.016-14.016c0-2.253-0.533-4.383-1.478-6.269l-12.539 6.269zM28.567 7.755c-2.301-4.593-7.051-7.747-12.539-7.747v14.016l12.538-6.269z"></path>
|
||||||
</svg></i>
|
</svg></i>
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
<div *ngIf="datasetInfo != null" uk-grid>
|
<div *ngIf="datasetInfo != null" uk-grid>
|
||||||
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
||||||
<showTitle [title]="datasetInfo.title"></showTitle>
|
<showTitle [title]="datasetInfo.title"></showTitle>
|
||||||
<span *ngIf="datasetInfo.types.length > 0"class="uk-label custom-label label-blue " title="Type">{{datasetInfo.types.join(", ")}}</span>
|
<span *ngIf="datasetInfo.types.length > 0"class="uk-label custom-label label-blue label-dataset " title="Type">{{datasetInfo.types.join(", ")}}</span>
|
||||||
<span *ngIf="datasetInfo.title && datasetInfo.title.accessMode" class="uk-label custom-label label-green " ><!--span [class]="datasetInfo.title.accessMode" -->{{datasetInfo.title.accessMode}}<!--/span--></span>
|
<span *ngIf="datasetInfo.title && datasetInfo.title.accessMode" [class]="'uk-label custom-label label-green label-'+ datasetInfo.title.accessMode " ><!--span [class]="datasetInfo.title.accessMode" -->{{datasetInfo.title.accessMode}}<!--/span--></span>
|
||||||
<span *ngIf="datasetInfo.underCurationMessage" class="uk-label custom-label label-yellow " >
|
<span *ngIf="datasetInfo.underCurationMessage" class="uk-label custom-label label-yellow " >
|
||||||
<span uk-tooltip="pos:right; delay:10"
|
<span uk-tooltip="pos:right; delay:10"
|
||||||
title="{{buildCurationTooltip()}}">
|
title="{{buildCurationTooltip()}}">
|
||||||
|
@ -84,9 +84,9 @@
|
||||||
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics <i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
Metrics <!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -120,9 +120,9 @@
|
||||||
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics<i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
Metrics<!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -373,8 +373,30 @@
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<div class="uk-card uk-card-default uk-padding-small uk-card-body">
|
||||||
|
<div class="uk-card-title">
|
||||||
|
<span class="" uk-tooltip="pos:right; delay:5"
|
||||||
|
title='<div id="linkinginfo" class= "uk-margin uk-padding-small">
|
||||||
|
<p>Do you think that information is missing about a project, a community or other research results related to this dataset?</p>
|
||||||
|
<p>You are able to enhance it! Please follow the links and create the missing relations.</p>
|
||||||
|
</div>'>
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg></span>
|
||||||
|
Link this dataset to</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
<a class="uk-button uk-button-default" uk-toggle="target: #linkingBox; animation: uk-animation-fade"><span class="uk-icon">
|
<div class="uk-clearfix">
|
||||||
|
|
||||||
|
<div><a class="uk-button-text uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','project'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
||||||
|
Projects</a></div>
|
||||||
|
<div><a class=" uk-button-text uk-width-1-1"[queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','context'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
||||||
|
Communities</a></div>
|
||||||
|
<div><a class=" uk-button-text uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
||||||
|
Other research results</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--a class="uk-button uk-button-default" uk-toggle="target: #linkingBox; animation: uk-animation-fade"><span class="uk-icon">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg>
|
||||||
</span>Link this Dataset to</a>
|
</span>Link this Dataset to</a>
|
||||||
<div id="linkingBox" class="uk-card uk-card-default uk-card- uk-padding-small uk-margin" hidden>
|
<div id="linkingBox" class="uk-card uk-card-default uk-card- uk-padding-small uk-margin" hidden>
|
||||||
|
@ -401,7 +423,7 @@
|
||||||
<a class="uk-clearfix uk-button uk-button-default uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" > <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg></span>
|
<a class="uk-clearfix uk-button uk-button-default uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" > <span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg></span>
|
||||||
Other Research results</a>
|
Other Research results</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div-->
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
||||||
<showTitle [title]="organizationInfo.title"></showTitle>
|
<showTitle [title]="organizationInfo.title"></showTitle>
|
||||||
<div class="uk-text-large " *ngIf="organizationInfo.title.name && organizationInfo.title.name != organizationInfo.name ">{{organizationInfo.name}}</div>
|
<div class="uk-text-large " *ngIf="organizationInfo.title.name && organizationInfo.title.name != organizationInfo.name ">{{organizationInfo.name}}</div>
|
||||||
<span class="uk-label custom-label label-blue " title="Type">Organization</span>
|
<span class="uk-label custom-label label-blue label-organization" title="Type">Organization</span>
|
||||||
<span *ngIf="organizationInfo.country" class="uk-label custom-label label-grey " title="Country">{{organizationInfo.country}}</span>
|
<span *ngIf="organizationInfo.country" class="uk-label custom-label label-grey " title="Country">{{organizationInfo.country}}</span>
|
||||||
|
|
||||||
<ul class="uk-tab uk-visible@m" uk-tab="connect: #tab-content">
|
<ul class="uk-tab uk-visible@m" uk-tab="connect: #tab-content">
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
</h2>
|
</h2>
|
||||||
<div class="uk-text-large " *ngIf="projectInfo.title && projectInfo.title != projectName ">{{projectInfo.title}} ({{projectInfo.contractNum}})</div>
|
<div class="uk-text-large " *ngIf="projectInfo.title && projectInfo.title != projectName ">{{projectInfo.title}} ({{projectInfo.contractNum}})</div>
|
||||||
|
|
||||||
<span class="uk-label custom-label label-blue " title="Type">Project</span>
|
<span class="uk-label custom-label label-blue label-project" title="Type">Project</span>
|
||||||
<span class="uk-label custom-label label-red " title="Funder">{{projectInfo.funder}}</span>
|
<span class="uk-label custom-label label-red " title="Funder">{{projectInfo.funder}}</span>
|
||||||
<span *ngIf="projectInfo.openAccessMandate != undefined && projectInfo.openAccessMandate " class="uk-label custom-label label-green " title="Open Access mandate">Open Access mandate</span>
|
<span *ngIf="projectInfo.openAccessMandate != undefined && projectInfo.openAccessMandate " class="uk-label custom-label label-green " title="Open Access mandate">Open Access mandate</span>
|
||||||
<span *ngIf="projectInfo.specialClause39" class="uk-label custom-label label-orange " title="Special Clause 39">Special Clause 39</span>
|
<span *ngIf="projectInfo.specialClause39" class="uk-label custom-label label-orange " title="Special Clause 39">Special Clause 39</span>
|
||||||
|
@ -82,9 +82,9 @@
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics
|
Metrics
|
||||||
<i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -124,9 +124,9 @@
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics
|
Metrics
|
||||||
<i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -311,11 +311,29 @@
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<a class="uk-button uk-button-default" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[projectId,'project','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" > <span class="uk-icon">
|
<!--a class="uk-button uk-button-default" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[projectId,'project','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" > <span class="uk-icon">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg>
|
||||||
</span>
|
</span>
|
||||||
Link to research results
|
Link to research results
|
||||||
</a>
|
</a-->
|
||||||
|
<div class="uk-card uk-card-default uk-padding-small uk-card-body">
|
||||||
|
<div class="uk-card-title">
|
||||||
|
<span class="" uk-tooltip="pos:right; delay:5"
|
||||||
|
title='<div id="linkinginfo" class= "uk-margin uk-padding-small">
|
||||||
|
<p>Do you think that information is missing about research results related to this project?</p>
|
||||||
|
<p>You are able to enhance it! Please follow the links and create the missing relations.</p>
|
||||||
|
</div>'>
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg></span>
|
||||||
|
Link this project to</div>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div class="uk-clearfix">
|
||||||
|
|
||||||
|
<div><a class=" uk-button-text uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[projectId,'project','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
||||||
|
Other research results</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
<div *ngIf="publicationInfo != null" uk-grid>
|
<div *ngIf="publicationInfo != null" uk-grid>
|
||||||
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
<div class="uk-width-3-4@l uk-width-3-4@xl uk-width-3-4@m uk-width-1-1@s">
|
||||||
<showTitle [title]="publicationInfo.title"></showTitle>
|
<showTitle [title]="publicationInfo.title"></showTitle>
|
||||||
<span *ngIf="publicationInfo.types.length > 0"class="uk-label custom-label label-blue " title="Type">{{publicationInfo.types.join(", ")}}</span>
|
<span *ngIf="publicationInfo.types.length > 0"class="uk-label custom-label label-blue label-publication" title="Type">{{publicationInfo.types.join(", ")}}</span>
|
||||||
<span *ngIf="publicationInfo.languages.length > 0" class="uk-label custom-label label-grey " title="Language">{{publicationInfo.languages.join(", ")}}</span>
|
<span *ngIf="publicationInfo.languages.length > 0" class="uk-label custom-label label-grey " title="Language">{{publicationInfo.languages.join(", ")}}</span>
|
||||||
<span *ngIf="publicationInfo.title && publicationInfo.title.accessMode" class="uk-label custom-label label-green " ><!--span [class]="publicationInfo.title.accessMode" -->{{publicationInfo.title.accessMode}}<!--/span--></span>
|
<span *ngIf="publicationInfo.title && publicationInfo.title.accessMode" [class]="'uk-label custom-label label-green label-'+ publicationInfo.title.accessMode "><!--span [class]="publicationInfo.title.accessMode" -->{{publicationInfo.title.accessMode}}<!--/span--></span>
|
||||||
|
|
||||||
<span *ngIf="publicationInfo.underCurationMessage" class="uk-label custom-label label-yellow " >
|
<span *ngIf="publicationInfo.underCurationMessage" class="uk-label custom-label label-yellow " >
|
||||||
<span uk-tooltip="pos:right; delay:10"
|
<span uk-tooltip="pos:right; delay:10"
|
||||||
|
@ -153,9 +153,9 @@
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics
|
Metrics
|
||||||
<i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
<!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -222,9 +222,9 @@
|
||||||
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
<li (click)="metricsClicked=true; activeTab='Metrics'"
|
||||||
[class]="activeTab == 'Metrics'?'uk-active':''">
|
[class]="activeTab == 'Metrics'?'uk-active':''">
|
||||||
<a>
|
<a>
|
||||||
Metrics<i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
Metrics<!--i class="icon-line-chart"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 36 36" style="fill:currentColor;">
|
||||||
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
<path d="M4.415 31.713h31.704v4.529h-36.233v-36.233h4.529zM10.077 29.447c-1.877 0-3.396-1.521-3.396-3.396s1.521-3.396 3.396-3.396c0.101 0 0.199 0.006 0.297 0.014l3.652-6.086c-0.348-0.534-0.551-1.171-0.551-1.855 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 0.685-0.203 1.321-0.551 1.855l3.652 6.086c0.098-0.009 0.196-0.014 0.297-0.014 0.076 0 0.151 0.004 0.225 0.009l6.028-10.549c-0.373-0.546-0.592-1.204-0.592-1.916 0-1.877 1.521-3.396 3.396-3.396s3.396 1.521 3.396 3.396c0 1.877-1.521 3.396-3.396 3.396-0.076 0-0.151-0.004-0.225-0.009l-6.028 10.549c0.373 0.546 0.592 1.204 0.592 1.916 0 1.877-1.521 3.396-3.396 3.396s-3.396-1.521-3.396-3.396c0-0.684 0.203-1.321 0.551-1.855l-3.652-6.086c-0.098 0.009-0.196 0.014-0.297 0.014s-0.199-0.006-0.297-0.014l-3.652 6.086c0.348 0.534 0.551 1.171 0.551 1.855 0 1.877-1.521 3.396-3.396 3.396z"></path>
|
||||||
</svg></i>
|
</svg></i-->
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -240,7 +240,7 @@
|
||||||
|
|
||||||
<!--tabPaging [showAll]="showAllReferences" [length]="publicationInfo.references.length" (changeShowAll)="showChange($event)"></tabPaging-->
|
<!--tabPaging [showAll]="showAllReferences" [length]="publicationInfo.references.length" (changeShowAll)="showChange($event)"></tabPaging-->
|
||||||
<div *ngIf="publicationInfo.references && publicationInfo.references.length > pageSize" class="uk-margin-bottom">
|
<div *ngIf="publicationInfo.references && publicationInfo.references.length > pageSize" class="uk-margin-bottom">
|
||||||
{{publicationInfo.references.length}} references, page {{referencesPage}} of {{totalPages(publicationInfo.references.length)}}
|
<span class="uk-text-bold">{{publicationInfo.references.length}} references, page {{referencesPage}} of {{totalPages(publicationInfo.references.length)}}</span>
|
||||||
<paging-no-load class="uk-float-right" [currentPage]="referencesPage" [totalResults]="publicationInfo.references.length" [size]="pageSize" (pageChange)="updateReferencesPage($event)"></paging-no-load>
|
<paging-no-load class="uk-float-right" [currentPage]="referencesPage" [totalResults]="publicationInfo.references.length" [size]="pageSize" (pageChange)="updateReferencesPage($event)"></paging-no-load>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -305,17 +305,17 @@
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="publicationInfo.organizations">
|
<div *ngIf="publicationInfo.organizations">
|
||||||
<div *ngIf="publicationInfo.organizations && publicationInfo.organizations.length > pageSize" class="uk-margin-bottom">
|
<div *ngIf="publicationInfo.organizations && publicationInfo.organizations.length > pageSize" class="uk-margin-bottom">
|
||||||
{{publicationInfo.organizations.length}} organizations, page {{organizationsPage}} of {{totalPages(publicationInfo.organizations.length)}}
|
<span class="uk-text-bold">{{publicationInfo.organizations.length}} organizations, page {{organizationsPage}} of {{totalPages(publicationInfo.organizations.length)}}</span>
|
||||||
<paging-no-load class="uk-float-right" [currentPage]="organizationsPage" [totalResults]="publicationInfo.organizations.length" [size]="pageSize" (pageChange)="updateOrganizationsPage($event)"></paging-no-load>
|
<paging-no-load class="uk-float-right" [currentPage]="organizationsPage" [totalResults]="publicationInfo.organizations.length" [size]="pageSize" (pageChange)="updateOrganizationsPage($event)"></paging-no-load>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="uk-table uk-table-striped">
|
<table class="uk-table ">
|
||||||
<thead>
|
<!--thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Organization</th>
|
<th>Organization</th>
|
||||||
<th>Trust</th>
|
<th>Trust</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead-->
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let organization of publicationInfo.organizations.slice((organizationsPage-1)*pageSize, organizationsPage*pageSize)">
|
<tr *ngFor="let organization of publicationInfo.organizations.slice((organizationsPage-1)*pageSize, organizationsPage*pageSize)">
|
||||||
<td>
|
<td>
|
||||||
|
@ -332,10 +332,10 @@
|
||||||
<span *ngIf="organization.shortname">{{organization.shortname}}</span>
|
<span *ngIf="organization.shortname">{{organization.shortname}}</span>
|
||||||
<span *ngIf="organization.name && organization.shortname"> ) </span>
|
<span *ngIf="organization.name && organization.shortname"> ) </span>
|
||||||
</p>
|
</p>
|
||||||
|
<div *ngIf="organization.country">{{organization.country}}</div>
|
||||||
<div *ngIf="organization.websiteUrl">Website url:
|
<div *ngIf="organization.websiteUrl">Website url:
|
||||||
<a href="{{organization.websiteUrl}}" target="_blank">{{organization.websiteUrl}}</a>
|
<a href="{{organization.websiteUrl}}" target="_blank">{{organization.websiteUrl}}</a>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="organization.country">Country: {{organization.country}}</div>
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div *ngIf="organization['trust']" title="{{organization['trust']}}%" >
|
<div *ngIf="organization['trust']" title="{{organization['trust']}}%" >
|
||||||
|
@ -343,7 +343,7 @@
|
||||||
<progress class="uk-progress uk-margin-remove" value="{{organization['trust']}}" max="100"></progress>
|
<progress class="uk-progress uk-margin-remove" value="{{organization['trust']}}" max="100"></progress>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="!organization['trust']">
|
<div *ngIf="!organization['trust']">
|
||||||
<p>no trust found</p>
|
<p>no trust available</p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -356,17 +356,17 @@
|
||||||
|
|
||||||
<div *ngIf="activeTab=='Bioentities'" class="uk-animation-fade">
|
<div *ngIf="activeTab=='Bioentities'" class="uk-animation-fade">
|
||||||
<div *ngIf="publicationInfo.bioentities && bioentitiesNum > pageSize" class="uk-margin-bottom">
|
<div *ngIf="publicationInfo.bioentities && bioentitiesNum > pageSize" class="uk-margin-bottom">
|
||||||
{{bioentitiesNum}} bioentities, page {{bioentitiesPage}} of {{totalPages(bioentitiesNum)}}
|
<span class="uk-text-bold"> {{bioentitiesNum}} bioentities, page {{bioentitiesPage}} of {{totalPages(bioentitiesNum)}}</span>
|
||||||
<paging-no-load class="uk-float-right" [currentPage]="bioentitiesPage" [totalResults]="bioentitiesNum" [size]="pageSize" (pageChange)="updateBioentitiesPage($event)"></paging-no-load>
|
<paging-no-load class="uk-float-right" [currentPage]="bioentitiesPage" [totalResults]="bioentitiesNum" [size]="pageSize" (pageChange)="updateBioentitiesPage($event)"></paging-no-load>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table id="bioentitiesTable" class="uk-table uk-table-striped">
|
<table id="bioentitiesTable" class="uk-table ">
|
||||||
<thead>
|
<!--thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="uk-text-center">Bio Entity</th>
|
<th class="uk-text-center">Bio Entity</th>
|
||||||
<th class="uk-text-center">Site Name</th>
|
<th class="uk-text-center">Site Name</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead-->
|
||||||
<tbody>
|
<tbody>
|
||||||
<ng-container *ngFor="let key of publicationInfo.bioentities.keys() let i=index">
|
<ng-container *ngFor="let key of publicationInfo.bioentities.keys() let i=index">
|
||||||
<!--ng-container *ngIf="stop(i, bioentitiesPage) - start(i, bioentitiesPage) > 0"-->
|
<!--ng-container *ngIf="stop(i, bioentitiesPage) - start(i, bioentitiesPage) > 0"-->
|
||||||
|
@ -390,16 +390,16 @@
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="activeTab == 'Software'" class="uk-animation-fade">
|
<div *ngIf="activeTab == 'Software'" class="uk-animation-fade">
|
||||||
<div *ngIf="publicationInfo.software && publicationInfo.software.length > pageSize" class="uk-margin-bottom">
|
<div *ngIf="publicationInfo.software && publicationInfo.software.length > pageSize" class="uk-margin-bottom">
|
||||||
{{publicationInfo.software.length}} software results, page {{softwarePage}} of {{totalPages(publicationInfo.software.length)}}
|
<span class="uk-text-bold">{{publicationInfo.software.length}} software results, page {{softwarePage}} of {{totalPages(publicationInfo.software.length)}}</span>
|
||||||
<paging-no-load class="uk-float-right" [currentPage]="softwarePage" [totalResults]="publicationInfo.software.length" [size]="pageSize" (pageChange)="updateSoftwarePage($event)"></paging-no-load>
|
<paging-no-load class="uk-float-right" [currentPage]="softwarePage" [totalResults]="publicationInfo.software.length" [size]="pageSize" (pageChange)="updateSoftwarePage($event)"></paging-no-load>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table id="softwareTable" class="uk-table uk-table-striped">
|
<table id="softwareTable" class="uk-table ">
|
||||||
<thead>
|
<!--thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="uk-text-center">Site Name</th>
|
<th class="uk-text-center">Site Name</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead-->
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let item of publicationInfo.software.slice((softwarePage-1)*pageSize, softwarePage*pageSize)" class="uk-text-center">
|
<tr *ngFor="let item of publicationInfo.software.slice((softwarePage-1)*pageSize, softwarePage*pageSize)" class="uk-text-center">
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -46,7 +46,7 @@ import {RouterHelper} from '../utils/routerHelper.class';
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<tab-result [(results)]="fetchProjects.results" [(status)]= "fetchProjects.searchUtils.status"
|
<tab-result [(results)]="fetchProjects.results" [(status)]= "fetchProjects.searchUtils.status"
|
||||||
type="project" urlParam="projectId" showLoading = true>
|
type="project" urlParam="projectId" [showLoading] = true [showOrganizations] = false>
|
||||||
</tab-result>
|
</tab-result>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,17 +7,17 @@ import {OpenaireProperties} from '../utils/properties/openaireProperties';
|
||||||
selector: 'tabTable',
|
selector: 'tabTable',
|
||||||
template: `
|
template: `
|
||||||
<div *ngIf="info && info.length > pageSize" class="uk-margin">
|
<div *ngIf="info && info.length > pageSize" class="uk-margin">
|
||||||
{{info.length}} research results, page {{page}} of {{totalPages(info.length)}}
|
<span class="uk-text-bold">{{info.length}} research results, page {{page}} of {{totalPages(info.length)}}</span>
|
||||||
<paging-no-load class="uk-float-right" [currentPage]="page" [totalResults]="info.length" [size]="pageSize" (pageChange)="updatePage($event)"></paging-no-load>
|
<paging-no-load class="uk-float-right" [currentPage]="page" [totalResults]="info.length" [size]="pageSize" (pageChange)="updatePage($event)"></paging-no-load>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="uk-table uk-table-striped">
|
<table class="uk-table">
|
||||||
<thead>
|
<!--thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Title</th>
|
<th>Title</th>
|
||||||
<th width="20%">Trust</th>
|
<th width="20%">Trust</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead-->
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let item of info.slice((page-1)*pageSize, page*pageSize)" class="{{item['class']}}">
|
<tr *ngFor="let item of info.slice((page-1)*pageSize, page*pageSize)" class="{{item['class']}}">
|
||||||
<td *ngIf="item != undefined">
|
<td *ngIf="item != undefined">
|
||||||
|
|
|
@ -35,7 +35,6 @@ export class Session{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static isLoggedIn(): boolean {
|
public static isLoggedIn(): boolean {
|
||||||
|
|
||||||
var loggedIn:boolean = false;
|
var loggedIn:boolean = false;
|
||||||
var user:User = null;
|
var user:User = null;
|
||||||
var cookie= COOKIE.getCookie(COOKIE.cookieName_u);
|
var cookie= COOKIE.getCookie(COOKIE.cookieName_u);
|
||||||
|
|
|
@ -39,7 +39,7 @@ import {PiwikService} from '../../utils/piwik/piwik.service';
|
||||||
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="chevron-right" ratio="1"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"></polyline></svg>
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="chevron-right" ratio="1"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"></polyline></svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<div *ngIf="isFiltered()" class = "uk-container uk-text-center ">
|
<div *ngIf="isFiltered()" class = "uk-container uk-width-1-2@m uk-width-1-2@s uk-align-center uk-text-center uk-text-small">
|
||||||
<span *ngIf = "searchUtils.keyword.length > 0">Keywords: <span [innerHtml]="searchUtils.keyword"></span><a (click) = "clearKeywords() " [class]="(disableForms)?'uk-icon-button uk-disabled':'uk-icon-button'"><span class=" clickable " aria-hidden="true"><span class="uk-icon">
|
<span *ngIf = "searchUtils.keyword.length > 0">Keywords: <span [innerHtml]="searchUtils.keyword"></span><a (click) = "clearKeywords() " [class]="(disableForms)?'uk-icon-button uk-disabled':'uk-icon-button'"><span class=" clickable " aria-hidden="true"><span class="uk-icon">
|
||||||
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close" ratio="1"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"></path><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"></path></svg>
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close" ratio="1"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"></path><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"></path></svg>
|
||||||
</span></span></a>
|
</span></span></a>
|
||||||
|
|
|
@ -329,7 +329,7 @@ public getParametersFromUrl(params) {
|
||||||
return allLimits;
|
return allLimits;
|
||||||
}
|
}
|
||||||
|
|
||||||
private isFiltered(){
|
public isFiltered(){
|
||||||
var filtered=false;
|
var filtered=false;
|
||||||
for (let filter of this.filters){
|
for (let filter of this.filters){
|
||||||
if(filter.countSelectedValues > 0){
|
if(filter.countSelectedValues > 0){
|
||||||
|
|
|
@ -79,8 +79,8 @@ import {RouterHelper} from '../../utils/routerHelper.class';
|
||||||
|
|
||||||
*ngIf="i < result['funders'].length-1">,</span>
|
*ngIf="i < result['funders'].length-1">,</span>
|
||||||
</span>
|
</span>
|
||||||
|
<span *ngIf="result.startYear && result.endYear"> (start {{result.startYear}} - end {{result.endYear}})</span>
|
||||||
</div>
|
</div>
|
||||||
<span *ngIf="result.startYear && result.endYear"> ({{result.startYear}} - {{result.endYear}})</span>
|
|
||||||
<div *ngIf="result['organizations'] != undefined && result['organizations'].length > 0">
|
<div *ngIf="result['organizations'] != undefined && result['organizations'].length > 0">
|
||||||
<span> Organizations: </span>
|
<span> Organizations: </span>
|
||||||
<span *ngFor="let organization of result['organizations'].slice(0,10) let i=index">
|
<span *ngFor="let organization of result['organizations'].slice(0,10) let i=index">
|
||||||
|
|
|
@ -18,15 +18,15 @@ import {RouterHelper} from '../../utils/routerHelper.class';
|
||||||
<!--a [queryParams]="{articleId: 'od_______908::3a5b2885656a91307156325644e73b92'}" routerLinkActive="router-link-active" routerLink="search/publication"-->
|
<!--a [queryParams]="{articleId: 'od_______908::3a5b2885656a91307156325644e73b92'}" routerLinkActive="router-link-active" routerLink="search/publication"-->
|
||||||
|
|
||||||
<a [queryParams]="routerHelper.createQueryParam(urlParam,result.id)" routerLinkActive="router-link-active" routerLink="/search/{{type}}">
|
<a [queryParams]="routerHelper.createQueryParam(urlParam,result.id)" routerLinkActive="router-link-active" routerLink="/search/{{type}}">
|
||||||
<p *ngIf="result['title'].name != undefined && result['title'].name != ''"
|
<span *ngIf="result['title'].name != undefined && result['title'].name != ''"
|
||||||
[innerHTML]="result['title'].name">
|
[innerHTML]="result['title'].name">
|
||||||
</p>
|
</span>
|
||||||
<!--p *ngIf="result['title'].name == undefined || result['title'].name == ''">
|
<!--p *ngIf="result['title'].name == undefined || result['title'].name == ''">
|
||||||
{{result['title'].url}}
|
{{result['title'].url}}
|
||||||
</p-->
|
</p-->
|
||||||
<p *ngIf="result['title'].name == undefined || result['title'].name == ''">
|
<span *ngIf="result['title'].name == undefined || result['title'].name == ''">
|
||||||
[no title available]
|
[no title available]
|
||||||
</p>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -75,17 +75,17 @@ import {RouterHelper} from '../../utils/routerHelper.class';
|
||||||
|
|
||||||
|
|
||||||
<div *ngIf="result['funders'] != undefined">
|
<div *ngIf="result['funders'] != undefined">
|
||||||
<span> Funders: </span>
|
<!--span> Funders: </span-->
|
||||||
<span *ngFor="let funder of result['funders'] let i=index">
|
<span *ngFor="let funder of result['funders'] let i=index">
|
||||||
|
|
||||||
<span *ngIf="funder.funderShortname">
|
<span *ngIf="funder.funderShortname">
|
||||||
{{funder.funderShortname}}</span><span
|
{{funder.funderShortname}}</span><span
|
||||||
|
|
||||||
*ngIf="i < result['funders'].length-1">,</span>
|
*ngIf="i < result['funders'].length-1">,</span>
|
||||||
</span>
|
</span> <span *ngIf="result.startYear && result.endYear"> (start {{result.startYear}} - end {{result.endYear}})</span>
|
||||||
</div>
|
</div>
|
||||||
<span *ngIf="result.startYear && result.endYear"> ({{result.startYear}} - {{result.endYear}})</span>
|
|
||||||
<div *ngIf="result['organizations'] != undefined && result['organizations'].length > 0">
|
<div *ngIf="showOrganizations && result['organizations'] != undefined && result['organizations'].length > 0">
|
||||||
<span> Organizations: </span>
|
<span> Organizations: </span>
|
||||||
<span *ngFor="let organization of result['organizations'].slice(0, 10) let i=index">
|
<span *ngFor="let organization of result['organizations'].slice(0, 10) let i=index">
|
||||||
<!--a *ngIf="organization.url != undefined" href="{{organization.url}}"-->
|
<!--a *ngIf="organization.url != undefined" href="{{organization.url}}"-->
|
||||||
|
@ -137,6 +137,7 @@ export class TabResultComponent {
|
||||||
@Input() type: string;
|
@Input() type: string;
|
||||||
@Input() urlParam: string;
|
@Input() urlParam: string;
|
||||||
@Input() showLoading: boolean = false;
|
@Input() showLoading: boolean = false;
|
||||||
|
@Input() showOrganizations: boolean = true;
|
||||||
|
|
||||||
public errorCodes:ErrorCodes = new ErrorCodes();
|
public errorCodes:ErrorCodes = new ErrorCodes();
|
||||||
public routerHelper:RouterHelper = new RouterHelper();
|
public routerHelper:RouterHelper = new RouterHelper();
|
||||||
|
|
|
@ -13,7 +13,7 @@ import {Session} from '../login/utils/helper.class';
|
||||||
<div class="tm-header-mobile uk-hidden@m">
|
<div class="tm-header-mobile uk-hidden@m">
|
||||||
<nav class="uk-navbar-container uk-navbar" uk-navbar="">
|
<nav class="uk-navbar-container uk-navbar" uk-navbar="">
|
||||||
<div class="uk-navbar-left">
|
<div class="uk-navbar-left">
|
||||||
<a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="">
|
<a class="uk-navbar-toggle" href="#tm-mobile" uk-toggle="" style="z-index:1000;">
|
||||||
<div uk-navbar-toggle-icon="" class="uk-navbar-toggle-icon uk-icon custom-navbar-toggle-icon"> </div>
|
<div uk-navbar-toggle-icon="" class="uk-navbar-toggle-icon uk-icon custom-navbar-toggle-icon"> </div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -99,7 +99,7 @@ export class OpenaireProperties {
|
||||||
private static cookieDomain =".di.uoa.gr";
|
private static cookieDomain =".di.uoa.gr";
|
||||||
private static cookieDomain_pm =".openaire.eu";
|
private static cookieDomain_pm =".openaire.eu";
|
||||||
|
|
||||||
private static feedbackmail ="something@mail.com";
|
private static feedbackmail ="openaire.test@gmail.com";
|
||||||
|
|
||||||
public static getBaseLink():string{
|
public static getBaseLink():string{
|
||||||
return this.baseLink;
|
return this.baseLink;
|
||||||
|
@ -344,7 +344,7 @@ export class OpenaireProperties {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static getFeedbackMail():string{
|
public static getFeedbackMail():string{
|
||||||
return this.feedbackmail;
|
return this.feedbackmail;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export class ErrorCodes {
|
export class ErrorCodes {
|
||||||
|
|
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
|
@ -5,32 +5,13 @@
|
||||||
@import url('https://fonts.googleapis.com/css?family=Lora');
|
@import url('https://fonts.googleapis.com/css?family=Lora');
|
||||||
@import url('https://fonts.googleapis.com/css?family=Raleway|Raleway+Dots');
|
@import url('https://fonts.googleapis.com/css?family=Raleway|Raleway+Dots');
|
||||||
|
|
||||||
.custom-icon {
|
|
||||||
line-height: unset;
|
|
||||||
}
|
|
||||||
/*.OPEN {
|
|
||||||
background: rgba(0, 0, 0, 0) url('images/openaccess copy.svg') no-repeat scroll right center;
|
|
||||||
/*display: inline-block;*/
|
|
||||||
}*/
|
|
||||||
.small-bgicon {
|
|
||||||
background-size: 25px;
|
|
||||||
padding-right:25px;
|
|
||||||
}
|
|
||||||
.medium-bgicon {
|
|
||||||
background-size: 50px;
|
|
||||||
padding-right:50px;
|
|
||||||
}
|
|
||||||
.large-bgicon {
|
|
||||||
background-size: 80px;
|
|
||||||
padding-right:80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Open Sans', sans-serif!important;
|
font-family: 'Open Sans', sans-serif!important;
|
||||||
font-family: Raleway, sans-serif!important;
|
font-family: Raleway, sans-serif!important;
|
||||||
font-weight:400!important;
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif!important;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight:normal!important;
|
||||||
}
|
}
|
||||||
h1, .uk-h1, h2, .uk-h2, h3, .uk-h3 {
|
h1, .uk-h1, h2, .uk-h2, h3, .uk-h3 {
|
||||||
font-family: 'Open Sans', sans-serif !important;
|
font-family: 'Open Sans', sans-serif !important;
|
||||||
|
@ -41,7 +22,7 @@ h4, .uk-h4, h5, .uk-h5 {
|
||||||
font-family: 'Open Sans', sans-serif !important;
|
font-family: 'Open Sans', sans-serif !important;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6, .uk-h6 {
|
h6, .uk-h6 {
|
||||||
font-family: 'Open Sans', sans-serif !important;
|
font-family: 'Open Sans', sans-serif !important;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
@ -57,7 +38,7 @@ a:hover, .uk-link:hover{
|
||||||
color: #D53B23;
|
color: #D53B23;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.uk-badge, .badge, a.badge { border-radius: 2px;}*/
|
.uk-badge, .badge, a.badge { border-radius: 2px;}
|
||||||
|
|
||||||
|
|
||||||
.hero_to_top {
|
.hero_to_top {
|
||||||
|
@ -71,7 +52,7 @@ color: #D53B23;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tm-toolbar {
|
.tm-toolbar {
|
||||||
border-top: 5px solid #05007A;
|
border-top: 5px solid #05007A;
|
||||||
position:relative;
|
position:relative;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
|
@ -110,7 +91,7 @@ padding-right:0px;
|
||||||
margin-top:-10px;
|
margin-top:-10px;
|
||||||
background-color: #05007A;
|
background-color: #05007A;
|
||||||
padding:10px 10px 0px 0px;
|
padding:10px 10px 0px 0px;
|
||||||
transform: skew(25deg);
|
transform: skew(25deg);
|
||||||
margin-right:10px;
|
margin-right:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,7 +122,7 @@ padding-right:0px;
|
||||||
.tm-toolbar .uk-subnav-line li a{
|
.tm-toolbar .uk-subnav-line li a{
|
||||||
display: block;
|
display: block;
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
transform: skew(-25deg);
|
transform: skew(-25deg);
|
||||||
font-family:Roboto:900!important;
|
font-family:Roboto:900!important;
|
||||||
text-transform:uppercase!important;
|
text-transform:uppercase!important;
|
||||||
font-size:13px!important;
|
font-size:13px!important;
|
||||||
|
@ -167,7 +148,7 @@ li.uk-active.home-hover
|
||||||
margin-bottom:0px!important;
|
margin-bottom:0px!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tm-toolbar .uk-subnav-line li a:hover,
|
.tm-toolbar .uk-subnav-line li a:hover,
|
||||||
.tm-toolbar .uk-subnav-line li:hover a {
|
.tm-toolbar .uk-subnav-line li:hover a {
|
||||||
display: block;
|
display: block;
|
||||||
color:#05007A!important;
|
color:#05007A!important;
|
||||||
|
@ -202,23 +183,23 @@ box-shadow: 2px 15px 50px rgba(41, 44, 61, .1)
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.uk-light a, .uk-light .uk-link,
|
.uk-light a, .uk-light .uk-link,
|
||||||
.uk-section-primary:not(.uk-preserve-color) a, .uk-section-primary:not(.uk-preserve-color) .uk-link,
|
.uk-section-primary:not(.uk-preserve-color) a, .uk-section-primary:not(.uk-preserve-color) .uk-link,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) a, .uk-section-secondary:not(.uk-preserve-color) .uk-link,
|
.uk-section-secondary:not(.uk-preserve-color) a, .uk-section-secondary:not(.uk-preserve-color) .uk-link,
|
||||||
.uk-tile-primary:not(.uk-preserve-color) a, .uk-tile-primary:not(.uk-preserve-color) .uk-link,
|
.uk-tile-primary:not(.uk-preserve-color) a, .uk-tile-primary:not(.uk-preserve-color) .uk-link,
|
||||||
.uk-tile-secondary:not(.uk-preserve-color) a, .uk-tile-secondary:not(.uk-preserve-color) .uk-link,
|
.uk-tile-secondary:not(.uk-preserve-color) a, .uk-tile-secondary:not(.uk-preserve-color) .uk-link,
|
||||||
.uk-card-primary.uk-card-body a, .uk-card-primary.uk-card-body .uk-link, .uk-card-primary>:not([class*='uk-card-media']) a,
|
.uk-card-primary.uk-card-body a, .uk-card-primary.uk-card-body .uk-link, .uk-card-primary>:not([class*='uk-card-media']) a,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) .uk-link, .uk-card-secondary.uk-card-body a,
|
.uk-card-primary>:not([class*='uk-card-media']) .uk-link, .uk-card-secondary.uk-card-body a,
|
||||||
.uk-card-secondary.uk-card-body .uk-link, .uk-card-secondary>:not([class*='uk-card-media']) a,
|
.uk-card-secondary.uk-card-body .uk-link, .uk-card-secondary>:not([class*='uk-card-media']) a,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) .uk-link, .uk-overlay-primary a, .uk-overlay-primary .uk-link,
|
.uk-card-secondary>:not([class*='uk-card-media']) .uk-link, .uk-overlay-primary a, .uk-overlay-primary .uk-link,
|
||||||
*/
|
*/
|
||||||
.uk-navbar-container:not(.uk-navbar-transparent) a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link,
|
.uk-navbar-container:not(.uk-navbar-transparent) a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link,
|
||||||
.uk-offcanvas-bar a, .uk-offcanvas-bar .uk-link, .tm-toolbar a, .tm-toolbar .uk-link {
|
.uk-offcanvas-bar a, .uk-offcanvas-bar .uk-link, .tm-toolbar a, .tm-toolbar .uk-link {
|
||||||
color: #292C3D
|
color: #292C3D
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.uk-navbar-container:not(.uk-navbar-transparent) a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link,
|
.uk-navbar-container:not(.uk-navbar-transparent) a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link,
|
||||||
.uk-offcanvas-bar a, .uk-offcanvas-bar .uk-link, .tm-toolbar a, .tm-toolbar .uk-link {
|
.uk-offcanvas-bar a, .uk-offcanvas-bar .uk-link, .tm-toolbar a, .tm-toolbar .uk-link {
|
||||||
/*color:#292C3D;
|
/*color:#292C3D;
|
||||||
color: #245BCC;
|
color: #245BCC;
|
||||||
|
@ -251,13 +232,13 @@ color:#292C3D;}
|
||||||
.uk-light .uk-navbar-nav>li.uk-active>a, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-card-secondary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-overlay-primary .uk-navbar-nav>li.uk-active>a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li.uk-active>a, .uk-offcanvas-bar .uk-navbar-nav>li.uk-active>a, .tm-toolbar .uk-navbar-nav>li.uk-active>a
|
.uk-light .uk-navbar-nav>li.uk-active>a, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-card-secondary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-overlay-primary .uk-navbar-nav>li.uk-active>a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li.uk-active>a, .uk-offcanvas-bar .uk-navbar-nav>li.uk-active>a, .tm-toolbar .uk-navbar-nav>li.uk-active>a
|
||||||
color:#292C3D;}
|
color:#292C3D;}
|
||||||
|
|
||||||
.uk-light .uk-navbar-nav>li>a::before, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a::before,
|
.uk-light .uk-navbar-nav>li>a::before, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a::before,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a::before,
|
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a::before,
|
||||||
.uk-card-primary.uk-card-body .uk-navbar-nav>li>a::before,
|
.uk-card-primary.uk-card-body .uk-navbar-nav>li>a::before,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a::before, .
|
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a::before, .
|
||||||
uk-card-secondary.uk-card-body .uk-navbar-nav>li>a::before,
|
uk-card-secondary.uk-card-body .uk-navbar-nav>li>a::before,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a::before,
|
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a::before,
|
||||||
.uk-overlay-primary .uk-navbar-nav>li>a::before, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a::before,
|
.uk-overlay-primary .uk-navbar-nav>li>a::before, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a::before,
|
||||||
.uk-offcanvas-bar .uk-navbar-nav>li>a::before, .tm-toolbar .uk-navbar-nav>li>a::before {
|
.uk-offcanvas-bar .uk-navbar-nav>li>a::before, .tm-toolbar .uk-navbar-nav>li>a::before {
|
||||||
|
|
||||||
background-color: #128DD5;
|
background-color: #128DD5;
|
||||||
|
@ -266,30 +247,30 @@ background-color: #128DD5;
|
||||||
/*height:2px;*/
|
/*height:2px;*/
|
||||||
background-color: #128DD5!important;
|
background-color: #128DD5!important;
|
||||||
}
|
}
|
||||||
.uk-light .uk-navbar-nav>li:hover>a, .uk-light .uk-navbar-nav>li>a:focus, .uk-light .uk-navbar-nav>li>a.uk-open,
|
.uk-light .uk-navbar-nav>li:hover>a, .uk-light .uk-navbar-nav>li>a:focus, .uk-light .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,
|
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,
|
||||||
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a:focus,
|
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a:focus,
|
||||||
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a.uk-open,
|
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,
|
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a:focus,
|
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a:focus,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a.uk-open,
|
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-card-primary.uk-card-body .uk-navbar-nav>li:hover>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li>a:focus,
|
.uk-card-primary.uk-card-body .uk-navbar-nav>li:hover>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li>a:focus,
|
||||||
.uk-card-primary.uk-card-body .uk-navbar-nav>li>a.uk-open,
|
.uk-card-primary.uk-card-body .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li:hover>a,
|
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li:hover>a,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a:focus,
|
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a:focus,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a.uk-open,
|
.uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-card-secondary.uk-card-body .uk-navbar-nav>li:hover>a,
|
.uk-card-secondary.uk-card-body .uk-navbar-nav>li:hover>a,
|
||||||
.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a:focus,
|
.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a:focus,
|
||||||
.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a.uk-open,
|
.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li:hover>a,
|
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li:hover>a,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a:focus,
|
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a:focus,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a.uk-open,
|
.uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-overlay-primary .uk-navbar-nav>li:hover>a, .uk-overlay-primary .uk-navbar-nav>li>a:focus,
|
.uk-overlay-primary .uk-navbar-nav>li:hover>a, .uk-overlay-primary .uk-navbar-nav>li>a:focus,
|
||||||
.uk-overlay-primary .uk-navbar-nav>li>a.uk-open, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li:hover>a,
|
.uk-overlay-primary .uk-navbar-nav>li>a.uk-open, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li:hover>a,
|
||||||
.uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a:focus,
|
.uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a:focus,
|
||||||
.uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a.uk-open,
|
.uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li>a.uk-open,
|
||||||
.uk-offcanvas-bar .uk-navbar-nav>li:hover>a, .uk-offcanvas-bar .uk-navbar-nav>li>a:focus,
|
.uk-offcanvas-bar .uk-navbar-nav>li:hover>a, .uk-offcanvas-bar .uk-navbar-nav>li>a:focus,
|
||||||
.uk-offcanvas-bar .uk-navbar-nav>li>a.uk-open, .tm-toolbar .uk-navbar-nav>li:hover>a,
|
.uk-offcanvas-bar .uk-navbar-nav>li>a.uk-open, .tm-toolbar .uk-navbar-nav>li:hover>a,
|
||||||
.tm-toolbar .uk-navbar-nav>li>a:focus, .tm-toolbar .uk-navbar-nav>li>a.uk-open {
|
.tm-toolbar .uk-navbar-nav>li>a:focus, .tm-toolbar .uk-navbar-nav>li>a.uk-open {
|
||||||
color: #128DD5;
|
color: #128DD5;
|
||||||
}
|
}
|
||||||
|
@ -321,15 +302,15 @@ color: #128DD5;
|
||||||
.uk-light .uk-navbar-nav>li.uk-active>a, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-card-secondary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-overlay-primary .uk-navbar-nav>li.uk-active>a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li.uk-active>a, .uk-offcanvas-bar .uk-navbar-nav>li.uk-active>a, .tm-toolbar .uk-navbar-nav>li.uk-active>a {
|
.uk-light .uk-navbar-nav>li.uk-active>a, .uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a, .uk-card-primary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-primary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-card-secondary.uk-card-body .uk-navbar-nav>li.uk-active>a, .uk-card-secondary>:not([class*='uk-card-media']) .uk-navbar-nav>li.uk-active>a, .uk-overlay-primary .uk-navbar-nav>li.uk-active>a, .uk-navbar-container:not(.uk-navbar-transparent) .uk-navbar-nav>li.uk-active>a, .uk-offcanvas-bar .uk-navbar-nav>li.uk-active>a, .tm-toolbar .uk-navbar-nav>li.uk-active>a {
|
||||||
color: #128DD5!important;
|
color: #128DD5!important;
|
||||||
}
|
}
|
||||||
.uk-light a:hover, .uk-light .uk-link:hover,
|
.uk-light a:hover, .uk-light .uk-link:hover,
|
||||||
.uk-section-primary:not(.uk-preserve-color) a:hover, .uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
|
.uk-section-primary:not(.uk-preserve-color) a:hover, .uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
|
||||||
.uk-section-secondary:not(.uk-preserve-color) a:hover, .uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
|
.uk-section-secondary:not(.uk-preserve-color) a:hover, .uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
|
||||||
.uk-card-primary.uk-card-body a:hover, .uk-card-primary.uk-card-body .uk-link:hover,
|
.uk-card-primary.uk-card-body a:hover, .uk-card-primary.uk-card-body .uk-link:hover,
|
||||||
.uk-card-primary>:not([class*='uk-card-media']) a:hover, .uk-card-primary>:not([class*='uk-card-media']) .uk-link:hover,
|
.uk-card-primary>:not([class*='uk-card-media']) a:hover, .uk-card-primary>:not([class*='uk-card-media']) .uk-link:hover,
|
||||||
.uk-card-secondary.uk-card-body a:hover, .uk-card-secondary.uk-card-body .uk-link:hover,
|
.uk-card-secondary.uk-card-body a:hover, .uk-card-secondary.uk-card-body .uk-link:hover,
|
||||||
.uk-card-secondary>:not([class*='uk-card-media']) a:hover, .uk-card-secondary>:not([class*='uk-card-media']) .uk-link:hover,
|
.uk-card-secondary>:not([class*='uk-card-media']) a:hover, .uk-card-secondary>:not([class*='uk-card-media']) .uk-link:hover,
|
||||||
.uk-overlay-primary a:hover, .uk-overlay-primary .uk-link:hover,
|
.uk-overlay-primary a:hover, .uk-overlay-primary .uk-link:hover,
|
||||||
.uk-navbar-container:not(.uk-navbar-transparent) a:hover, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link:hover,
|
.uk-navbar-container:not(.uk-navbar-transparent) a:hover, .uk-navbar-container:not(.uk-navbar-transparent) .uk-link:hover,
|
||||||
.uk-offcanvas-bar a:hover, .uk-offcanvas-bar .uk-link:hover, .tm-toolbar a:hover, .tm-toolbar .uk-link:hover {
|
.uk-offcanvas-bar a:hover, .uk-offcanvas-bar .uk-link:hover, .tm-toolbar a:hover, .tm-toolbar .uk-link:hover {
|
||||||
color: #128DD5!important;
|
color: #128DD5!important;
|
||||||
}
|
}
|
||||||
|
@ -464,10 +445,10 @@ transform: translateY(-50%);
|
||||||
font-family: 'Open Sans', sans-serif;
|
font-family: 'Open Sans', sans-serif;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
|
|
||||||
}
|
}
|
||||||
.first_page_panel h3.uk-h1 {
|
.first_page_panel h3.uk-h1 {
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
.first_page_panel {
|
.first_page_panel {
|
||||||
border: 0px solid #e5e5e7!important;
|
border: 0px solid #e5e5e7!important;
|
||||||
|
@ -476,7 +457,7 @@ transform: translateY(-50%);
|
||||||
font-size:24pt!important;
|
font-size:24pt!important;
|
||||||
padding:20px!important;
|
padding:20px!important;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
.first_page_panel .banner_text_bottom {
|
.first_page_panel .banner_text_bottom {
|
||||||
font-size:20pt;
|
font-size:20pt;
|
||||||
padding:20px;
|
padding:20px;
|
||||||
|
@ -575,7 +556,7 @@ padding: 5px 0 5px 0;
|
||||||
box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.07);
|
box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.07);
|
||||||
}
|
}
|
||||||
|
|
||||||
.readon:hover{
|
.readon:hover{
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
color: #00a0de;
|
color: #00a0de;
|
||||||
box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05);
|
box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05);
|
||||||
|
@ -584,7 +565,7 @@ box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
|
|
||||||
/*custom classes */
|
/*custom classes */
|
||||||
.partner_slider .wk-link-reset, .partner_slider .wk-link-reset a, .partner_slider .wk-link-reset a:focus,
|
.partner_slider .wk-link-reset, .partner_slider .wk-link-reset a, .partner_slider .wk-link-reset a:focus,
|
||||||
.partner_slider .wk-link-reset a:hover, .partner_slider .wk-link-reset:focus, .partner_slider .wk-link-reset:hover {
|
.partner_slider .wk-link-reset a:hover, .partner_slider .wk-link-reset:focus, .partner_slider .wk-link-reset:hover {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
@ -603,7 +584,7 @@ border-top: 1px solid #6c6c6c;
|
||||||
margin-top:0px;
|
margin-top:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mod_events_latest_date {
|
.mod_events_latest_date {
|
||||||
width: 18%;
|
width: 18%;
|
||||||
float: left;
|
float: left;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -631,7 +612,7 @@ border-top: 1px solid #6c6c6c;
|
||||||
.mod_events_latest_date .larger_font {
|
.mod_events_latest_date .larger_font {
|
||||||
font-size:28px!important;
|
font-size:28px!important;
|
||||||
font-weight:700!important;}
|
font-weight:700!important;}
|
||||||
|
|
||||||
.mod_events_latest_time {
|
.mod_events_latest_time {
|
||||||
//float: left;
|
//float: left;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -764,7 +745,7 @@ font-family: 'Open Sans', sans-serif !important;
|
||||||
.readon-button:hover {
|
.readon-button:hover {
|
||||||
}
|
}
|
||||||
.newsletter .uk-h2 {font-size:28px!important;}
|
.newsletter .uk-h2 {font-size:28px!important;}
|
||||||
.newsletter .uk-icon {
|
.newsletter .uk-icon {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
@ -775,7 +756,7 @@ fill: currentcolor;
|
||||||
margin-bottom:0;
|
margin-bottom:0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.newsletter .acymailing_mootoolsbutton a:link,
|
.newsletter .acymailing_mootoolsbutton a:link,
|
||||||
.newsletter .acymailing_mootoolsbutton a:visited {
|
.newsletter .acymailing_mootoolsbutton a:visited {
|
||||||
background:none!important;
|
background:none!important;
|
||||||
border:none!important;
|
border:none!important;
|
||||||
|
@ -821,8 +802,8 @@ background-color:#fff!important;
|
||||||
background-image:none!important;
|
background-image:none!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.newsletter .acysubbuttons input.button:hover, .newsletter .acysubbuttons .button:hover,
|
.newsletter .acysubbuttons input.button:hover, .newsletter .acysubbuttons .button:hover,
|
||||||
.newsletter .acysubbuttons button.validate:hover, .newsletter .acymailing_mootoolsbutton a:hover,
|
.newsletter .acysubbuttons button.validate:hover, .newsletter .acymailing_mootoolsbutton a:hover,
|
||||||
.newsletter .acymailing_mootoolsbutton a:active {
|
.newsletter .acymailing_mootoolsbutton a:active {
|
||||||
box-shadow:none!important;
|
box-shadow:none!important;
|
||||||
-moz-box-shadow:none!important;
|
-moz-box-shadow:none!important;
|
||||||
|
@ -852,23 +833,23 @@ color: rgba(255, 255, 255, 0.5)!important;
|
||||||
box-shadow: 0px 0px 0px;
|
box-shadow: 0px 0px 0px;
|
||||||
border-radius:0px!important;
|
border-radius:0px!important;
|
||||||
display: inline-table!important;
|
display: inline-table!important;
|
||||||
text-transform:none!important;
|
text-transform:none!important;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-family: 'Roboto Slab', serif;
|
font-family: 'Roboto Slab', serif;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 23px;
|
line-height: 23px;
|
||||||
font-weight: 500 !important;
|
font-weight: 500 !important;
|
||||||
}
|
}
|
||||||
.loginLink {
|
.loginLink {
|
||||||
text-transform:none!important;
|
text-transform:none!important;
|
||||||
color: rgba(0, 0, 0, 0.8)!important;
|
color: rgba(0, 0, 0, 0.8)!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.btl-panel {
|
/*.btl-panel {
|
||||||
background: url(../images/key_login.png) right 40% no-repeat;
|
background: url(../images/key_login.png) right 40% no-repeat;
|
||||||
}*/
|
}*/
|
||||||
#btl-panel-login >span {
|
#btl-panel-login >span {
|
||||||
border: 5px solid #d0d0d0!important;
|
border: 5px solid #d0d0d0!important;
|
||||||
}
|
}
|
||||||
.uk-navbar-item .btlogin{ color: red!important;
|
.uk-navbar-item .btlogin{ color: red!important;
|
||||||
}
|
}
|
||||||
|
@ -1019,7 +1000,7 @@ background-position: 98% 50%;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 98% 50%;
|
background-position: 98% 50%;
|
||||||
}
|
}
|
||||||
.ifaq-tpl-clean_blue_arrow .collapse-close:hover {
|
.ifaq-tpl-clean_blue_arrow .collapse-close:hover {
|
||||||
background:transparent;
|
background:transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1056,8 +1037,8 @@ color: rgba(0, 0, 0, 1.0)!important;
|
||||||
color: rgba(0, 0, 0, 0.6)!important;
|
color: rgba(0, 0, 0, 0.6)!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search_box_bg .uk-text-background{
|
.search_box_bg.uk-text-background{
|
||||||
background-color: rgba(255, 255, 255, 1.0);
|
background-color: rgba(255, 255, 255, 0.7)!important;
|
||||||
font-size:28px!important;
|
font-size:28px!important;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
@ -1123,30 +1104,8 @@ border-left-color: rgba(255, 255, 255, 0.6)!important;
|
||||||
background: rgba(255,255,255, 0.6)!important;
|
background: rgba(255,255,255, 0.6)!important;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
.custom-offcanvas-bar{
|
|
||||||
background: grey !important;
|
|
||||||
width:100% !important;
|
|
||||||
|
|
||||||
}
|
.omtd_secondary > .uk-section-default,
|
||||||
.custom-offcanvas-bar .filtersModal{
|
.omtd_secondary.uk-section-default{
|
||||||
color:grey !important;
|
background:#E7F3F2!important;
|
||||||
|
}
|
||||||
}
|
|
||||||
.list-horizontal{
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.list-horizontal span{
|
|
||||||
margin-right:5px;
|
|
||||||
padding-left: 0px !important;
|
|
||||||
|
|
||||||
}
|
|
||||||
.list-horizontal-line span {
|
|
||||||
margin-right: 5px;
|
|
||||||
border-right: 1px solid #f1f1f1;
|
|
||||||
padding-right: 5px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-horizontal-line > span:last-child {
|
|
||||||
border-right:none;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
@ -24,10 +24,16 @@
|
||||||
left:0;
|
left:0;
|
||||||
}
|
}
|
||||||
.custom-external {
|
.custom-external {
|
||||||
background: rgba(0, 0, 0, 0) url("/assets/icon_external.png") no-repeat scroll left center;
|
background: rgba(0, 0, 0, 0) url("/assets/external-link.svg") no-repeat scroll left center;
|
||||||
padding: 0 0 0 16px;
|
min-height: 15px;
|
||||||
|
background-size: 15px 15px;
|
||||||
|
padding-left: 16px;
|
||||||
|
}
|
||||||
|
h2 .custom-external {
|
||||||
|
min-height: 20px;
|
||||||
|
background-size: 20px 20px;
|
||||||
|
padding-left: 21px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-navbar-toggle-icon, .custom-user-mini-panel{
|
.custom-navbar-toggle-icon, .custom-user-mini-panel{
|
||||||
color:#444 !important
|
color:#444 !important
|
||||||
}
|
}
|
||||||
|
@ -76,14 +82,17 @@
|
||||||
min-height: 300px;
|
min-height: 300px;
|
||||||
}
|
}
|
||||||
.OPEN {
|
.OPEN {
|
||||||
background: rgba(0, 0, 0, 0) url("/assets/openAccess.png") no-repeat scroll right center;
|
background: rgba(0, 0, 0, 0) url("/assets/unlock.svg") no-repeat scroll right top;
|
||||||
padding-right: 18px;
|
padding-right: 20px;
|
||||||
min-height: 18px;
|
min-height: 20px;
|
||||||
|
background-size: 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.EMBARGO, .CLOSED, .RESTRICTED {
|
.EMBARGO, .CLOSED, .RESTRICTED {
|
||||||
background: rgba(0, 0, 0, 0) url("/assets/closedAccess.png") no-repeat scroll right center;
|
background: rgba(0, 0, 0, 0) url("/assets/lock.svg") no-repeat scroll right top;
|
||||||
padding-right: 18px;
|
padding-right: 20px;
|
||||||
|
min-height: 20px;
|
||||||
|
background-size: 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sc39 {
|
.sc39 {
|
||||||
|
@ -243,6 +252,36 @@ max-height:265px;
|
||||||
color: #f0506e;
|
color: #f0506e;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.label-OPEN, .label-open {
|
||||||
|
background: #F25F2F;
|
||||||
|
color: #fff; }
|
||||||
|
.label-CLOSED, .label-EMBARGO, .label-RESTRICTED, .label-closed {
|
||||||
|
background: #0F0F0F;
|
||||||
|
color: #fff }
|
||||||
|
|
||||||
|
.label-publication{
|
||||||
|
background: #4687E6;
|
||||||
|
color: #fff}
|
||||||
|
|
||||||
|
.label-dataset
|
||||||
|
{ background: #1e906c;
|
||||||
|
color: #fff}
|
||||||
|
|
||||||
|
.label-project
|
||||||
|
{ background: #d0307f;
|
||||||
|
color: #fff}
|
||||||
|
|
||||||
|
.label-dataprovider
|
||||||
|
{ background: #00a0de;
|
||||||
|
color: #fff}
|
||||||
|
|
||||||
|
.label-organization
|
||||||
|
{ background: #fbcd0d;
|
||||||
|
color: #414141}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.uk-tab {
|
.uk-tab {
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
|
@ -264,7 +303,7 @@ color: #f0506e;
|
||||||
border-bottom: 1px solid #e5e5e5;
|
border-bottom: 1px solid #e5e5e5;
|
||||||
}
|
}
|
||||||
.mainPageSearchForm{
|
.mainPageSearchForm{
|
||||||
background-image: url("./globe_tech.jpg"); background-color: rgb(255, 255, 255); box-sizing: border-box; min-height: calc(100vh - 412.767px);
|
background-image: url("./home.jpeg"); background-color: rgb(255, 255, 255); box-sizing: border-box; min-height: calc(100vh - 412.767px);
|
||||||
}
|
}
|
||||||
.searchForm, .publicationsSearchForm, .projectsSearchForm, .organizationsSearchForm, .datasetsSearchForm, .datasourcesSearchForm, .journalsSearchForm,
|
.searchForm, .publicationsSearchForm, .projectsSearchForm, .organizationsSearchForm, .datasetsSearchForm, .datasourcesSearchForm, .journalsSearchForm,
|
||||||
.entityRegistriesSearchForm, .compatibleDatasourcesSearchForm,
|
.entityRegistriesSearchForm, .compatibleDatasourcesSearchForm,
|
||||||
|
@ -281,6 +320,8 @@ color: #f0506e;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: calc(50% - 47px);
|
top: calc(50% - 47px);
|
||||||
right: 0;
|
right: 0;
|
||||||
|
z-index: 10000;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#feedback a {
|
#feedback a {
|
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 64 64" width="20px" height="20px" version="1.1" viewBox="0 0 64 64" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Ebene_2"/><g id="Ebene_1"><g><path d="M48,27c-0.553,0-1,0.448-1,1v27H9V17h27c0.553,0,1-0.448,1-1s-0.447-1-1-1H8c-0.552,0-1,0.448-1,1v40c0,0.553,0.448,1,1,1 h40c0.553,0,1-0.447,1-1V28C49,27.448,48.553,27,48,27z"/><path d="M56,7H44c-0.553,0-1,0.448-1,1s0.447,1,1,1h10h1v1v10c0,0.552,0.447,1,1,1s1-0.448,1-1V8C57,7.448,56.553,7,56,7z"/><path d="M54,9c-0.256,0-0.512,0.098-0.707,0.293l-22,22c-0.391,0.391-0.391,1.023,0,1.414C31.488,32.902,31.744,33,32,33 s0.512-0.098,0.707-0.293l22-22C54.902,10.512,55,10.256,55,10s-0.098-0.512-0.293-0.707S54.256,9,54,9z"/></g></g></svg>
|
After Width: | Height: | Size: 904 B |
After Width: | Height: | Size: 365 KiB |
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width="20px" height="20px" id="els2_x5F_basic" style="enable-background:new 0 0 40 40;" version="1.1" viewBox="0 0 40 40" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M29.688,17H10.294c-1.817,0-3.3,1.482-3.3,3.298 v12.381c0,1.817,1.482,3.299,3.3,3.299h19.395c1.817,0,3.3-1.482,3.3-3.299V20.298C32.988,18.482,31.506,17,29.688,17z" style="fill:none;stroke:#999999;stroke-width:1.33;stroke-miterlimit:10;"/><path d="M28,17v-6.094C28,6.558,24.4,3,20,3 s-8,3.558-8,7.906V17" style="fill:none;stroke:#999999;stroke-width:1.33;stroke-miterlimit:10;"/><line style="fill:none;stroke:#999999;stroke-width:1.33;stroke-linecap:round;stroke-miterlimit:10;" x1="20" x2="20" y1="23" y2="30"/></svg>
|
After Width: | Height: | Size: 878 B |
|
@ -0,0 +1 @@
|
||||||
|
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width="20px" height="20px" id="els2_x5F_basic" style="enable-background:new 0 0 40 40;" version="1.1" viewBox="0 0 40 40" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M29.7,19.021H10.306 c-1.817,0-3.3,1.482-3.3,3.298v12.381c0,1.817,1.482,3.299,3.3,3.299H29.7c1.817,0,3.3-1.482,3.3-3.299V22.32 C33,20.503,31.518,19.021,29.7,19.021z" style="fill:none;stroke:#D53B23;stroke-width:1.33;stroke-miterlimit:10;"/><path d="M28,12.064v-1.158C28,6.558,24.4,3,20,3 s-8,3.558-8,7.906v8.115" style="fill:none;stroke:#D53B23;stroke-width:1.33;stroke-miterlimit:10;"/><line style="fill:none;stroke:#D53B23;stroke-width:1.33;stroke-linecap:round;stroke-miterlimit:10;" x1="20.012" x2="20.012" y1="25.021" y2="32.021"/></svg>
|
After Width: | Height: | Size: 904 B |
|
@ -15,8 +15,8 @@
|
||||||
<meta property="og:url" content="https://demo.openaire.eu"/>
|
<meta property="og:url" content="https://demo.openaire.eu"/>
|
||||||
<meta property="og:site_name" content="OpenAIRE"/>
|
<meta property="og:site_name" content="OpenAIRE"/>
|
||||||
|
|
||||||
<meta property="og:image" content="https://demo.openaire.eu/assets/dl119_files/Symbol.png"/>
|
<meta property="og:image" content="https://demo.openaire.eu/assets/common/Symbol.png"/>
|
||||||
<meta property="og:image:secure_url" content="https://demo.openaire.eu/assets/dl119_files/Symbol.png" />
|
<meta property="og:image:secure_url" content="https://demo.openaire.eu/assets/common/Symbol.png" />
|
||||||
<meta property="og:image:type" content="image/png" />
|
<meta property="og:image:type" content="image/png" />
|
||||||
<meta property="og:image:width" content="360" />
|
<meta property="og:image:width" content="360" />
|
||||||
<meta property="og:image:height" content="359" />
|
<meta property="og:image:height" content="359" />
|
||||||
|
@ -28,33 +28,33 @@
|
||||||
// console.log(errorMsg + " __" + url + " __" + lineNumber + " __" + column + " __" + errorObj);
|
// console.log(errorMsg + " __" + url + " __" + lineNumber + " __" + column + " __" + errorObj);
|
||||||
if(errorMsg.indexOf("uikit.js") != -1 || url.indexOf("uikit.js") != -1 ){
|
if(errorMsg.indexOf("uikit.js") != -1 || url.indexOf("uikit.js") != -1 ){
|
||||||
console.log("********UIKIT Error ***********");
|
console.log("********UIKIT Error ***********");
|
||||||
$.getScript("assets/dl119_files/uikit.js");
|
$.getScript("assets/common/uikit.js");
|
||||||
$.getScript("assets/dl119_files/uikit-icons-max.js");
|
$.getScript("assets/common/uikit-icons-max.js");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<!-- <script src="assets/jquery/jquery.min.js" type="text/javascript"></script> -->
|
<!-- <script src="assets/jquery/jquery.min.js" type="text/javascript"></script> -->
|
||||||
<script src="assets/dl119_files/jquery.js"></script>
|
<script src="assets/common/jquery.js"></script>
|
||||||
<!-- <script src="assets/dl119_files/uikit.js"></script> -->
|
<!-- <script src="assets/common/uikit.js"></script> -->
|
||||||
<script src="assets/dl119_files/uikit-icons-max.js"></script>
|
<script src="assets/common/uikit-icons-max.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
console.log("Is ready - load uikit ***")
|
console.log("Is ready - load uikit ***")
|
||||||
$.getScript("assets/dl119_files/uikit.js");
|
$.getScript("assets/common/uikit.js");
|
||||||
$.getScript("assets/dl119_files/uikit-icons-max.js");
|
$.getScript("assets/common/uikit-icons-max.js");
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<!-- <script src="assets/dl119_files/uikit.js"></script> -->
|
<!-- <script src="assets/common/uikit.js"></script> -->
|
||||||
<!-- <script src="assets/dl119_files/uikit-icons-max.js"></script> -->
|
<!-- <script src="assets/common/uikit-icons-max.js"></script> -->
|
||||||
|
|
||||||
|
|
||||||
<!-- <link rel="stylesheet" href="node_modules/uikit/dist/css/uikit.min.css"> -->
|
<!-- <link rel="stylesheet" href="node_modules/uikit/dist/css/uikit.min.css"> -->
|
||||||
<link rel="stylesheet" href="assets/dl119_files/theme.css">
|
<link rel="stylesheet" href="assets/common/theme.css">
|
||||||
<link rel="stylesheet" href="assets/dl119_files/custom.css">
|
<link rel="stylesheet" href="assets/common/custom.css">
|
||||||
<link rel="stylesheet" href="assets/custom.css">
|
<link rel="stylesheet" href="assets/discover-custom.css">
|
||||||
|
|
||||||
<!-- <script async src="assets/dl119_files/theme.js"></script> -->
|
<!-- <script async src="assets/common/theme.js"></script> -->
|
||||||
|
|
||||||
<!--script src="node_modules/uikit/dist/js/uikit.min.js"></script-->
|
<!--script src="node_modules/uikit/dist/js/uikit.min.js"></script-->
|
||||||
|
|
||||||
|
|