Skip to content

Instantly share code, notes, and snippets.

@cbourdage
Created July 1, 2015 22:48
Show Gist options
  • Save cbourdage/92dd42385ec20678e2c0 to your computer and use it in GitHub Desktop.
Save cbourdage/92dd42385ec20678e2c0 to your computer and use it in GitHub Desktop.
ratings loop
.rating-box {
display: inline-block;
line-height: 1.8;
margin-right: 5px;
vertical-align: top;
.loop(@total, @i:1) when (@i =< (@total)) {
&.rating-@{i} {
.rating {
color: @gray-light;
margin-left: 0;
font-size: 22px;
vertical-align: middle;
&:nth-child(-n+@{i}) {
color: @brand-red;
}
}
}
.loop(5, (@i + 1)); // next iteration
}
.loop(5);
}
@XshockMEsaneX
Copy link

BOOM!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment