Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After upgrading to rails 3.2 I'm getting this error on rake assets:precompile

Invalid CSS after "*": expected "{", was "html .fileinput..."

here is the trace: http://paste.ubuntu.com/1285319/

application.css is pretty much the default:

/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *= require_self 
 *= require_tree . 
*/

obviously it doesn't like the comments in CSS, was there some change in SASS or Rails I haven't noticed?

here are the versions of sass:

sass (3.2.1)
sass-rails (3.2.5)
  railties (~> 3.2.0)
  sass (>= 3.1.10)
  tilt (~> 1.3)
share|improve this question
can you paste your css file which contains html .fileinput... ? – Lucca Mordente Oct 17 '12 at 16:23
I'm not sure what do you mean... the stylesheet is inserted <%= stylesheet_link_tag "application" %> standard way – Tombart Oct 17 '12 at 17:39
Are there other files in assets/stylesheets? Rails can’t be objecting to comments in CSS, nothing has changed in that regard. – Buck Doyle Oct 17 '12 at 18:03
yeah, sure. there are quite a many of them... – Tombart Oct 17 '12 at 18:18

1 Answer

up vote 1 down vote accepted

the error was caused by this line in jquery.fileupload-ui.css (jQuery File Upload UI Plugin CSS 6.3)

/* Fix for IE 6: */
*html .fileinput-button {
  line-height: 22px;
  margin: 1px -3px 0 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.