Sha256: 3ca4baf9b7b286704d36d7ec8bf7eb0da901252a01ce25197ba0e7a596346361
Contents?: true
Size: 976 Bytes
Versions: 1
Compression:
Stored size: 976 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 : 0px; } // 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 0 + ($padding - $width) / 2 ($line-height - $height) / 2; list-style-type: none; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
compass-0.10.0.rc4 | frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss |