Anand V Nath created TRINIDAD-2399:
--------------------------------------
Summary: support css client side rules in skinning framework
Key: TRINIDAD-2399
URL: https://issues.apache.org/jira/browse/TRINIDAD-2399
Project: MyFaces Trinidad
Issue Type: New Feature
Components: Skinning
Affects Versions: 2.1.0-core
Reporter: Anand V Nath
This ER is for introducing client side css rule support in skinning framework.
Here's a list of known CSS at-rules:
@document - uses nested selectors that need to be resolved
@font-face - probably safe to blindly pass through
@keyframes - probably safe to blindly pass through
@media - uses nested selectors that need to be resolved
@page - probably safe to blindly pass through
@supports - uses nested selectors that need to be resolved
These rules can be split into two based on its usage:
@document, @keyframes, @media, @support uses following syntax:
@rule {
selector
{
property : value;
property : value;
property : value;
}
}
@font-face and @page uses following syntax:
@rule {
property : value;
property : value;
property : value;
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira