Since Sass 3.4 some of the generated CSS files contains a BOM flag to be compliant with CSS Syntax Module Level 3. The problem is that Drupal's CSS aggregator does not remove that flag. It that case, some CSS rules, often related to webfonts, are not loaded anymore.
An easy hack can be added in the config.rb file to remove the BOM automatically.
# Removes the BOM for UTF-8 stylesheets.
on_stylesheet_saved do |filename|
css = File.open(filename, 'r')
content = css.read
if "UTF-8" == content.encoding.name
content.sub!("\xEF\xBB\xBF".force_encoding("UTF-8"), '')
File.write(filename, content)
end
end
Add this snippet to the base config.rb file.
None.
None.
None.
Active
4.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.