Trilium Frontend API
    Preparing search index...

    Interface StyleSheet

    An object implementing the StyleSheet interface represents a single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface.

    MDN Reference

    interface StyleSheet {
        disabled: boolean;
        href: string;
        ownerNode: Element | ProcessingInstruction;
        parentStyleSheet: CSSStyleSheet;
        title: string;
        type: string;
        get media(): MediaList;
        set media(mediaText: string): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    disabled: boolean

    The disabled property of the StyleSheet interface determines whether the style sheet is prevented from applying to the document.

    MDN Reference

    href: string

    The href property of the StyleSheet interface returns the location of the style sheet.

    MDN Reference

    ownerNode: Element | ProcessingInstruction

    The ownerNode property of the StyleSheet interface returns the node that associates this style sheet with the document.

    MDN Reference

    parentStyleSheet: CSSStyleSheet

    The parentStyleSheet property of the StyleSheet interface returns the style sheet, if any, that is including the given style sheet.

    MDN Reference

    title: string

    The title property of the StyleSheet interface returns the advisory title of the current style sheet.

    MDN Reference

    type: string

    The type property of the StyleSheet interface specifies the style sheet language for the given style sheet.

    MDN Reference

    Accessors

    • get media(): MediaList

      The read-only media property of the StyleSheet interface contains a MediaList object representing the intended destination media for style information.

      MDN Reference

      Returns MediaList

    • set media(mediaText: string): void

      Parameters

      • mediaText: string

      Returns void