Are there any plans for adding support for the @media keyword in
CleverCSS?
I propose a syntax similar to this example:
@media print:
#header:
display: none
This should produce:
@media print {
#header {
display: none;
}
}
Currently it produces this instead:
@media print #header {
display: none;
}
If the original authors aren't interested in implementing this, I
volunteer and would appreciate hints for where to look at in the
source code first.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pocoo-libs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pocoo-libs?hl=en
-~----------~----~----~----~------~----~------~--~---