Skip to content

Instantly share code, notes, and snippets.

@hlb
Created March 30, 2011 08:26
Show Gist options
  • Save hlb/894060 to your computer and use it in GitHub Desktop.
Save hlb/894060 to your computer and use it in GitHub Desktop.
.some-class {
background: url('/images/xxx/icon-da5590e331.png') 20px -28px no-repeat; }
.some-class.current {
background: url('/images/xxx/icon-da5590e331.png') 20px -16px no-repeat; }
.icon-sprite {
background: url('/images/xxx/icon-d47556ad78.png') no-repeat; }
.some-class {
background: url('/images/xxx/icon-da5590e331.png') 20px -28px no-repeat; }
.some-class.current {
background: url('/images/xxx/icon-da5590e331.png') 20px -16px no-repeat; }
// with compass 0.11.beta.5
@import "xxx/icon/*.png";
$icons: sprite-map("xxx/icon/*.png");
.some-class {
background: sprite($icons, arrow, 20px) no-repeat;
&.current {
background: sprite($icons, arrow-current, 20px) no-repeat;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment