Selector

class Selector(val built: Seq[String]) extends PseudoSelectors[Selector]

Lets you chain pseudo-selectors e.g. hover.visited and have it properly translate into :hover:visited when rendered.

Companion:
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def >(other: Selector): Selector

Combine these two selectors using the > child selector, which prevents cascading.

Combine these two selectors using the > child selector, which prevents cascading.

Builds this selector into a StyleTree using the given StyleSheetFrags. This doesn't create a Cls on its own, but can be used as part of the definition of an outer Cls.

Builds this selector into a StyleTree using the given StyleSheetFrags. This doesn't create a Cls on its own, but can be used as part of the definition of an outer Cls.

def pseudoExtend(s: String): Selector
def ~(other: Selector): Selector

Combine these two selectors, allowing the right-hand-side selector to cascade.

Combine these two selectors, allowing the right-hand-side selector to cascade.

Inherited methods

Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors
Inherited from:
PseudoSelectors

Concrete fields

val built: Seq[String]