Object/Class

scalacss.internal

Pseudo

Related Docs: class Pseudo | package internal

Permalink

object Pseudo

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pseudo
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class AttrExists(name: String) extends Single with Product with Serializable

    Permalink

    Selects all elements with a name attribute.

  2. final case class AttrSelector(name: String, value: String, op: String) extends Single with Product with Serializable

    Permalink
  3. trait ChainOps[Out] extends AnyRef

    Permalink

    Trait providing a nice chaining DSL.

  4. final case class Composite extends Pseudo with Product with Serializable

    Permalink
  5. final case class Custom(cssValue: String, pseudoType: PseudoType) extends Single with Product with Serializable

    Permalink
  6. final case class Lang(language: String) extends Single with Product with Serializable

    Permalink

    Selects every <p> element with a lang attribute value starting with "it".

  7. final case class Not(selector: String) extends Single with Product with Serializable

    Permalink

    Selects every element that is not a <p> element.

  8. final case class NthChild(query: NthQuery) extends NthChildBase with Product with Serializable

    Permalink

    Selects every <p> element that is the second child of its parent.

  9. sealed abstract class NthChildBase extends Single

    Permalink
  10. final case class NthLastChild(query: NthQuery) extends NthChildBase with Product with Serializable

    Permalink

    Selects every <p> element that is the second child of its parent, counting from the last child.

  11. final case class NthLastOfType(query: NthQuery) extends NthChildBase with Product with Serializable

    Permalink

    Selects every <p> element that is the second <p> element of its parent, counting from the last child.

  12. final case class NthOfType(query: NthQuery) extends NthChildBase with Product with Serializable

    Permalink

    Selects every <p> element that is the second <p> element of its parent.

  13. type NthQuery = String

    Permalink
  14. type PseudoF = (ChainOps[Pseudo]) ⇒ Pseudo

    Permalink
  15. sealed abstract class Single extends Pseudo

    Permalink

    A single Pseudo instance.

    A single Pseudo instance. Not a composite.

    (Note: Not may have a nested value but is not a composite.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Active extends Single with Product with Serializable

    Permalink

    Selects the active link.

  5. object After extends Single with Product with Serializable

    Permalink

    Insert content after every <p> element.

  6. def Attr(name: String, value: String): AttrSelector

    Permalink

    Selects all elements with a name="value".

  7. def AttrContains(name: String, value: String): AttrSelector

    Permalink

    Selects all elements with a name containing the word value.

  8. def AttrEndsWith(name: String, value: String): AttrSelector

    Permalink

    Selects all elements with a name ends with value.

  9. def AttrStartsWith(name: String, value: String): AttrSelector

    Permalink

    Selects all elements with a name starting with value.

  10. object Before extends Single with Product with Serializable

    Permalink

    Insert content before every <p> element.

  11. object ChainOps extends ChainOps[Pseudo]

    Permalink
  12. object Checked extends Single with Product with Serializable

    Permalink

    Selects every checked <input> element.

  13. object Disabled extends Single with Product with Serializable

    Permalink

    Selects every disabled <input> element.

  14. object Empty extends Single with Product with Serializable

    Permalink

    Selects every <p> element that has no children.

  15. object Enabled extends Single with Product with Serializable

    Permalink

    Selects every enabled <input> element.

  16. object FirstChild extends Single with Product with Serializable

    Permalink

    Selects every <p> elements that is the first child of its parent.

  17. object FirstLetter extends Single with Product with Serializable

    Permalink

    Selects the first letter of every <p> element.

  18. object FirstLine extends Single with Product with Serializable

    Permalink

    Selects the first line of every <p> element.

  19. object FirstOfType extends Single with Product with Serializable

    Permalink

    Selects every <p> element that is the first <p> element of its parent.

  20. object Focus extends Single with Product with Serializable

    Permalink

    Selects the <input> element that has focus.

  21. object Hover extends Single with Product with Serializable

    Permalink

    Selects links on mouse over.

  22. object InRange extends Single with Product with Serializable

    Permalink

    Selects <input> elements with a value within a specified range.

  23. object Invalid extends Single with Product with Serializable

    Permalink

    Selects all <input> elements with an invalid value.

  24. object LastChild extends Single with Product with Serializable

    Permalink

    Selects every <p> elements that is the last child of its parent.

  25. object LastOfType extends Single with Product with Serializable

    Permalink

    Selects every <p> element that is the last <p> element of its parent.

  26. object Link extends Single with Product with Serializable

    Permalink

    Selects all unvisited link.

  27. object Not extends Serializable

    Permalink
  28. object NthChildBase

    Permalink
  29. object OnlyChild extends Single with Product with Serializable

    Permalink

    Selects every <p> element that is the only child of its parent.

  30. object OnlyOfType extends Single with Product with Serializable

    Permalink

    Selects every <p> element that is the only <p> element of its parent.

  31. object Optional extends Single with Product with Serializable

    Permalink

    Selects <input> elements with no "required" attribute.

  32. object OutOfRange extends Single with Product with Serializable

    Permalink

    Selects <input> elements with a value outside a specified range.

  33. object ReadOnly extends Single with Product with Serializable

    Permalink

    Selects <input> elements with a "readonly" attribute specified.

  34. object ReadWrite extends Single with Product with Serializable

    Permalink

    Selects <input> elements with no "readonly" attribute.

  35. object Required extends Single with Product with Serializable

    Permalink

    Selects <input> elements with a "required" attribute specified.

  36. object Selection extends Single with Product with Serializable

    Permalink

    Selects the portion of an element that is selected by a user .

  37. object Target extends Single with Product with Serializable

    Permalink

    Selects the current active #news element (clicked on a URL containing that anchor name).

  38. object Valid extends Single with Product with Serializable

    Permalink

    Selects all <input> elements with a valid value.

  39. object Visited extends Single with Product with Serializable

    Permalink

    Selects all visited link.

  40. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  41. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  43. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  44. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  45. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  46. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  47. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  48. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  49. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  50. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  51. implicit val order: Ordering[Single]

    Permalink
  52. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  53. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  54. implicit def univEq: UnivEq[Single]

    Permalink
  55. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped