Important changes to Tiny Cloud pricing > Find out more

Inlite theme

Theme that renders a light weight UI for inline editing.

Contribute to this page

The inlite theme is responsible for rendering the editor lightweight inline mode. The current default theme is called modern this is an optional more lightweight distraction-free UI for the editor.

Example:
tinymce.init({
    selector: "div.tinymce",
    theme: "inlite",
    inline: true
});

Theme specific controls

quicklink

Lets you quickly insert/edit links inline.

Example:
tinymce.init({
    selector: "div.tinymce",
    theme: "inlite",
    inline: true,
    selection_toolbar: 'bold italic | quicklink h2 h3 blockquote'
});

quickimage

Lets you quickly insert images from the local machine into the editor. These can then be automatically uploaded if you configure image uploading.

Example:
tinymce.init({
    selector: "div.tinymce",
    theme: "inlite",
    inline: true,
    insert_toolbar: 'quickimage quicktable'
});

quicktable

Lets you quickly insert a table 2x2 with 100% width.

Example:
tinymce.init({
    selector: "div.tinymce",
    theme: "inlite",
    inline: true,
    insert_toolbar: 'quickimage quicktable'
});

Related configuration options

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.