The file is far from valid , which you should probably look at, but here's what I found & hellip;
Through some trial and error, it seems that a CSS file that is concatenated on one line looks like it was disabled when using the Chrome developer tools. The file apparently was parsed using Ctrl + Shift + F and searching for something at the end of the file (I was looking for the zag-divider ), then Chrome reports that it was found, although the found account seemed incorrect.
In particular, it seems that any line of this CSS file that is> = 66 537 characters will be disabled! For example:
- single line CSS file <= 66 536 characters will not be disabled.
- single line CSS file> = 66 537 characters will be disabled
- a multi-line CSS file> = 66,537 characters will only have lines that> = 66,537 will be disabled.
I had one line of exactly 66 537 CSS characters, which was cut off, but by adding one carriage return after the first selector and reloading, the whole file was shown correctly in the console.
So, summarize & hellip; A CSS file with any line> = 66,537 characters looks like it was partially cut off in the Chrome developer tools, although the file did indeed download completely. I checked this by adding a rule to the end of the line that was applied in Chrome.
Note: I would be happier if the magic number seemed to be 2 16
Edit: Chrome investigation 23.0.1271.97 m
andyb
source share