Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

alertPulse incorrect #3

Open
stierler opened this issue Feb 17, 2017 · 0 comments
Open

alertPulse incorrect #3

stierler opened this issue Feb 17, 2017 · 0 comments

Comments

@stierler
Copy link

I was just browsing, came across this and and noticed:

@-webkit-keyframes alertPulse {
    0% {background-color: #9A2727; opacity: 1;}
    50% {opacity: red; opacity: 0.75; }
    100% {opacity: #9A2727; opacity: 1;}
}

The 50% and 100% attributes reference opacity twice, whereas the first parameter should be background-color

Should be:

@-webkit-keyframes alertPulse {
    0% {background-color: #9A2727; opacity: 1;}
    50% {background-color: red; opacity: 0.75; }
    100% {background-color: #9A2727; opacity: 1;}
}

cheers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant