[Trunk | Connect]:

1. connect-custom.css: [Bug fix] Add .connectApp .uk-pagination > * > *:hover in rule .connectApp .uk-pagination > * > * so that paging does not change color (white) on hover.
2. app.component.ts: [Bug fix] In some cases both <schema2jsonld> tags where active - added in the second one more check "&& community".


git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@60013 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
konstantina.galouni 2020-12-02 14:53:34 +00:00
parent 872b8ddcc5
commit a41adbcab7
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ import {CommunityService} from "./openaireLibrary/connect/community/community.se
name="OpenAIRE Connect"
description="Build a Gateway for your Community: Turn Open Science into Practice. It takes your open and linked research outcomes.">
</schema2jsonld>
<schema2jsonld *ngIf="properties && showMenu && communityId && communityId.length > 0" [URL]="properties.domain + properties.baseLink"
<schema2jsonld *ngIf="properties && showMenu && communityId && communityId.length > 0 && community" [URL]="properties.domain + properties.baseLink"
[logoURL]="community.logoUrl" type="home" [searchActionRoute]="properties.searchLinkToResults"
[name]="community.name" [description]="community.description" >
</schema2jsonld>

View File

@ -249,7 +249,7 @@ a:hover .user-circle-background {
font-weight: 700;
}
.connectApp .uk-pagination > * > * {
.connectApp .uk-pagination > * > *, .connectApp .uk-pagination > * > *:hover {
color: #1a1a1a !important;
}