A set of useful mixins for LESS CSS
lesselements.com
A set of useful mixins for LESS CSS
1–10 of 12 posts
Re: A set of useful mixins for LESS CSS
#2What was wrong with Preboot[1]?
Re: A set of useful mixins for LESS CSS
#3Re: A set of useful mixins for LESS CSS
#4are there any popular mixins for sass?
Re: A set of useful mixins for LESS CSS
#5are there any popular mixins for sass?
Re: A set of useful mixins for LESS CSS
#6are there any popular mixins for sass?
Check out http://compass-style.org/reference/compass/ . It has everything the two others have + some more.
Re: A set of useful mixins for LESS CSS
#7Eh. What was wrong with Preboot[1]? [1]: http://markdotto.com/bootstrap/
I'm the creator of LESS Elements. Nothing is wrong with Bootstrap, it's just that when I wrote these mixins a while back Bootstrap wasn't yet available.
Re: A set of useful mixins for LESS CSS
#8 /* these two lines for saf 3-4 support */
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
/* all you need for Saf5, Chrome, Op, FF1+, IE9 */
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
That said, I like the project. Just clarifying this. :)EDIT: given the spec'd shorthand syntax, your shorthand for unique corners seems to conflict `(5px, 0, 0, 5px)`. I'd suggest changing that.
Re: A set of useful mixins for LESS CSS
#9Re: A set of useful mixins for LESS CSS
#10fadeyev, your first example is a little misleading. Only Safari 3-4 required the border-radius syntax to be declared individually. So really this is how it goes: /* these two lines for saf 3-4 support */ -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; /* all you need for Saf5, Chrome, Op, FF1+, IE9 */ -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; That said, I like the project…