activo-rails
activo-rails copied to clipboard
Rails 3.1 production error on CSS compile
I was trying to run my project in production mode, and in that mode a css compilation error ocours with this message:
ActionView::Template::Error (Invalid CSS after "...: alpha(opacity": expected comma, was ":0);"
It turns out that both Jquery-UI and Uniform uses alpha opacity and are causing the compilation problem. As I was not using them in my project, I just removed them from my fork, but I think this is something to take a look.
Change opacity:0 to opacity=0 in your CSS to resolve this.
https://github.com/jellybob/activo-rails/pull/26/files has this fixed.