Skip to content

Commit

Permalink
Removed IE7- hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Ferdinandi committed Oct 21, 2013
1 parent 7fbfe71 commit d741f2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Kraken is an open-source project. [Learn how you can get involved.](http://cferd
* [Added `tab-size` property to the `pre` element](https://github.com/cferdinandi/kraken/issues/12).
* [Added `word-break` property to links](https://github.com/cferdinandi/kraken/issues/5) to fix convert overflow issues.
* [Updated CSS Reset](https://github.com/cferdinandi/kraken/issues/8) to incorporate some improvements to Normalize.css.
* [Removed IE7- hacks](https://github.com/cferdinandi/kraken/issues/7).
* v2.4 (October 18, 2013)
* Fixed [`input-inline`](https://github.com/cferdinandi/kraken/issues/6).
* v2.3 (August 24,2013)
Expand Down
8 changes: 4 additions & 4 deletions kraken.css
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ a img {
a:hover img {
border: none;
background: none;
opacity:0.8;
filter:alpha(opacity=80);
opacity: 0.8;
filter: alpha(opacity=80);
}


Expand Down Expand Up @@ -436,7 +436,8 @@ em {
}

/* Subscript & Superscript */
sub, sup {
sub,
sup {
position: relative;
font-size: 85%;
font-weight: bold;
Expand Down Expand Up @@ -735,7 +736,6 @@ select:focus {
speak: none;
font-weight: normal;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
*/
Expand Down

0 comments on commit d741f2f

Please sign in to comment.