Created
April 18, 2018 09:45
-
-
Save amityweb/043e337b343d06f56aab0623221b9762 to your computer and use it in GitHub Desktop.
Tampermonkey Instagantt Improvements
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
function addGlobalStyle(css) { | |
var head, style; | |
head = document.getElementsByTagName('head')[0]; | |
if (!head) { return; } | |
style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.innerHTML = css; | |
head.appendChild(style); | |
} | |
addGlobalStyle(` | |
.workload .sidebar-2 | |
{ | |
width: 60px!important; | |
margin-top: 25px; | |
} | |
.workload .sidebar-3 | |
{ | |
width: 60px!important; | |
left: 0!important; | |
} | |
.workload .tasks-container .cell-name, | |
.workload .tasks-container .estimated_hours_legend, | |
.workload .tasks-container li:nth-last-child(2), | |
.workload .tasks-container .header | |
{ | |
display: none!important; | |
} | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment