The green symbols clutter my board and take too much focus. Can I hide this symbol or change the green colour to grey?
Hello @Mats Berggren
It can't be done within Trello itself, but you can do it on the browser side with an extension like Pro For Trello that can alter the CSS on the web page.
The CSS code you'd need to apply to make that green checkbox hidden when all the items in the checklist are complete would be:
.badge.is-complete {
width: 0;
padding: 0;
}
If there are still items to complete in the checklist, the normal checkbox appearance would apply:
If you don't want to hide the checkbox when all the items are complete, just make it have a light grey background, here is the CSS code for that:
.badge.is-complete {
background-color: #DDDDDD;
}
which renders like this:
Note. These solutions only work for users that have the browser extension installed and the CSS code changes applied via that extension.
Think like a pro!
Thank you for helping me out. I'll definitely try Pro for Trello.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.