Last active
July 16, 2023 10:15
-
-
Save rattrayalex/2e4f934045aabc4caeeab249bd723285 to your computer and use it in GitHub Desktop.
Stylish CSS Theme for uncluttering Notion's text editor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[contenteditable][placeholder="Type '/' for commands"]:empty:after, | |
[contenteditable][placeholder="List"]:empty:after { | |
content: ' ' !important; | |
} | |
.notion-focusable[role="button"] > svg.plus { | |
display: none !important; | |
} | |
.notion-focusable[role="button"]:hover > svg.plus { | |
display: block !important; | |
} | |
.notion-focusable[role="button"] > svg.dragHandle { | |
display: none !important; | |
} | |
.notion-focusable[role="button"]:hover > svg.dragHandle { | |
display: block !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment