Created
August 1, 2017 16:58
-
-
Save jonathan-beebe/5c65e0750c561b63c8287532dee62398 to your computer and use it in GitHub Desktop.
Fix Jira
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
| /* make the filters a bit more compact */ | |
| .ghx-controls-filters dt { | |
| margin: 0; | |
| } | |
| .ghx-controls-filters dd { | |
| margin: 0; | |
| font-size: 12px; | |
| } | |
| .ghx-controls-filters dd a { | |
| padding: 1px 3px; | |
| } | |
| .ghx-days { | |
| display: none; | |
| } | |
| /* cause the _entire_ card to get gently colored with status */ | |
| .ghx-issue .ghx-grabber { | |
| width: 100%; | |
| height: 100%; | |
| left: 0; | |
| top: 0; | |
| bottom: 0; | |
| opacity: 0.1; | |
| } | |
| /* | |
| * Fix those awkwardly squished columns. | |
| * Borrowed from https://chrome.google.com/webstore/detail/jira-interface-improvemen/mmbhfikppdnhffajifihnlcffjflffok?hl=en-US | |
| */ | |
| /* horizontal scroll on kanban boards */ | |
| #ghx-pool-column { | |
| overflow-y: hidden; | |
| } | |
| #ghx-pool { | |
| width: 2000px; | |
| } | |
| /* horizontal scroll on board settings -> columns option */ | |
| .ghx-page-panel-content-item { | |
| overflow-y: hidden; | |
| } | |
| #ghx-mapping { | |
| width: 3000px !important; | |
| } | |
| /* story detail view coulmn */ | |
| #ghx-detail-view { | |
| width: 600px !important; | |
| width: 50vw !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment