-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
image-url() instead of url() in production #25
Comments
Double check your file extensions. I had that issue once when I named the file |
The file extension is correct: Does Roadie read the CSS from the SCSS file or from the precompiled CSS file? My precompiled file |
By default, in Rails 3.1 and 3.2, Roadie will use files from the asset pipeline if it's enabled, otherwise it will use the file system. I'm guessing that it's using the filesystem instead of the pipeline in your case. Are you using the
|
I solved my problem but I don´t know what exactly happen. I precompiled my assets on my local machine an deployed it to the production server. That seems not to work or I forgot to precompile it after a change. Once I run Sorry for the inconvenience! |
No problem. |
Hello!
First of all, thank you for this great gem! :)
But I have one strange issue:
Rails 3.2.3
Roadie 2.3.1
In production the mail contain style Tags with
background:image-url(http...)
instead ofbackground:url(http...)
In development everything works fine.
The precompiled CSS file contains the correct background definition generated from SCSS
.header{background:url(/assets...);}
I tried both techniques to include the CSS. A HTML Tag in the head and the :css option. The same problem with both.
Any ideas what this could be?
The text was updated successfully, but these errors were encountered: