diff --git a/doc-src/content/CHANGELOG.markdown b/doc-src/content/CHANGELOG.markdown index c6d95e31..5de8e98b 100644 --- a/doc-src/content/CHANGELOG.markdown +++ b/doc-src/content/CHANGELOG.markdown @@ -10,7 +10,12 @@ COMPASS CHANGELOG 0.10.0.rc5 (Unreleased) ----------------------- -* [Rails] The default location for compass extensions has moved from `vendor/plugins/compass/extensions` to `vendor/plugins/compass_extensions`. +* [Rails] The default location for compass extensions has moved from + `vendor/plugins/compass/extensions` to `vendor/plugins/compass_extensions`. +* Global reset no longer automatically resets the *:focus. This allows browsers to + use their default :focus styles which is considered a best practice. If you wish + to reset :focus styles simply include this in your stylesheets: + `*:focus { @include reset-focus; }` 0.10.0.rc4 (April 27, 2010) --------------------------- diff --git a/frameworks/compass/stylesheets/compass/reset/_utilities.scss b/frameworks/compass/stylesheets/compass/reset/_utilities.scss index 7e58fbeb..e68eba2f 100644 --- a/frameworks/compass/stylesheets/compass/reset/_utilities.scss +++ b/frameworks/compass/stylesheets/compass/reset/_utilities.scss @@ -14,8 +14,6 @@ table, caption, tbody, tfoot, thead, tr, th, td { @include reset-box-model; @include reset-font; } - *:focus { - @include reset-focus; } body { @include reset-body; } ol, ul { diff --git a/test/fixtures/stylesheets/compass/css/reset.css b/test/fixtures/stylesheets/compass/css/reset.css index 86328e21..d1ad4a43 100644 --- a/test/fixtures/stylesheets/compass/css/reset.css +++ b/test/fixtures/stylesheets/compass/css/reset.css @@ -16,9 +16,6 @@ table, caption, tbody, tfoot, thead, tr, th, td { font-family: inherit; vertical-align: baseline; } -*:focus { - outline: 0; } - body { line-height: 1; color: black;