Last active
March 27, 2020 12:07
-
-
Save pfrenssen/b14b86442d188688b2d6 to your computer and use it in GitHub Desktop.
Jira keyboard accessibility user style for Stylus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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