Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@airtonix
Created July 17, 2017 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save airtonix/d900e35a9c3094b7b324f68b791d0b7b to your computer and use it in GitHub Desktop.
Save airtonix/d900e35a9c3094b7b324f68b791d0b7b to your computer and use it in GitHub Desktop.
Jira Agile Work Board
@charset "UTF-8";
/* default */
#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