Topic: column-count CSS changed by Heroku deployment?!
Something very strange is going on - I have a feeling I'm just missing something basic.
On my local Windows dev machine, my page/CSS has a div with column_count=3. The file in question:
https://github.com/asfarley/asdesigner/
s.css.scss
-moz-column-count: 3; /* Firefox */
-webkit-column-count: 3; /* Safari and Chrome */
column-count: 3; //The correct values are all 3!
I run:
git add *
git commit -m "fix css"
git push origin master
git push heroku master
Everything looks as expected during normal deployment. Then, when I visit the app, somehow the CSS only shows 2 columns:
http://tranquil-atoll-5261.herokuapp.com/systems/new
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
Any idea how I can figure out what's happening here?
Last edited by asfarley (2012-11-29 11:18:14)