Merge remote-tracking branch 'origin/angular-12' into angular-13

This commit is contained in:
Konstantina Galouni 2022-09-30 16:01:30 +03:00
commit 8b0cee6a7e
8 changed files with 34 additions and 10 deletions

11
CHANGELOG.md Normal file
View File

@ -0,0 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.
## [1.0.0]
Initial release of EOSC Explore Portal.
It contists of the search pages and the landing pages for the content of the BETA OpenAIRE Graph.
For datasets there is the demo funtionality of Datatransfer service, using zenodo as source and EDI demo dcache as destination.
There is link to EOSC market place (beta) for results connected to EOSC services.

View File

@ -44,7 +44,7 @@
"src/robots.txt"
],
"styles": [
"src/styles.css",
"src/styles.less",
"src/assets/common-assets/library-css/material.scss"
],
"scripts": [
@ -184,7 +184,7 @@
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.css"
"src/styles.less"
],
"scripts": [],
"assets": [

View File

@ -68,3 +68,8 @@
.number {
color: #1d1d1d;
}
.search-form {
background-color: inherit !important;
background-image: none !important;
}

View File

@ -42,7 +42,7 @@
<title>EOSC Explore</title>
</head>
<body>
<div class="uk-badge" style="border: 0px; border-radius: 0px; background-color: #bc2300 !important; position: absolute; z-index: 1000;">Beta instance</div>
<div class="uk-badge" style="border: 0px; border-radius: 0px; background: #bc2300 !important; position: absolute; z-index: 1000;">Beta instance</div>
<div class="uk-offcanvas-content uk-height-viewport">
<eosc-common-main-header></eosc-common-main-header>

View File

@ -10,8 +10,8 @@ export let properties: EnvProperties = {
adminToolsPortalType: "eosc",
dashboard: "eosc",
enablePiwikTrack: false,
useCache: true,
useLongCache: true,
useCache: false,
useLongCache: false,
showAddThis: true,
enableEoscDataTransfer: true,
framesAPIURL: "https://beta.openaire.eu/stats3/",

View File

@ -43,7 +43,7 @@
<title>Search OpenAIRE</title>
</head>
<body>
<div class="uk-badge" style="border: 0px; border-radius: 0px; background-color: #bc2300 !important; position: absolute; z-index: 1000;">Beta instance</div>
<div class="uk-badge" style="border: 0px; border-radius: 0px; background: #bc2300 !important; position: absolute; z-index: 1000;">Beta instance</div>
<div class="uk-offcanvas-content uk-height-viewport">
<eosc-common-main-header></eosc-common-main-header>
<app-root></app-root>

View File

@ -1,4 +0,0 @@
/* You can add global styles to this file, and also import other style files */
@import "assets/openaire-theme/css/import.css";
@import "assets/common-assets/library.css";
@import "assets/portal-custom.css";

12
src/styles.less Normal file
View File

@ -0,0 +1,12 @@
///* You can add global styles to this file, and also import other style files */
//@import "assets/openaire-theme/css/import.css";
//@import "assets/common-assets/library.css";
//@import "assets/portal-custom.css";
/* You can add global styles to this file, and also import other style files */
@import "~src/assets/openaire-theme/less/_import";
@import "~src/assets/common-assets/less/general";
@import "~src/assets/common-assets/less/user";
@import "~src/assets/common-assets/less/linking";
@import "~src/assets/common-assets/less/landing";
@import "assets/portal-custom.css";