Userstyle for making all of GitHub.com completely fluid.
Style by https://github.com/mdo
Licensed under MIT (LICENSE) and copyright @mdo.
Authorcfoellmann
LicenseMIT
Categorygithub.com
Created
Updated
Code size2.7 kB
Code checksum17b31387
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Userstyle for making all of GitHub.com completely fluid.
Style by https://github.com/mdo
Licensed under MIT (LICENSE) and copyright @mdo.
Post all issues at https://github.com/mdo/github-wide/issues
/* ==UserStyle==
@name GitHub Wide
@namespace USO Archive
@author cfoellmann
@description Userstyle for making all of GitHub.com completely fluid.<br> Style by <a href="https://github.com/mdo" target="_blank">https://github.com/mdo</a><br> <br> Post all issues at <a href="https://github.com/mdo/github-wide/issues" target="_blank">https://github.com/mdo/github-wide/issues</a>
@version 20231229.12.48
@license NONE
@preprocessor uso
==/UserStyle== */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("github.com") {
/*
* Basic layout
*/
.container {
width: 100% !important;
padding-right: 30px !important;
padding-left: 30px !important;
}
/* Responsive containers on some pages */
.container-lg,
.container-xl {
max-width: 100% !important;
padding-right: 30px !important;
padding-left: 30px !important;
}
/* Match the header to container padding */
.Header {
padding-right: 30px !important;
padding-left: 30px !important;
}
.Box-sc-g0xbh4-0 {
max-width: 100%;
}
.Layout--sidebarPosition-end {
margin-right: 25px;
}
/*
* Profile pages
*/
.pinned-repo-item {
width: calc(50% - 10px) !important;
}
.org-pinned-repos-list .pinned-repo-item {
width: calc(33.3% - 10px) !important;
}
.u-photo,
.user-status-container {
max-width: 250px;
}
.u-photo .avatar {
width: 100% !important;
height: auto !important;
}
/*
* Repo-specific stuff
*/
.repository-content {
width: 100% !important;
}
/* Undo container changes for the Projects tab on repos which have unnecessary nested container-lg's */
.repository-content > .container-lg {
padding-right: 0 !important;
padding-left: 0 !important;
}
/* Undo for profile timeline */
.contribution-activity-listing .discussion-timeline {
width: 100% !important;
}
/* Fix #18 - props: @auscompgeek */
.file-header::after {
clear: left !important;
}
/* Network graph */
#network {
max-width: 730px;
}
/*
* Issues & Dashboard
*/
#dashboard,
.new-issue-form {
position: relative !important;
}
.new-issue-form .discussion-sidebar {
position: absolute !important;
top: 0 !important;
right: 0 !important;
}
button.discussion-sidebar-toggle {
width: 100% !important;
}
.timeline-new-comment {
max-width: none !important;
}
/* Commits: extended message under "..." */
.commit-desc pre {
max-width: none;
}
/* Alert messages */
#js-flash-container .flash-messages {
width: 100% !important;
padding-left: 30px !important;
padding-right: 30px !important;
}
}