Is it possible in Less CSS to get the parent of the parent?
I'm wondering if it's possible to do something like this:
#parent1 {
#parent2 {
#grandparent & & {
/* stuff */
}
}
}
to equate to:
#grandparent #parent1 #parent2 { /* stuff */ }
Thoughts?