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

Missing parameter for radial gradients in mixins.less #7462

Closed
mac-cypher opened this issue Apr 2, 2013 · 1 comment
Closed

Missing parameter for radial gradients in mixins.less #7462

mac-cypher opened this issue Apr 2, 2013 · 1 comment
Labels
Milestone

Comments

@mac-cypher
Copy link

I miss the basic parameter for radial gradients in the mixins.less (line 472). All other parameters are available (with prefix like -webkit-, -moz- and -o-) but prefix-less parametre isn't there. Solution should look like this to get radial gradients work in IE10 for example.

.radial(@innerColor: #555, @outerColor: #333) {
    background-color: @outerColor;
    background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@innerColor), to(@outerColor));
    background-image: -webkit-radial-gradient(circle, @innerColor, @outerColor);
    background-image: -moz-radial-gradient(circle, @innerColor, @outerColor);
    background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
/* bof added parameter */
    background-image: radial-gradient(circle, @innerColor, @outerColor);
/* eof added parameter */
    background-repeat: no-repeat;
}

Thanks for attention.

@mdo
Copy link
Member

mdo commented Apr 2, 2013

Fixed in v3. Thanks!

@mdo mdo closed this as completed Apr 2, 2013
stempler pushed a commit to stempler/bootstrap that referenced this issue Apr 11, 2014
stempler pushed a commit to stempler/bootstrap that referenced this issue Nov 4, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants