Last active
March 14, 2017 15:15
-
-
Save edelbalso/b5e4c17f1f3e8704f295a7b8bfa949c7 to your computer and use it in GitHub Desktop.
Simpler, More Elegant 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
/*** | |
I couldn't stand the way JIRA looks any longer, so I went into an OCD fit and made it nicer. | |
Step 1 - Install this chrome extension: https://chrome.google.com/webstore/detail/user-css/okpjlejfhacmgjkmknjhadmkdbcldfcb | |
Step 2 - Visit your Jira Backlog and click on the "CSS" extension | |
Step 3 - Copy this stylesheet into the editor it gives you, flick the "On" switch. | |
Step 4 - Go to the backlog view of your JIRA board. | |
Step 5 - Give me a big ol' hug. | |
***/ | |
.js-epic-actions { display: none;} | |
/* "Create Issue" button */ | |
.iic-agile-plan .iic-trigger button { display: none;} | |
.ghx-row.ghx-end.ghx-items-container { | |
padding-top:6px; | |
} | |
[data-epickey] { | |
font-size: 14px; | |
font-weight: bold; | |
padding: 4px 8px 4px 8px; | |
} | |
.js-epic-name { | |
font-size:16px; | |
font-weight:bold; | |
} | |
#js-plan-quickfilters { | |
font-size: 12px; | |
} | |
#js-plan-quickfilters .js-quickfilter-button{ | |
padding: 6px; | |
} | |
#js-quickfilters-label { | |
display:none; | |
} | |
.ghx-epic-column { | |
width:325px; | |
} | |
.ghx-issue-content .ghx-end .aui-label { | |
max-width:500px; | |
} | |
.ghx-issue-content .ghx-key { | |
display: none; | |
} | |
.ghx-issue-content .ghx-summary { | |
font-size: 16px; | |
} | |
/* Small Summary Lines */ | |
.ghx-issue-content .ghx-plan-extra-fields .ghx-extra-field, .ghx-issue-content .ghx-plan-extra-fields .ghx-extra-field-seperator { | |
font-size:9px; | |
font-weight: bold; | |
font-style:italic; | |
line-height:12px; | |
margin:0; | |
padding:0px 2px; | |
} | |
.ghx-issue-content .ghx-plan-extra-fields { | |
margin:0 5px 0 42px; | |
} | |
.ghx-row.ghx-end.ghx-items-container { | |
padding-top:12px; | |
} | |
/* End Small Summary Lines */ | |
/* Small Summary Lines | |
.ghx-issue-content .ghx-plan-extra-fields .ghx-extra-field, .ghx-issue-content .ghx-plan-extra-fields .ghx-extra-field-seperator { | |
display:none; | |
line-height:0; | |
} | |
.ghx-issue-content .ghx-plan-extra-fields { | |
margin:0; | |
line-height:0; | |
height:0px; | |
} | |
.ghx-summary { | |
padding-top:px; | |
font-size: 14px; | |
} | |
.ghx-row { | |
padding: 4px 0px 1px 0; | |
} | |
.ghx-issue-content { | |
padding-left:0; | |
} | |
/* End Small Summary Lines | |
/* Left Status Color */ | |
.js-issue .ghx-grabber { | |
/* display: none; */ | |
} | |
/* End Left Status Color */ | |
.ghx-end .aui-badge{ | |
width:50px; | |
background-color: #ebf2f9; | |
color: #4a6785; | |
display:none | |
} | |
.ghx-sprint-info { | |
display: none; | |
} | |
.ghx-assigned-work-stats { | |
display:none; | |
} | |
.ghx-issues { | |
margin: 0 18px; | |
} | |
.ghx-stat-total { | |
padding-top:0; | |
} | |
.ghx-marker { | |
padding-bottom: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment