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

parse error mixin #628

Open
nikmauro opened this issue Jan 24, 2017 · 0 comments
Open

parse error mixin #628

nikmauro opened this issue Jan 24, 2017 · 0 comments

Comments

@nikmauro
Copy link

Mixin allows for any placeholder css rules.

.placeholder(@rules) {

    &::-webkit-input-placeholder {
        @rules();
    }
    &:-moz-placeholder {
        @rules();
    }
    &::-moz-placeholder {
        @rules();
    }
    &:-ms-input-placeholder {
        @rules();
    }
}
Example usage:

.placeholder({
    color: #0000FF;
    text-transform: uppercase;
});

fatal error: parse error: failed at );

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