Move deposit and linking from openaire-theme

This commit is contained in:
Konstantinos Triantafyllou 2022-06-16 19:47:16 +03:00
parent b261d0f845
commit d77c1739dc
3 changed files with 63 additions and 4 deletions

11
library-css/deposit.css Normal file
View File

@ -0,0 +1,11 @@
.deposit {
/* Primary */
--button-primary-background: var(--primary-color);
--button-primary-background-image: linear-gradient(251deg, var(--primary-light-color) 0%, var(--primary-dark-color) 100%);
--button-primary-color: var(--light-color);
--button-primary-border-color: transparent;
--button-primary-background-hover: var(--secondary-color);
--button-primary-background-image-hover: none;
--button-primary-color-hover: var(--light-color);
--button-primary-border-color-hover: transparent;
}

View File

@ -2,15 +2,17 @@
/*@import "portal.css";*/
/*@import "pagination.css";*/
/*@import "labels.css";*/
@import "utils.css";
@import "search.css";
@import "deposit.css";
@import "landing-utils.css";
@import "linking.css";
@import "login.css";
@import "search.css";
@import "text.css";
@import "utils.css";
/*@import "tabs.css";*/
/*@import "breadcrumbs.css";*/
/*@import "material.css";*/
/*@import "alerts.css";*/
@import "login.css";
@import "text.css";
/*@import "button.css";*/
/*@import "notification.css";*/
/*@import "modal.css";*/

46
library-css/linking.css Normal file
View File

@ -0,0 +1,46 @@
:root {
--linking-basket-background: var(--primary-color);
--linking-next-step-disabled-background: var(--muted-color);
--linking-next-step-disabled-color: var(--disable-color);
--linking-next-step-active-background: var(--primary-color);
--linking-next-step-active-color: white;
--linking-result-button-selected-background: var(--secondary-color);
--linking-result-button-selected-color: white;
--linking-result-button-selected-border: var(--secondary-color);
--linking-result-button-enabled-background: white;
--linking-result-button-enabled-color: var(--primary-color);
--linking-result-button-enabled-border: var(--primary-color);
}
.linkingBasket{
background-color: var(--linking-basket-background) opacity 0.1;
}
.nextStep.active{
background-color: var(--linking-next-step-active-background);
color: var(--linking-next-step-active-color);
cursor: pointer;
}
.nextStep.disabled{
background-color: var(--linking-next-step-disabled-background);
color: var(--linking-next-step-disabled-color);
}
.community-card .uk-icon-button.selected, .claim-result-card .uk-icon-button.selected{
background-color: var(--linking-result-button-selected-background);
color: var(--linking-result-button-selected-color) !important;
border-color: var(--linking-result-button-selected-border);
box-shadow: none;
}
.community-card .uk-icon-button.enabled, .claim-result-card .uk-icon-button.enabled{
background-color: var(--linking-result-button-enabled-background);
color: var(--linking-result-button-enabled-color) !important;
border:1px solid var(--linking-result-button-enabled-border);
box-shadow: none;
}
.community-card .uk-icon-button{
width: 34px;
height: 34px;
}