[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:
parent
7065cda22e
commit
e0dddbf71e
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue