Skip to content

Instantly share code, notes, and snippets.

@listrophy
Created January 3, 2013 15:40
Show Gist options
  • Save listrophy/4444363 to your computer and use it in GitHub Desktop.
Save listrophy/4444363 to your computer and use it in GitHub Desktop.
Put this in "~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css" to highlight your blocked stories.
.projects_stories_page .storyLabels a[title="blocked"] {
background-color: red;
color: white !important;
padding: 0 3px;
display: inline-block;
}
@schallis
Copy link

schallis commented Jan 8, 2013

Don't highlight completed stories with an additional:

.projects_stories_page .accepted .storyLabels a[title="blocked"] {
    background: #ccc;
}

@listrophy
Copy link
Author

@schallis I don't think I agree with your change. If a stories is in Accepted, yet is labeled as "blocked," then it's a mistake... it shouldn't be blocked.

@pivotal-geostellar
Copy link

If you use a[title*="blocked"] it will match tags like "blocked" or "blocked on mockups" etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment