Skip to content

Instantly share code, notes, and snippets.

@jonfriskics
Created June 5, 2013 15:32
Show Gist options
  • Select an option

  • Save jonfriskics/5714789 to your computer and use it in GitHub Desktop.

Select an option

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