Reputation: 287
I have a problem when having a bundle exec rake assets:precompile
because of CKEditor Gem issue.
My error is this:
Sass::SyntaxError: Invalid CSS after "..._footer{filter:": expected expression (e.g. 1px, bold), was "}"
(in /home/test_test/.rvm/gems/ruby-2.1.0-preview2@test_test/gems/ckeditor-4.0.11/app/assets/javascripts/ckeditor/override.js.erb)
(sass):6
Can somebody help me. I can't deploy my app. I'm stuck. Thanks in advance.
Upvotes: 1
Views: 353
Reputation: 37419
This is a bug in ckeditor, which has been fixed at least twice :-P.
You can fix it yourself by editing /home/test_test/.rvm/gems/ruby-2.1.0-preview2@test_test/gems/ckeditor-4.0.11/vendor/assets/javascripts/ckeditor/skins/moono/dialog_iequirks.css
.
Look at the end of the file, and make sure it does not end with cke_dialog_footer{filter:}
. Here is the fix in github
Upvotes: 2