今さらながら、今日初めて知ったクラスセレクタの記法・・・
div.foo.var { .... }
SASSの拡張シンタックスかと思ったら、普通にCSSの仕様にあった・・・。マジか。
CSS3 Selectors - 6.4. Class selectors
The following rule matches any P element whose class attribute has been assigned a list of whitespace-separated values that includes both pastoral and marine: p.pastoral.marine { color: green } This rule matches when class="pastoral blue aqua marine" but does not match for class="pastoral blue".
foo と var がclassに含まれるdivにマッチしますよ。