Merge branch 'master' of code-repo.d4science.org:MaDgIK/openaire-theme

This commit is contained in:
Konstantina Galouni 2022-04-05 19:55:16 +03:00
commit b1d890fef4
3 changed files with 25 additions and 2 deletions

2
css/import.css vendored
View File

@ -26,3 +26,5 @@
@import "structure/width.css";
@import "openaire.css";
@import "structure/linking.css";

22
css/structure/linking.css Normal file
View File

@ -0,0 +1,22 @@
: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;
}
.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);
}

View File

@ -53,11 +53,10 @@
color:var(--step-default-text);
}
.stepper .stepper-line {
/*border-top-color: rgba(0, 0, 0, 0.12);*/
box-shadow: inset -3px -3px 6px rgba(100, 100, 100, 0.5);
border-radius: 6px;
opacity: 1;
width: 100%;
}
.stepper .stepper-line {
box-shadow:inset -3px -3px 6px #FFFFFFE6;