Created
May 13, 2016 20:14
-
-
Save greglittlefield-wf/f066a77100e2460b1f30e9d09c7fa076 to your computer and use it in GitHub Desktop.
Slimmer JIRA backlog
This file contains 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
/* User styles for hiding empty labels fields in the UIP backlog */ | |
/* Don't display the "None" label placeholder */ | |
.ghx-extra-field[data-tooltip="Labels: None"] { | |
display: none !important; | |
} | |
.ghx-plan-extra-fields-1 { | |
/* Remove extra margin below labels */ | |
margin-bottom: 0 !important; | |
/* Reset the explicit height on the label container | |
so that they can collapse when empty */ | |
height: auto !important; | |
} | |
.ghx-extra-field[data-tooltip] { | |
/* Shift the label text up, closer to the ticket name | |
without affecting the margin of tickets without labels */ | |
margin-top: -3px; | |
margin-bottom: 3px | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment