summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/extend-selector-in-different-levels.scss
blob: 977ead8d62a917953d3708fe3512526107e56fe5 (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
25
26
.test{
	.middle{
 		.error {
  			border: 1px #f00;
  			background-color: #fdd;
		}
	}

 	.seriousError {
  		@extend .error;
  		border-width: 3px;
	}
}

.test1{
 	.error1 {
  		border: 1px #f00;
  		background-color: #fdd;
	}
	.middle1{
 		.seriousError1 {
  			@extend .error1;
  			border-width: 3px;
		}
	}
}