Este erro acontece dependendo da forma como o servidor fornece os ficheiros CSS ao browser.
A forma que encontramos para resolver este erro foi criar um set de instruções de cache e passá-las ao servidor.
Para resolver, adicionar o seguinte ao ficheiro .htaccess:
# BEGIN Cache-Control Headers
<ifmodule mod_headers.c>
<filesmatch "\\.(ico|jpe?g|png|gif|swf|gz|ttf)$">
Header set Cache-Control "max-age=2592000, public"
</filesmatch>
<filesmatch "\\.(css)$">
Header set Cache-Control "max-age=1592000, public"
</filesmatch>
<filesmatch "\\.(js)$">
Header set Cache-Control "max-age=1592000, private"
</filesmatch>
<filesmatch "\\.(html|htm)$">
Header set Cache-Control "max-age=7200, public"
</filesmatch>
# Disable caching for scripts and other dynamic files
<filesmatch "\.(pl|php|cgi|spl|scgi|fcgi)$">
Header unset Cache-Control
</filesmatch>
</ifmodule>
# END Cache-Control Headers