Q
Version: 1.0.1
Source on Github

Compass Bullets

This file can be imported using: @import "compass/typography/lists/bullets"

Mixins

view source

=no-bullet
  list-style-image: none
  list-style-type: none
  margin-left: 0
@mixin no-bullet {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
}

Turn off the bullet for an element of a list

view source

=no-bullets
  list-style: none
  li
    +no-bullet
@mixin no-bullets {
  list-style: none;
  li {
    @include no-bullet;
  }
}

turns off the bullets for an entire list

view source

=pretty-bullets($bullet-icon, $width: image-width($bullet-icon), $height: image-height($bullet-icon), $line-height: 18px, $padding: 14px)
  margin-left: 0
  li
    padding-left: $padding
    background: image-url($bullet-icon) no-repeat ($padding - $width) / 2 ($line-height - $height) / 2
    list-style-type: none
@mixin pretty-bullets($bullet-icon, $width: image-width($bullet-icon), $height: image-height($bullet-icon), $line-height: 18px, $padding: 14px) {
  margin-left: 0;
  li {
    padding-left: $padding;
    background: image-url($bullet-icon) no-repeat ($padding - $width) / 2 ($line-height - $height) / 2;
    list-style-type: none;
  }
}

Make a list(ul/ol) have an image bullet.

The mixin should be used like this for an icon that is 5x7:

ul.pretty
  +pretty-bullets("my-icon.png", 5px, 7px)

Additionally, if the image dimensions are not provided, The image dimensions will be extracted from the image itself.

ul.pretty
  +pretty-bullets("my-icon.png")