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

Equal Sign Removed from Filter Properties Alpha Opacity Assignment #599

Closed
mtpultz opened this issue Dec 27, 2014 · 0 comments
Closed

Equal Sign Removed from Filter Properties Alpha Opacity Assignment #599

mtpultz opened this issue Dec 27, 2014 · 0 comments

Comments

@mtpultz
Copy link

mtpultz commented Dec 27, 2014

Beautifying some CSS for the jQuery Colorbox plugin so I could customize it I noticed my Sass build starts to fail, and indicates that there is an issue on the line with a filter property where the assigned alpha property opacity values being set to 90 has the equal sign removed.

// BEFORE LINTING
#cboxOverlay{background:url(images/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
// AFTER LINTING
#cboxOverlay {
    background: url(images/overlay.png) repeat 0 0;
    opacity: 0.9;
    filter: alpha(opacity 90);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants