Skip to content

Instantly share code, notes, and snippets.

@kkoch986
Created November 11, 2022 15:09
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 kkoch986/62eb8cffff2ea4ca621994ee42634623 to your computer and use it in GitHub Desktop.
Save kkoch986/62eb8cffff2ea4ca621994ee42634623 to your computer and use it in GitHub Desktop.
CSS to Make Jira Board Columns Wider
#gh,
#ghx-work,
#ghx-pool-column.ghx-flexible-board #ghx-column-headers,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table
{
background: #131516!important;
}
ul.ghx-column-headers,
ul.ghx-columns,
.ghx-zone-overlay-table,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board #ghx-column-headers,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table {
grid-template-columns: repeat(auto-fit,minmax(250px,1fr))!important;
}
#gh #ghx-work #ghx-pool-column.ghx-flexible-board #ghx-column-headers .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board #ghx-column-headers .ghx-zone-overlay-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns .ghx-zone-overlay-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table .ghx-zone-overlay-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board #ghx-column-headers .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board #ghx-column-headers .ghx-zone-overlay-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-columns .ghx-zone-overlay-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table .ghx-column,
#gh #ghx-work #ghx-pool-column.ghx-flexible-board .ghx-zone-overlay-table .ghx-zone-overlay-column {
min-width: 250px!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment