From e12eb7b6d98f37bdf89f0fee3852d2e3835e758d Mon Sep 17 00:00:00 2001 From: Michael Rykov Date: Wed, 5 Oct 2011 00:46:18 -0700 Subject: [PATCH] Fix to remove prefix to -moz-user-select values --- .../compass/stylesheets/compass/css3/_user-interface.scss | 7 +------ test/fixtures/stylesheets/compass/css/user-interface.css | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_user-interface.scss b/frameworks/compass/stylesheets/compass/css3/_user-interface.scss index 96a81625..7dbd3414 100644 --- a/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +++ b/frameworks/compass/stylesheets/compass/css3/_user-interface.scss @@ -13,12 +13,7 @@ @mixin user-select($select) { $select: unquote($select); - // Mozilla needs prefix on both the -moz-property and the -moz-value - @include experimental(user-select, -moz-#{$select}, - -moz, not -webkit, not -o, not -ms, not -khtml, not official - ); - // others do not @include experimental(user-select, $select, - not -moz, -webkit, not -o, not -ms, -khtml, official + -moz, -webkit, not -o, not -ms, -khtml, official ); } \ No newline at end of file diff --git a/test/fixtures/stylesheets/compass/css/user-interface.css b/test/fixtures/stylesheets/compass/css/user-interface.css index 8b1a1aae..32647ab6 100644 --- a/test/fixtures/stylesheets/compass/css/user-interface.css +++ b/test/fixtures/stylesheets/compass/css/user-interface.css @@ -1,5 +1,5 @@ .user-select { - -moz-user-select: -moz-none; + -moz-user-select: none; -webkit-user-select: none; -khtml-user-select: none; user-select: none; }