Hide Completed Items on BackPack
I’ve been using Backpack for a few months, it’s clean, fast and simple - it epitomizes the 37 signals philosophy, which I generally agree with, but they’ve made a few interface decisions that irk me. The inability to show/hide completed items is at the top of that list, luckily in Firefox it’s easy to fix;
Step one: install Stylish
Step two: add the following rule:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("YOUR BACKPACK ADDRESS") {
body.page div.done{
display: none;
}
}
Comments Off