diff --git a/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss b/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss index f0eeee61..fca9b2f6 100644 --- a/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +++ b/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss @@ -24,7 +24,10 @@ $default-box-shadow-spread : false !default; // The default shadow inset: inset or false (for standard shadow). $default-box-shadow-inset : false !default; -// Provides cross-browser for Webkit, Gecko, and CSS3 box shadows when one or more box shadows are needed. +// Provides cross-browser for Webkit, Gecko, and CSS3 box shadows when one or more box +// shadows are needed. +// Each shadow argument should adhere to the standard css3 syntax for the +// box-shadow property. @mixin box-shadow( $shadow-1 : default, $shadow-2 : false, diff --git a/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss b/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss index ab3cb0bc..97ee2c4c 100644 --- a/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +++ b/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss @@ -9,6 +9,8 @@ $default-text-shadow-v-offset: 0px !default; $default-text-shadow-blur: 1px !default; // Provides cross-browser text shadows when one or more shadows are needed. +// Each shadow argument should adhere to the standard css3 syntax for the +// text-shadow property. @mixin text-shadow( $shadow-1 : default, $shadow-2 : false,