[CSS3] The box-shadow $spread value now defaults to using the browser default instead of 0.

Since the browser default is 0, you shouldn't see any visible change.
Set $default-box-shadow-spread to 0 if you prefer the older behavior.
This commit is contained in:
Chris Eppstein 2010-11-01 09:22:09 -07:00
parent 66dd1ebfb3
commit 0374d8e230
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@ COMPASS CHANGELOG
* Compass Validator has been upgraded and fine-tuned. It is now using the "css3" profile
to validate and provides a more consistent UI with other compass commands. To upgrade:
`gem install compass-validator`
* [CSS3] The box-shadow `$spread` value now defaults to using the browser default instead of 0.
Set $default-box-shadow-spread to 0 if you prefer the older behavior. Since the browser is supposed
to default to 0, you should see no change except less CSS output.
0.10.6 (10/11/2010)
-------------------

View File

@ -18,7 +18,7 @@ $default-box-shadow-v-offset: 1px !default;
$default-box-shadow-blur: 5px !default;
// The default spread length.
$default-box-shadow-spread : 0 !default;
$default-box-shadow-spread : false !default;
// The default shadow instet: inset or false (for standard shadow).
$default-box-shadow-inset : false !default;