【发布时间】:2015-03-24 20:14:23
【问题描述】:
我有一个 sass mix-in 用于我的 Angular 待办事项列表,它可以在你进行时使应用的颜色变亮,1 为深蓝色,50 为白色。
如何使悬停使每个项目的背景变暗 50-60%?
我的混音:
@mixin shades-of-blue ( $count, $startcolor ) {
@for $i from 0 through $count {
$background-color: lighten( $startcolor, $i + $i );
.tasks:nth-of-type(#{$i}) {
background-color: $background-color;
}
}
}
@include shades-of-blue( 50, #2d89ef);
【问题讨论】: