fix parameter for advanced search url | changes in src/assets/discover-custom.css

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@51985 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2018-05-09 13:55:31 +00:00
parent fad2f25d4e
commit 1e042b712a
4 changed files with 29 additions and 3 deletions

View File

@ -31,7 +31,7 @@ export class OpenaireSearchDatasetsComponent {
this.route.queryParams.subscribe(data => {
if(data['communityId'] && data['communityId']!=""){
this.advancedSearchParameters = {community: data['community'], co: "and"};
this.advancedSearchParameters = {community: data['communityId'], co: "and"};
this.connectCommunityId = data['communityId'];
}
});

View File

@ -32,7 +32,7 @@ export class OpenaireSearchPublicationsComponent {
this.route.queryParams.subscribe(data => {
if(data['communityId'] && data['communityId']!=""){
this.advancedSearchParameters = {community: data['community'], co: "and"};
this.advancedSearchParameters = {community: data['communityId'], co: "and"};
this.connectCommunityId = data['communityId'];
}
});

View File

@ -31,7 +31,7 @@ export class OpenaireSearchSoftwareComponent {
this.route.queryParams.subscribe(data => {
if(data['communityId'] && data['communityId']!=""){
this.advancedSearchParameters = {community: data['community'], co: "and"};
this.advancedSearchParameters = {community: data['communityId'], co: "and"};
this.connectCommunityId = data['communityId'];
}
});

View File

@ -555,3 +555,29 @@ h2, .uk-h2{
font-weight: 600;
color: #fff !important;
}
dd{
margin-top: 10px;
border-bottom: 1px solid #e8e8e8;
padding-bottom: 5px;
}
dd:last-child {
border-bottom: none;
}
.advancedSearchForm {
box-shadow: 0 1px 10px #444444;
}
.advancedSearchForm .uk-icon-button {
fill: #296EE9 !important;
}
.search-results li {
margin-bottom: 30px !important;
padding-top: 15px !important;
}