Skip to content

Instantly share code, notes, and snippets.

@tvst
Created October 11, 2019 04:58
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 tvst/14b39fba69461beeda12b3fb5daca5c9 to your computer and use it in GitHub Desktop.
Save tvst/14b39fba69461beeda12b3fb5daca5c9 to your computer and use it in GitHub Desktop.
Make Github Projects a little easier to read
javascript:(() => {
const css = document.createElement('style');
css.innerText = `
/* Change background */
.js-project-header {
background: #23527b!important;
}
.project-columns {
background: #23527b!important;
}
.project-columns-container {
padding-top: 0!important;
}
/* Hide unecessary author info */
.issue-card small.text-gray {
display: none!important;
}
/* Make titles black */
.issue-card a {
color: #24292e;
font-weight: 500!important;
font-size: 1.2em!important;
}
/* Hide card icons */
.prject-card .card-octicon {
display: none;
}
.project-card .js-project-issue-details-container {
padding-left: 0;
}
.project-card .pl-5 {
margin-left: 8px!important;
}
/* Clean up cards */
.project-card {
box-shadow: none!important;
}
`;
document.body.append(css);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment