Skip to content

Printable Standard Notes by LinuxLefty

Screenshot of Printable Standard Notes

Details

AuthorLinuxLefty

LicenseMIT

Categorystandardnotes

Created

Updated

Code size936 B

Code checksum5436af8c

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

This a print stylesheet which hides navigation, etc so that notes are printable in the browser

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Printable Standard Notes
@version      20250223.10.57
@namespace    https://userstyles.world/user/LinuxLefty
@description  This a print stylesheet which hides navigation, etc so that notes are printable in the browser
@author       LinuxLefty
@license      MIT
==/UserStyle== */

@-moz-document url-prefix("https://app.standardnotes.com/") {
@media print {
    #items-column,
    #editor-title-bar,
    #super-mobile-toolbar,
    #footer-bar,
    #navigation {
        display: none;
    }
    .grid,
    .flex,
    .section.editor,
    #editor-content,
    #blocks-editor {
        display: block;
    }
    * {
        overflow: visible !important;
    }
    .editor .Lexical__h2 {
        margin-top: 1em;
    }
    .editor .Lexical__h3,
    .editor blockquote {
        margin-top: 0.5em;
    }
    h1 + h2,
    h2 + h3,
    h1 + p,
    h2 + p,
    h3 + p {
        page-break-before: avoid;
    }
}
}

Reviews

No reviews yet.