Skip to content

Instantly share code, notes, and snippets.

@seandrickson
Last active December 5, 2019 20:37
Show Gist options
  • Save seandrickson/9bbb57fa018333bfbbd9c107c20c64f5 to your computer and use it in GitHub Desktop.
Save seandrickson/9bbb57fa018333bfbbd9c107c20c64f5 to your computer and use it in GitHub Desktop.
/* on all urls starting with: https://jira.*/secure/RapidBoard.jspa */
/* Use story points from extra fields for Kanban boards */
.ghx-plan-extra-fields {
display: block !important;
height: 0 !important;
margin: 0 !important;
}
.ghx-issue-compact .ghx-plan-extra-fields.ghx-plan-extra-fields.ghx-row .ghx-extra-field[data-tooltip^="Story Points:"] {
position: absolute;
right: 4px;
top: 50%;
transform: translateY(-50%);
min-width: 15px;
height: 1em;
text-align: center;
background: rgba(9, 30, 66, 0.13);
border-radius: 2em;
color: #172b4d;
font-size: 12px;
font-weight: 600;
line-height: 1;
margin: 0;
padding: 2px 6px;
}
.ghx-issue-compact .ghx-plan-extra-fields.ghx-plan-extra-fields.ghx-row .ghx-extra-field[data-tooltip^="Story Points:"].ghx-fa .ghx-extra-field-content {
display: none;
}
/* reduce size of epic labels */
.ghx-issue-compact .aui-label {
font-size: 9px;
padding: .25em .5em .35em;
}
/* remove strike-through on resolved tickets */
.ghx-done .ghx-key a {
text-decoration: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment