Skip to content

Instantly share code, notes, and snippets.

@ibirman
Forked from BrynM/git-stylebot.css
Last active May 9, 2016 13:51
Show Gist options
  • Select an option

  • Save ibirman/8a7a3877414f1732dc8b47d15810b582 to your computer and use it in GitHub Desktop.

Select an option

Save ibirman/8a7a3877414f1732dc8b47d15810b582 to your computer and use it in GitHub Desktop.
Wide GitHub Stylebot Customizations (For GitHub Enterprise 2.6)
/*
* Use your whole screen for GitHub! This makes GH's layout more flexible to accomodate widescreen displays.
*
* Use/Installation:
* 1. Get Stylebot at https://chrome.google.com/webstore/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha?hl=en
* 2. Right-click on a GitHub page and select "Stylebot->Style Element" (it doesn't matter which element).
* 3. When the Stylebot window opens, click the "edit CSS" button and paste the entire contents of this file in.
* 4. (optional) Edit to your tastes if you like, but you may lose the ability to update from this gist unless you
* re-make your changes.
*/
div.container .comment-holder {
max-width: inherit;
}
div.container .comment-holder .discussion-timeline {
max-width: inherit;
width: calc(100% - 50px);
}
div.container .discussion-timeline {
width: calc(100% - 400px);
}
div.container .repository-with-sidebar .repository-content {
max-width: calc(100% - 50px);
width: 100%;
}
div.container .repository-with-sidebar.with-full-navigation .repository-content {
max-width: calc(100% - 190px);
width: 100%;
}
div.container .timeline-new-comment {
max-width: inherit;
}
div.container table.timeline-commits > tbody > tr.commit:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(90%,#ffffff), color-stop(100%,#dfdfdf));
}
div.container, div.site-content > .container, div.site-content > .site-container > .container {
width: calc(100% - 20px);
}
div.site-content > .container .edit.container {
width: 100%
;
}
div.site-content > .site-container > .container .gist .gist-content {
width: calc(100% - 180px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment