Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.1.0-core
-
None
Description
CSS Client rules are executed at client side. Skin has many features like aliases, rule refs, property refs which gets evaluated at server side. So there are usecases which wont work with client side rules.
Eg:
@media screen and (max-width: 1680px) {
.AFBrandingBackgroundColor:alias
}
This will not get applied because we evaluate the @media rule at client side. The alias however is evaluated at the server side and skinning framework would not be able to decide when the alias specified above will be applicable. We documented about the -tr rules in the skinning dev guide, but missed out on the alias usecase.
This bug is to update the alias usecase. Also please suggest if I am missing out any other usecase that we need to mention in conjunction with client side rules.