Wondering if this still works. I am considering using this in a production website. I am especially interested in the Autoprefixer. Also, do I have to write the css inside admin specifically or can I write .scss locally and then compile with autoprefixing? I am currently using WP Compiler plugin, but that one only compiles .scss to .css, no autoprefixing.
Cheers,
Rob
Hi,
This plugin is great, and I certainly plan to use it in all future projects. I’m grateful to the developer for creating such a powerful implementation of CSS preprocessers into a WordPress plugin!
The only issue is that it’s essentially unusable out-of-the-box due to the CSS editor in the customizer only being one line of text tall. This probably happened because of some change to the WordPress customizer that occurred after the most recent plugin update (about a year ago as of this writing).
To fix this for use with WP 4.8.1 (although not a perfect solution), I added the following code below line 410 in tuxedo_css_editor.php
, which is in the plugin’s root directory:
#sub-accordion-section-tux_css_editor_section {
height: 100% !important;
}
If you’d like to use a copy of the plugin that’s already fixed, I’ve uploaded my copy of the modified plugin here.
If this gets fixed soon so that the plugin can be used without having to first be modified, I’d be happy to give it a five star rating!
]]>Does this plugin add the additional css for the different browsers? Such as
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
]]>
Here’s what it looks like in SASS mode: https://i.imgur.com/2YVow9c.png
And here’s LESS mode: https://i.imgur.com/EsMLTcr.png
Is there supposed to be an editor there or something?
This plugins idea seems really cool though.
]]>