That one .vertical(#f5f5f5, #f9f9f9)
is what Less calls mixin prametric, which is like a function that gets parameters. It needs to be declared somewhere. I imagine you’re looking for something like this:
.vertical(@cor1, @cor2) {
/* Fallback (could use .jpg/.png alternatively) */
background-color: @cor1;
/* SVG fallback for IE 9 (could be data URI, or could use filter) */
background-image: url(fallback-gradient.svg);
/* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
background-image:
-webkit-gradient(linear, left top, left bottom, from(@cor1), to(@cor2));
/* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
background-image:
-webkit-linear-gradient(top, @cor1, @cor2);
/* Firefox 3.6 - 15 */
background-image:
-moz-linear-gradient(top, @cor1, @cor2);
/* Opera 11.1 - 12 */
background-image:
-o-linear-gradient(top, @cor1, @cor2);
/* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
background-image:
linear-gradient(to bottom, @cor1, @cor2);
}
Multiple browser compatibility based on CSS Tricks
Could it be a syntax error in your LESS? You can post the snippet of the file where this rule appears?
– bfavaretto
I edited the question, thank you for your attention.
– André Ventura
What is the intention with
#gradient > .vertical(#f5f5f5, #f9f9f9);
? What is the CSS you expect to generate?– bfavaretto
to be honest I’m not sure, so I can not solve alone, is a code that already came ready in Silder for Bootstrap (bootstrap.slider).
– André Ventura
What you got there is a parametric mixin. You need to have a definition of this
.vertical(@cor1; @cor2)
somewhere.– bfavaretto
Thanks man, help me :)
– André Ventura
@bfavaretto does not pay to put as a response? :)
– Maicon Carraro
@Maiconcarraro Feito. I hope this saves the closing question
– bfavaretto