Skip to content

Commit

Permalink
Fix bug where color is declared instead of background-color.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmrs committed Dec 14, 2016
1 parent 580f953 commit 951acdc
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 74 deletions.
72 changes: 36 additions & 36 deletions css/tachyons.css
Original file line number Diff line number Diff line change
Expand Up @@ -1315,42 +1315,42 @@ code, .code { font-family: Consolas, monaco, monospace; }
.hover-bg-white:focus { background-color: #fff; }
.hover-bg-transparent:hover { background-color: transparent; }
.hover-bg-transparent:focus { background-color: transparent; }
.hover-bg-black-90:hover { color: rgba( 0, 0, 0, .9 ); }
.hover-bg-black-90:focus { color: rgba( 0, 0, 0, .9 ); }
.hover-bg-black-80:hover { color: rgba( 0, 0, 0, .8 ); }
.hover-bg-black-80:focus { color: rgba( 0, 0, 0, .8 ); }
.hover-bg-black-70:hover { color: rgba( 0, 0, 0, .7 ); }
.hover-bg-black-70:focus { color: rgba( 0, 0, 0, .7 ); }
.hover-bg-black-60:hover { color: rgba( 0, 0, 0, .6 ); }
.hover-bg-black-60:focus { color: rgba( 0, 0, 0, .6 ); }
.hover-bg-black-50:hover { color: rgba( 0, 0, 0, .5 ); }
.hover-bg-black-50:focus { color: rgba( 0, 0, 0, .5 ); }
.hover-bg-black-40:hover { color: rgba( 0, 0, 0, .4 ); }
.hover-bg-black-40:focus { color: rgba( 0, 0, 0, .4 ); }
.hover-bg-black-30:hover { color: rgba( 0, 0, 0, .3 ); }
.hover-bg-black-30:focus { color: rgba( 0, 0, 0, .3 ); }
.hover-bg-black-20:hover { color: rgba( 0, 0, 0, .2 ); }
.hover-bg-black-20:focus { color: rgba( 0, 0, 0, .2 ); }
.hover-bg-black-10:hover { color: rgba( 0, 0, 0, .1 ); }
.hover-bg-black-10:focus { color: rgba( 0, 0, 0, .1 ); }
.hover-bg-white-90:hover { color: rgba( 255, 255, 255, .9 ); }
.hover-bg-white-90:focus { color: rgba( 255, 255, 255, .9 ); }
.hover-bg-white-80:hover { color: rgba( 255, 255, 255, .8 ); }
.hover-bg-white-80:focus { color: rgba( 255, 255, 255, .8 ); }
.hover-bg-white-70:hover { color: rgba( 255, 255, 255, .7 ); }
.hover-bg-white-70:focus { color: rgba( 255, 255, 255, .7 ); }
.hover-bg-white-60:hover { color: rgba( 255, 255, 255, .6 ); }
.hover-bg-white-60:focus { color: rgba( 255, 255, 255, .6 ); }
.hover-bg-white-50:hover { color: rgba( 255, 255, 255, .5 ); }
.hover-bg-white-50:focus { color: rgba( 255, 255, 255, .5 ); }
.hover-bg-white-40:hover { color: rgba( 255, 255, 255, .4 ); }
.hover-bg-white-40:focus { color: rgba( 255, 255, 255, .4 ); }
.hover-bg-white-30:hover { color: rgba( 255, 255, 255, .3 ); }
.hover-bg-white-30:focus { color: rgba( 255, 255, 255, .3 ); }
.hover-bg-white-20:hover { color: rgba( 255, 255, 255, .2 ); }
.hover-bg-white-20:focus { color: rgba( 255, 255, 255, .2 ); }
.hover-bg-white-10:hover { color: rgba( 255, 255, 255, .1 ); }
.hover-bg-white-10:focus { color: rgba( 255, 255, 255, .1 ); }
.hover-bg-black-90:hover { background-color: rgba( 0, 0, 0, .9 ); }
.hover-bg-black-90:focus { background-color: rgba( 0, 0, 0, .9 ); }
.hover-bg-black-80:hover { background-color: rgba( 0, 0, 0, .8 ); }
.hover-bg-black-80:focus { background-color: rgba( 0, 0, 0, .8 ); }
.hover-bg-black-70:hover { background-color: rgba( 0, 0, 0, .7 ); }
.hover-bg-black-70:focus { background-color: rgba( 0, 0, 0, .7 ); }
.hover-bg-black-60:hover { background-color: rgba( 0, 0, 0, .6 ); }
.hover-bg-black-60:focus { background-color: rgba( 0, 0, 0, .6 ); }
.hover-bg-black-50:hover { background-color: rgba( 0, 0, 0, .5 ); }
.hover-bg-black-50:focus { background-color: rgba( 0, 0, 0, .5 ); }
.hover-bg-black-40:hover { background-color: rgba( 0, 0, 0, .4 ); }
.hover-bg-black-40:focus { background-color: rgba( 0, 0, 0, .4 ); }
.hover-bg-black-30:hover { background-color: rgba( 0, 0, 0, .3 ); }
.hover-bg-black-30:focus { background-color: rgba( 0, 0, 0, .3 ); }
.hover-bg-black-20:hover { background-color: rgba( 0, 0, 0, .2 ); }
.hover-bg-black-20:focus { background-color: rgba( 0, 0, 0, .2 ); }
.hover-bg-black-10:hover { background-color: rgba( 0, 0, 0, .1 ); }
.hover-bg-black-10:focus { background-color: rgba( 0, 0, 0, .1 ); }
.hover-bg-white-90:hover { background-color: rgba( 255, 255, 255, .9 ); }
.hover-bg-white-90:focus { background-color: rgba( 255, 255, 255, .9 ); }
.hover-bg-white-80:hover { background-color: rgba( 255, 255, 255, .8 ); }
.hover-bg-white-80:focus { background-color: rgba( 255, 255, 255, .8 ); }
.hover-bg-white-70:hover { background-color: rgba( 255, 255, 255, .7 ); }
.hover-bg-white-70:focus { background-color: rgba( 255, 255, 255, .7 ); }
.hover-bg-white-60:hover { background-color: rgba( 255, 255, 255, .6 ); }
.hover-bg-white-60:focus { background-color: rgba( 255, 255, 255, .6 ); }
.hover-bg-white-50:hover { background-color: rgba( 255, 255, 255, .5 ); }
.hover-bg-white-50:focus { background-color: rgba( 255, 255, 255, .5 ); }
.hover-bg-white-40:hover { background-color: rgba( 255, 255, 255, .4 ); }
.hover-bg-white-40:focus { background-color: rgba( 255, 255, 255, .4 ); }
.hover-bg-white-30:hover { background-color: rgba( 255, 255, 255, .3 ); }
.hover-bg-white-30:focus { background-color: rgba( 255, 255, 255, .3 ); }
.hover-bg-white-20:hover { background-color: rgba( 255, 255, 255, .2 ); }
.hover-bg-white-20:focus { background-color: rgba( 255, 255, 255, .2 ); }
.hover-bg-white-10:hover { background-color: rgba( 255, 255, 255, .1 ); }
.hover-bg-white-10:focus { background-color: rgba( 255, 255, 255, .1 ); }
.hover-dark-red:hover { color: #e7040f; }
.hover-dark-red:focus { color: #e7040f; }
.hover-red:hover { color: #ff4136; }
Expand Down
2 changes: 1 addition & 1 deletion css/tachyons.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tachyons",
"version": "4.6.0",
"version": "4.6.1",
"description": "Functional CSS for humans",
"author": "mrmrs",
"style": "css/tachyons.min.css",
Expand Down
72 changes: 36 additions & 36 deletions src/_skins-pseudo.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,41 +31,41 @@
.hover-white:focus { color: var(--white); }

.hover-black-90:hover,
.hover-black-90:focus { color: var(--black-90); }
.hover-black-90:focus { color: var(--black-90); }
.hover-black-80:hover,
.hover-black-80:focus { color: var(--black-80); }
.hover-black-80:focus { color: var(--black-80); }
.hover-black-70:hover,
.hover-black-70:focus { color: var(--black-70); }
.hover-black-70:focus { color: var(--black-70); }
.hover-black-60:hover,
.hover-black-60:focus { color: var(--black-60); }
.hover-black-60:focus { color: var(--black-60); }
.hover-black-50:hover,
.hover-black-50:focus { color: var(--black-50); }
.hover-black-50:focus { color: var(--black-50); }
.hover-black-40:hover,
.hover-black-40:focus { color: var(--black-40); }
.hover-black-40:focus { color: var(--black-40); }
.hover-black-30:hover,
.hover-black-30:focus { color: var(--black-30); }
.hover-black-30:focus { color: var(--black-30); }
.hover-black-20:hover,
.hover-black-20:focus { color: var(--black-20); }
.hover-black-20:focus { color: var(--black-20); }
.hover-black-10:hover,
.hover-black-10:focus { color: var(--black-10); }
.hover-black-10:focus { color: var(--black-10); }
.hover-white-90:hover,
.hover-white-90:focus { color: var(--white-90); }
.hover-white-90:focus { color: var(--white-90); }
.hover-white-80:hover,
.hover-white-80:focus { color: var(--white-80); }
.hover-white-80:focus { color: var(--white-80); }
.hover-white-70:hover,
.hover-white-70:focus { color: var(--white-70); }
.hover-white-70:focus { color: var(--white-70); }
.hover-white-60:hover,
.hover-white-60:focus { color: var(--white-60); }
.hover-white-60:focus { color: var(--white-60); }
.hover-white-50:hover,
.hover-white-50:focus { color: var(--white-50); }
.hover-white-50:focus { color: var(--white-50); }
.hover-white-40:hover,
.hover-white-40:focus { color: var(--white-40); }
.hover-white-40:focus { color: var(--white-40); }
.hover-white-30:hover,
.hover-white-30:focus { color: var(--white-30); }
.hover-white-30:focus { color: var(--white-30); }
.hover-white-20:hover,
.hover-white-20:focus { color: var(--white-20); }
.hover-white-20:focus { color: var(--white-20); }
.hover-white-10:hover,
.hover-white-10:focus { color: var(--white-10); }
.hover-white-10:focus { color: var(--white-10); }

.hover-bg-black:hover,
.hover-bg-black:focus { background-color: var(--black); }
Expand Down Expand Up @@ -93,41 +93,41 @@
.hover-bg-transparent:focus { background-color: var(--transparent); }

.hover-bg-black-90:hover,
.hover-bg-black-90:focus { color: var(--black-90); }
.hover-bg-black-90:focus { background-color: var(--black-90); }
.hover-bg-black-80:hover,
.hover-bg-black-80:focus { color: var(--black-80); }
.hover-bg-black-80:focus { background-color: var(--black-80); }
.hover-bg-black-70:hover,
.hover-bg-black-70:focus { color: var(--black-70); }
.hover-bg-black-70:focus { background-color: var(--black-70); }
.hover-bg-black-60:hover,
.hover-bg-black-60:focus { color: var(--black-60); }
.hover-bg-black-60:focus { background-color: var(--black-60); }
.hover-bg-black-50:hover,
.hover-bg-black-50:focus { color: var(--black-50); }
.hover-bg-black-50:focus { background-color: var(--black-50); }
.hover-bg-black-40:hover,
.hover-bg-black-40:focus { color: var(--black-40); }
.hover-bg-black-40:focus { background-color: var(--black-40); }
.hover-bg-black-30:hover,
.hover-bg-black-30:focus { color: var(--black-30); }
.hover-bg-black-30:focus { background-color: var(--black-30); }
.hover-bg-black-20:hover,
.hover-bg-black-20:focus { color: var(--black-20); }
.hover-bg-black-20:focus { background-color: var(--black-20); }
.hover-bg-black-10:hover,
.hover-bg-black-10:focus { color: var(--black-10); }
.hover-bg-black-10:focus { background-color: var(--black-10); }
.hover-bg-white-90:hover,
.hover-bg-white-90:focus { color: var(--white-90); }
.hover-bg-white-90:focus { background-color: var(--white-90); }
.hover-bg-white-80:hover,
.hover-bg-white-80:focus { color: var(--white-80); }
.hover-bg-white-80:focus { background-color: var(--white-80); }
.hover-bg-white-70:hover,
.hover-bg-white-70:focus { color: var(--white-70); }
.hover-bg-white-70:focus { background-color: var(--white-70); }
.hover-bg-white-60:hover,
.hover-bg-white-60:focus { color: var(--white-60); }
.hover-bg-white-60:focus { background-color: var(--white-60); }
.hover-bg-white-50:hover,
.hover-bg-white-50:focus { color: var(--white-50); }
.hover-bg-white-50:focus { background-color: var(--white-50); }
.hover-bg-white-40:hover,
.hover-bg-white-40:focus { color: var(--white-40); }
.hover-bg-white-40:focus { background-color: var(--white-40); }
.hover-bg-white-30:hover,
.hover-bg-white-30:focus { color: var(--white-30); }
.hover-bg-white-30:focus { background-color: var(--white-30); }
.hover-bg-white-20:hover,
.hover-bg-white-20:focus { color: var(--white-20); }
.hover-bg-white-20:focus { background-color: var(--white-20); }
.hover-bg-white-10:hover,
.hover-bg-white-10:focus { color: var(--white-10); }
.hover-bg-white-10:focus { background-color: var(--white-10); }

.hover-dark-red:hover,
.hover-dark-red:focus { color: var(--dark-red); }
Expand Down

0 comments on commit 951acdc

Please sign in to comment.