There seems to be a bug in the Markup -> CSS -> format command where vendor
prefixes get removed.
eg
.test {
background-color: #f8f8f8;
background: linear-gradient(top, #f8f8f8, #f2f2f2);
background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8),
to(#f2f2f2));
background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2);
background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2);
background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2);
background: -o-linear-gradient(top, #f8f8f8, #f2f2f2);
}
Becomes
.test
{
background-color: #f8f8f8;
background: -o-linear-gradient(top, #f8f8f8, #f2f2f2);
}
Is there a setting somewhere to format CSS and keep vendor prefixes?
Thanks.
--
This is the BBEdit Talk public discussion group. If you have a
feature request or would like to report a problem, please email
"[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
---
You received this message because you are subscribed to the Google Groups
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].