Creating a GridFramework for Skeleton
PermalinkI've not had any issues getting the creating the GridFramework, but when it comes to editing it I'm finding that the handles to change the grid don't sit where they should. Some of them just aren't set at the same percentages as the actual grid columns. See attached for this.
I'm been able to create a custom grid for Susy grids without having this happening, and with Skeleton being pretty simple in terms of how it works I'm a bit stuck as to its cause. I've not got any other styles in play for this, it's simply the grid portion of Skeleton. I changed the .contain and .row classes in Skeleton to something unique, as to not intefere with c5's bootstrap interface.
I'm fairly certain I've got the actual GridFramework class set up correctly, as it's outputting the grid related code as I'd expect. I'm wondering if it needs some extra little tweak CSS wise. This in 5.7.4.2.
Has anyone set this up before and encountered this? Any tips?

Maybe they're an issue with the layout code, I might have to dig a bit deeper to see how it works...
The way skeleton works out its column margins is by adding on margins to the _left_ side of columns, setting a margin left of zero for the first column (first-child).
I found that if I simply swapped this behaviour over, so that margins are applied on the right, and it's the last column that has a margin right of zero (last-child), the grid continues to work correctly AND the handles show in the right spots.
This is something that can be changed in Skeleton without having to re-code anything else, it's a few minutes work (I've using a Sass based version which makes it even easier).
I'll put something up on Github soon.