Skip to content

Notion: Hide placeholder text by Sember

Details

AuthorSember

LicenseNo License

Categoryhttps://www.notion.so/

Created

Updated

Size283 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hides the placeholder "Press ‘space’ for AI, ‘/’ for commands…"

This targets all [contenteditable]:empty::after - probably removes all placeholder text in such fields. Just a quick and dirty solution for those who are annoyed by the placeholder showing up every line.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         HideNotionPlaceholder
@version      1.0
@namespace    https://userstyles.world/user/Sember

==/UserStyle== */

@-moz-document url-prefix("https://www.notion.so/"), domain("notion.site") {
[contenteditable]:empty::after {
  content: "  ";
}
}

Reviews

No reviews yet.