Skip to content

Instantly share code, notes, and snippets.

@quangv
Last active August 29, 2015 14:17
Show Gist options
  • Save quangv/246fd0ef42e80fd28bce to your computer and use it in GitHub Desktop.
Save quangv/246fd0ef42e80fd28bce to your computer and use it in GitHub Desktop.
PivotalTracker Solo-Mode Scripts

Minimalistic view for PivotalTracker Solo-Mode.

blog post

The CSS and JS can be loaded into pivotaltracker with extensions like: minimalist

.requester.row{display:none;}
.owner.row{display:none;}
.following.row{display:none;}
.author{display:none;}
.add_mention.tool.button{display:none;}
.markdown_help{display:none;}
.members{display:none;}
.my_work{display:none;}
/* Gets rid of (name) label */
.parens{display:none;}
/* Hide zero estimates*/
.estimate .estimate_0{display:none;}
/* Activity Toggle */
section.activity.full > div > ol > li{display:none;}
section.activity.full > div > form{display:none;}
section.activity.full h4 {
cursor:pointer;
text-transform: lowercase;
font-weight: normal;
text-decoration: none;
font-size: 11px;
color: #0957a4;
}
setTimeout(function(){
$('body').on('click', 'section.activity.full h4', function(event){
$(event.target).next('ol').children('li').not('.no_comments').toggle();
$(event.target).prev('form').toggle();
});
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment