Disable Trash Icon

Trash folder comes with a big distoant icon by default. The user should have the ability to change it.

That's visually incoerent, the less important directorie hast he biggest icon, but I can't change it using right click.

The icon is indeed larger than normal notebook icons.

For example, by default, folder icons have a size of 14.5 px, while the trash icon is 18 px.

This is how it would look if you reduced the size to the same 14.5 px.

Imagine for me? I don't even like icons before folders.

I know what you mean. If you add the below to userchrome.css (or create it) it will remove all those default icons.

div.sidebar .icon-notes,
div.sidebar .icon-notebooks,
div.sidebar .icon-tags,
i.fa-trash {
     /* sidebar - removes the Notebooks, All Notes, Tags and Trash icons */
     display: none;
}

The text for "Trash" is now a bit out of alignment but I could live with that so I have never tried to find the css to correct it.

div.sidebar .icon-notes,
div.sidebar .icon-notebooks,
div.sidebar .icon-tags,
i.fa-trash {
     /* sidebar - removes the Notebooks, All Notes, Tags and Trash icons */
     display: none;
}
a.list-item > div {
    /* sidebar - Removes the padding for the trash icon */
    margin-right: 0px !important;
}

This addition seems to make everything align to the left.

Not suggesting it's the best way to do this - just A way to do this :slight_smile: