Hello,

Sorry if this is kind of off topic but I had a question about using css
styles to skin my app. I have one application that is deployed on many
different sites, all of which have different skins loaded at run time. I
want to make it quick and easy to update the skins by setting basic options
and referencing them in the other styles. Is this possible to do? If so,
what would the correct syntax be?

As an example of what I mean:


.defaultLightColor {
  color: #005290;
}

.mediumLightFont {
    fontFamily: MYFont;
    fontWeight: normal;
    fontSize: 14;
    color: 'defaultLightColor.color';
}

.someDataGrid {
    fontStyle: 'mediumLightFont';
}


I tried the above which obviously didn't work. Any suggestions?


Thanks!
~Aaron

Reply via email to