You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base64 data for background images doesn't work because the CssAbsoluteFilter is messing around with the URL, trying to add the media path. It looks like changing line 29 of css_default.py to the following fixes it:
if url.startswith('http://') or url.startswith('/') or url.startswith('data:'):
The text was updated successfully, but these errors were encountered:
Base64 data for background images doesn't work because the CssAbsoluteFilter is messing around with the URL, trying to add the media path. It looks like changing line 29 of css_default.py to the following fixes it:
if url.startswith('http://') or url.startswith('/') or url.startswith('data:'):
The text was updated successfully, but these errors were encountered: