Revert "removed the opacity: 0; and made it into 0.7"

This reverts commit 266946ef89.
This commit is contained in:
Ben Sperry
2013-10-06 15:57:23 -05:00
parent 266946ef89
commit ff02eaa362
3 changed files with 9 additions and 9 deletions

6
dist/ionic.css vendored
View File

@@ -2355,7 +2355,7 @@ a.button {
@keyframes fadein {
from {
opacity: 0.7; }
opacity: 0; }
to {
opacity: 1; } }
@@ -2363,13 +2363,13 @@ a.button {
@-webkit-keyframes fadein {
/* Safari and Chrome */
from {
opacity: 0.7; }
opacity: 0; }
to {
opacity: 1; } }
.fade-in {
opacity: 0.7;
opacity: 0;
animation: fadein 0.5s;
-webkit-animation: fadein 0.5s; }