Skip to content

Instantly share code, notes, and snippets.

@jonfriskics
Created June 5, 2013 15:32
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 jonfriskics/5714789 to your computer and use it in GitHub Desktop.
Save jonfriskics/5714789 to your computer and use it in GitHub Desktop.
Fix Github repositories sidebar CSS with Stylish
/* ***************
** The sidebar as of 6/5/2013 unnecessarily truncates repo names in the repositories sidebar and makes it hard to tell repos
** with similar names apart
** Add this as a user style for http://github.com and https://github.com
***************
*/
.css-truncate-target {
overflow: visible;
white-space: normal;
}
.repo-list-item .owner {
max-width: 250px;
}
.repo-list-item .repo {
max-width: 250px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment