Skip to content

Instantly share code, notes, and snippets.

@amityweb
Created April 18, 2018 09:45
Show Gist options
  • Save amityweb/043e337b343d06f56aab0623221b9762 to your computer and use it in GitHub Desktop.
Save amityweb/043e337b343d06f56aab0623221b9762 to your computer and use it in GitHub Desktop.
Tampermonkey Instagantt Improvements
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