summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/remove-directive.scss
blob: ca9a19522f2f7f59a21fcbe75e8f564f49bc6109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$animals : platypus, rhinoceros, llama, duck, duck;
$remove : duck;

@each $animal in $animals {
	.animals .#{$animal}-icon {
		background-image: url('/images/#{$animal}.png');
	}
}

$exotic : remove($animals, $remove, space);

@each $animal in $exotic{
	.exotic-animals .#{$animal}-icon {
		background-image: url('/images/#{$animal}.png');
	}
}

$things : remove((ball,cube,duck), duck); 

@each $thing in $things{
	.#{$thing}{
		font-size: 12px;
	}
}