Sha256: 6abe54ac16125f00510b6778d2a5286653cdd5f92e2e4f1a4775499e9fad1397

Contents?: true

Size: 970 Bytes

Versions: 65

Compression:

Stored size: 970 Bytes

Contents

// Turn off the bullet for an element of a list
@mixin no-bullet {
  list-style-image : none;
  list-style-type  : none;
  margin-left      : 0;
}

// turns off the bullets for an entire list
@mixin no-bullets {
  list-style: none;
  li { @include no-bullet; }
}

// 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")
//
@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;
  }
}

Version data entries

65 entries across 64 versions & 11 rubygems

Version Path
comixins-0.1.2 vendor/assets/stylesheets/compass/typography/lists/_bullets.scss
arcabouco-0.2.13 vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/typography/lists/_bullets.scss
egghead-styles-1.0.82 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.81 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.80 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.79 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.78 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.77 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.76 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.75 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.74 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
egghead-styles-1.0.73 app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
gem_2345-0.1.2 stylesheets/compass/typography/lists/_bullets.scss
ghost-manager-1.0.0 magneto/source/assets/bower_components/compass-mixins/lib/compass/typography/lists/_bullets.scss
compass-core-1.0.3 stylesheets/compass/typography/lists/_bullets.scss
compass-core-1.1.0.alpha.3 stylesheets/compass/typography/lists/_bullets.scss
compass-core-1.1.0.alpha.2 stylesheets/compass/typography/lists/_bullets.scss
compass-core-1.1.0.alpha.1 stylesheets/compass/typography/lists/_bullets.scss
compass-core-1.1.0.alpha.0 stylesheets/compass/typography/lists/_bullets.scss
compass-core-1.0.1 stylesheets/compass/typography/lists/_bullets.scss