Last active
October 26, 2015 10:56
-
-
Save tregusti/17f5a1ef04b9dc968524 to your computer and use it in GitHub Desktop.
User styling for JIRA Agile boards
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
#ghx-work { | |
display: flex; | |
} | |
#ghx-work #ghx-pool-column { | |
display: block; | |
flex: 1; | |
} | |
#ghx-work #ghx-detail-view { | |
display: block; | |
} | |
#ghx-pool { | |
height: 100%; | |
display: flex; | |
flex-direction: column; | |
} | |
#ghx-pool .ghx-swimlane { | |
position: relative; | |
flex: 1; | |
height: 100%; | |
overflow: hidden; | |
} | |
#ghx-pool .ghx-swimlane.ghx-closed { | |
flex: none; | |
height: 40px; | |
} | |
#ghx-pool .ghx-swimlane + .ghx-swimlane { | |
margin-top: 10px; | |
} | |
#ghx-pool .ghx-swimlane-header { | |
height: 40px; | |
} | |
#ghx-pool .ghx-columns, | |
#ghx-pool .ghx-column-headers { | |
position: relative; | |
display: flex; | |
overflow: hidden; | |
align-items: stretch; | |
} | |
#ghx-pool .ghx-swimlane .ghx-columns { | |
position: absolute; | |
top: 40px; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
} | |
#ghx-pool .ghx-column { | |
position: relative; | |
display: block; | |
flex: 1; | |
overflow-y: auto; | |
overflow-x: hidden; | |
height: 100%; | |
} | |
#ghx-pool .ghx-swimlane .ghx-column { | |
border: 1px solid rgba(0, 0, 0, .5); | |
} | |
#ghx-pool .ghx-column + .ghx-column { | |
margin-left: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment