lightningtgc/sublime-cssorder

[REQUEST] Sass/Less specifics

Opened this issue · 0 comments

Sorry for being a bit of a nitpicker, but I think it would help if the Sass/Less specific mixins and stuff got pushed to the top of the blocks instead of the bottom.

Now when using Bootstrap with Sass I get this:

.test {
     position: absolute;

    height: 230px;

    background: url("../images/logo.png") center 25px no-repeat transparent;

    @include make-xs-column(12);
}

Which breaks the 'position: absolute' part because the @include comes after it. It would be better if it rendered to:

.test {
    @include make-xs-column(12);

     position: absolute;

    height: 230px;

    background: url("../images/logo.png") center 25px no-repeat transparent;
}