Skip to content

Instantly share code, notes, and snippets.

@mklickman
Last active May 5, 2019 11:59
Show Gist options
  • Save mklickman/644511a183f63c91e4d8 to your computer and use it in GitHub Desktop.
Save mklickman/644511a183f63c91e4d8 to your computer and use it in GitHub Desktop.
Trello Dashboard: Hide "Starred Boards" and "My Boards" sections, and "Create New Board..." blocks
/***
If you're like me, and like to organize your Trello boards by team, you
might not want to see the default "Starred Boards" and "My Boards"
sections that show up on your dashboard. For me, they just get in the way,
and I would rather just see my boards organized by teams ("Client Work",
"Side Projects", "Tabled Projects", etc.).
Here's a set of styles you can drop into Stylebot (broowser extension that
lets you add custom CSS to any site in your borwser) to do just that. Enjoy!
***/
.boards-page-board-section.mod-no-sidebar:first-child, .boards-page-board-section.mod-no-sidebar:nth-child(2) {
display: none;
}
.boards-page-board-section-list-item:last-child {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment