These are my SCSS & Compass Snippets for SublimeText2. I haven't been happy with any other ones out there, so I'm starting my own.
active
&:active{
${1:this}
}
im
@import "${1}";
in
@include ${1};
im
@import "${1}";
mix
//
// $1
//
@mixin ${1:mixin-name}${2:(${3:\$params})} {
$0
}
I borrowed this one from another project. I need to give credit for that
bg
background:${1:${2:transparent} image-url('${3:image.png}') ${4:left} ${5:top} ${6:no-repeat}};";
cols
@include column-count(3);
@include column-gap($padding);
hover
&:focus,
&:hover{
${1:this}
}
bshad
@include box-shadow(${1:rgba(black, 0.3)} ${2:0px} ${3:0px} ${4:0px});
tshad
@include text-shadow(${1:rgba(black, 0.3)} ${2:0px} ${3:0px} ${4:0px});
bobox
@include box-sizing(border-box);
Going to be adding more as I go. I'm interested in working with someone to grow this to more of the Compass and SCSS mixins.
###Cheers