Skip to content

Instantly share code, notes, and snippets.

@pfrenssen
Last active March 27, 2020 12:07
Show Gist options
  • Save pfrenssen/b14b86442d188688b2d6 to your computer and use it in GitHub Desktop.
Save pfrenssen/b14b86442d188688b2d6 to your computer and use it in GitHub Desktop.
Jira keyboard accessibility user style for Stylus
/* Jira Agile */
/* Allow to scroll the page with the keyboard in the Plan view */
#ghx-plan,
#ghx-plan-group,
#ghx-rabid,
#ghx-work,
#page,
#js-detail-nav-content {
height: auto !important;
}
body.ghx-scroll-columns,
#ghx-plan,
#ghx-report,
#ghx-work {
overflow: auto !important;
}
/* Let column headers scroll with the page */
#ghx-column-header-group {
position: static !important;
}
/* Allow to scroll issues with the keyboard */
#jira.page-type-split {
overflow-y: scroll;
position: inherit;
}
#jira .issue-view {
overflow-y: inherit !important;
}
/* Always show the action links on issue comments */
.actionContainer .action-links a {
opacity: 0.25 !important;
}
/* Always show the delete buttons on issue links */
.links-list dd .delete-link {
visibility: visible !important;
}
/* Always show the edit links on editable fields */
.editable-field .edit-labels {
display: inline-block !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment