[][src]Module rsass::selectors

This module contains types for the selectors of a rule.

Basically, in a rule like p.foo, .foo p { some: thing; } there is a Selectors object which contains two Selector objects, one for p.foo and one for .foo p.

This may change to a something like a tree of operators with leafs of simple selectors in some future release.

Structs

Selector

A css (or sass) selector.

Selectors

A full set of selectors

Enums

SelectorPart

A selector consist of a sequence of these parts.