Skip to content

Instantly share code, notes, and snippets.

@raypereda
Created January 17, 2013 18:35
Show Gist options
  • Save raypereda/4558374 to your computer and use it in GitHub Desktop.
Save raypereda/4558374 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 triage: red, triage: yellow, and triage[:] pink stories
.projects_stories_page .storyLabels a[title="triage: red"] {
background-color: red;
color: white !important;
padding: 0 3px;
display: inline-block;
}
.projects_stories_page .accepted .storyLabels a[title="triage: red"] {
background-color: inherit;
color: inherit !important;
padding: inherit;
display: inherit;
}
.projects_stories_page .storyLabels a[title="triage: yellow"] {
background-color: yellow;
color: white !important;
padding: 0 3px;
display: inline-block;
}
.projects_stories_page .accepted .storyLabels a[title="triage: yellow"] {
background-color: inherit;
color: inherit !important;
padding: inherit;
display: inherit;
}
.projects_stories_page .storyLabels a[title="triage pink"] {
background-color: pink;
color: white !important;
padding: 0 3px;
display: inline-block;
}
.projects_stories_page .accepted .storyLabels a[title="triage pink"] {
background-color: inherit;
color: inherit !important;
padding: inherit;
display: inherit;
}
.projects_stories_page .storyLabels a[title="triage: pink"] {
background-color: pink;
color: white !important;
padding: 0 3px;
display: inline-block;
}
.projects_stories_page .accepted .storyLabels a[title="triage: pink"] {
background-color: inherit;
color: inherit !important;
padding: inherit;
display: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment