From 994e0e33355900e10057160a3e7311522afd1b97 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Mon, 30 Aug 2010 16:13:17 -0600 Subject: [PATCH] official gradients still need image declared --- frameworks/compass/stylesheets/compass/css3/_gradient.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_gradient.scss b/frameworks/compass/stylesheets/compass/css3/_gradient.scss index dd5e36be..b002ac62 100644 --- a/frameworks/compass/stylesheets/compass/css3/_gradient.scss +++ b/frameworks/compass/stylesheets/compass/css3/_gradient.scss @@ -44,7 +44,7 @@ @if $experimental-support-for-mozilla { background-image: #{$background}-moz-linear-gradient($start, $color-stops); } - background-image: linear-gradient($start, $color-stops); + background-image: #{$background}linear-gradient($start, $color-stops); } // Due to limitation's of webkit, the radial gradient mixin works best if you use @@ -78,5 +78,5 @@ @if $experimental-support-for-mozilla { background-image: #{$background}-moz-radial-gradient($center-position, circle, $color-stops); } - background-image: radial-gradient($center-position, circle, $color-stops); + background-image: #{$background}radial-gradient($center-position, circle, $color-stops); } \ No newline at end of file