Sass nth-child nesting
Estoy refactorizando estos selectores de CSS a Sass:
#romtest .detailed th:nth-child(2),
#romtest .detailed th:nth-child(4),
#romtest .detailed th:nth-child(6),
#romtest .detailed td:nth-child(2),
#romtest .detailed td:nth-child(3),
#romtest .detailed td:nth-child(6),
#romtest .detailed td:nth-child(7),
#romtest .detailed td.last:nth-child(2),
#romtest .detailed td.last:nth-child(4) {
background:#e5e5e5;
}
... y se me ocurrió esto:
#romtest .detailed {
th:nth-child {
&(2), &(4), &(6) {
background:#e5e5e5;
}
}
td:nth-child {
&(2), &(3), &(6), &(7) {
background:#e5e5e5;
}
}
td.last:nth-child {
&(2), &(4) {
background:#e5e5e5;
}
}
}
Lamentablemente esto está lanzando un error:
CSSS no válido después de "&": esperado "{", era "(2), & (4), & (6) {"
También sé que esto podría ser mejor porque soy:
repitiendo el color de fondorepetir números - es decir (2) y (6)¿Cómo debo refactorizar estos selectores?