From e03da85ba70b15f5e76fc950a56a0bc1ef6ba169 Mon Sep 17 00:00:00 2001 From: Aaron Gibralter Date: Sat, 27 Feb 2010 18:16:44 -0500 Subject: [PATCH] Making sure there are no bullets in all browsers. Safari, for example, let's `list-style-image: ...` win out over `list-style-type: none`. --- .../compass/stylesheets/compass/utilities/lists/_bullets.sass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass b/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass index fce89824..ebe24085 100644 --- a/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass +++ b/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.sass @@ -1,10 +1,12 @@ // Turn off the bullet for an element of a list =no-bullet + list-style-image: none list-style-type: none margin-left: 0px // turns off the bullets for an entire list =no-bullets + list-style: none li +no-bullet