summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/css/extend-selector-in-different-levels.css
blob: 4de05d8d828b40f8f0165da3f558400b2901d749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.test .middle .error, .test .middle .seriousError {
	border: 1px #f00;
	background-color: #fdd; 
}
.test .seriousError {
	border-width: 3px; 
}

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