Skip to content

Instantly share code, notes, and snippets.

@Daeraxa
Created September 16, 2021 12:36
Show Gist options
  • Save Daeraxa/3f6d4327f887ccacbe63503d3254e96c to your computer and use it in GitHub Desktop.
Save Daeraxa/3f6d4327f887ccacbe63503d3254e96c to your computer and use it in GitHub Desktop.
Joplin-userchrome-customOrderCSS
/*CSS that makes the first character of a notebook invisible to allow "custom" ordering*/
.list-item-depth-0 .title::first-letter{
color: transparent !important;
}
.list-item-depth-1 .title::first-letter{
color: transparent !important;
}
/* Uncomment for more depths
.list-item-depth-2 .title::first-letter{
color: transparent !important;
}
.list-item-depth-3 .title::first-letter{
color: transparent !important;
}
*/
/* Same as above but for tags */
.tag-label::first-letter {
color: transparent !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment