0.0
No commit activity in last 3 years
No release in over 3 years
Generates sprites on the fly by using `background: sprite-image("sprites/logo.png")`. No Photoshop, no RMagick, no Rake task, save your time and have a lemonade.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.8.7
~> 1.3.0

Runtime

 Project Readme

Lemonade—On the fly sprite generator for Sass/Compass

Please read my blog post on CSS sprites for Sass/Compass or have a look at the presentation 3 steps to make better and faster frontends (slides 23—37).

Usage (SCSS or Sass):

.fanta {
  background: sprite-image("bottles/fanta.png");
}
.seven-up {
  background: sprite-image("bottles/seven-up.png");
}
.coke {
  background: sprite-image("cans/coke.png") no-repeat;
}

Output (CSS):

.fanta {
  background: url('/images/bottles.png');
}
.seven-up {
  background: url('/images/bottles.png') 0 -50px;
}
.coke {
  background: url('/images/cans.png') no-repeat;
}

Background

  • Generates a sprite image for each folder (e. g. “bottles” and “cans”)
  • Sets the background position (unless “0 0”)
  • It uses the images_dir defined by Compass (just like image-url())
  • No Rake task needed
  • No additional classes
  • No configuration
  • No RMagick required (but full support for PNG)

Installation

(1)

gem install lemonade

(2) Now open your config.rb (Compass cofiguration file) and add one line after this comment:

# Require any additional compass plugins here.
require "lemonade"

Current State

  • Compass standalone finished
  • Rails Sass integration finished
  • Staticmatic integration finished
  • Haml integration (with “:sass” filter): work in progress

Options

You can pass an additional background position. It will be added to the calculated position:

.seven-up {
  background: sprite-image("bottles/seven-up.png", 12px, 3px);
}

Output (assuming the calculated position would be “0 -50px” as shown above):

.seven-up {
  background: url('/images/bottles.png') 12px -47px;
}

If you need empty space around the current image, this will add 20px transparent space above and below.

.seven-up {
  background: sprite-image("bottles/seven-up.png", 0, 0, 20px);
}

This one adds 20px above, 30px below:

.seven-up {
  background: sprite-image("bottles/seven-up.png", 0, 0, 20px, 30px);
}

Right aligned images are possible:

.seven-up {
  background: sprite-image("bottles/seven-up.png", 100%, 4px);
}

The original image will be placed on the right side of the sprite image. Use this, if you have a link with an arrow on the right side (like Apple).

For 1 pixel wide type repeats, you can fill out the image so repeat-x will work.

  background: sprite-image("bottles/vertical-orange.png", 0, 0, 0, 0, true);

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Rails 3 Troubleshooting

If you want to use Lemonade with Rails 3 Please use this compass and haml versions in your Gemfile

gem 'compass',     '~> 0.10.2'
gem 'haml-edge',   '~> 3.1.49', :require => 'haml'

Contributors

Copyright

Copyright (c) 2010 Nico Hagenburger. See MIT-LICENSE for details. Follow me on twitter.