Removed resetting of :focus style from Compass global-reset mixin
This commit is contained in:
parent
74bfb0eccb
commit
59baa051a1
@ -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/).
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user