Removed resetting of :focus style from Compass global-reset mixin

This commit is contained in:
B Mathis 2010-05-01 15:06:56 -05:00
parent 74bfb0eccb
commit 59baa051a1
3 changed files with 5 additions and 5 deletions

View File

@ -7,6 +7,11 @@ layout: article
COMPASS CHANGELOG
=================
0.10.0.rc5 (Unreleased)
---------------------------
* 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)
---------------------------
* Lot of new docs can be found at: [http://compass-style.org/docs/](http://compass-style.org/docs/).

View File

@ -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 {

View File

@ -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;