[Library|Trunk]

move connect CustomizationOptions.ts in Library


git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@57045 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2019-09-12 09:40:17 +00:00
parent 7065cda22e
commit e0dddbf71e
1 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,82 @@
export class CustomizationOptions {
mainColor: string;
secondaryColor: string;
panel: {
background: {
// gradientDirection: string;
borderStyle: string;
borderColor: string;
borderWidth: string;
}, fonts: {
color: string;
family: string;
size: string;
},
title: {
color: string;
family: string;
size: string;
},
links: {
color: string;
family: string;
size: string;
// decoration: string;
onHover: {
color: string;
}
};
buttons: {
backgroundColor: string;
color: string;
fontWeight:string;
borderStyle: string;
borderColor: string;
borderWidth: string;
borderRadius: string;
onHover: {
backgroundColor: string;
color: string;
borderColor: string;
}
};
panelElements: {
backgroundColor: string;
borderColor: string;
color: string;
}
};
box: {
borderColor: string;
borderStyle: string;
borderWidth: string;
borderRadius: string;
}
;
links: {
color: "";
family: string;
decoration: string;
onHover: {
color: string;
};
};
buttons: {
backgroundColor: string;
color: string;
borderStyle: string;
borderColor: string;
borderWidth: string;
borderRadius: string;
onHover: {
backgroundColor: string;
color: string;
borderColor: string;
};
};
}