Skip to content

Commit 534d44b

Browse files
committed
Update for 2026 GitHub layout
1 parent ce7eacd commit 534d44b

8 files changed

Lines changed: 22 additions & 10 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2025 xthexder (https://github.com/xthexder/wide-github)
3+
Copyright (c) 2013-2026 xthexder (https://github.com/xthexder/wide-github)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build/wide-github.user.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
@namespace https://github.com/xthexder/wide-github
44
@description Change all GitHub repository and gist pages to be full width and dynamically sized.
55
@author xthexder
6-
@copyright 2013-2025, xthexder (https://github.com/xthexder)
6+
@copyright 2013-2026, xthexder (https://github.com/xthexder)
77
@contributor Jason Frey (https://github.com/Fryguy)
88
@contributor Marti Martz (https://github.com/Martii)
99
@contributor Paul "Joey" Clark (https://github.com/joeytwiddle)
1010
@contributor Robert Laverty (https://github.com/roblav96)
1111
@contributor Amir Meimari (https://github.com/amirmeimari)
1212
@license MIT; https://raw.githubusercontent.com/xthexder/wide-github/master/LICENSE
13-
@version 1.7.1
13+
@version 1.7.2
1414
@homepageURL https://github.com/xthexder/wide-github
1515
@supportURL https://github.com/xthexder/wide-github/issues
1616
==/UserStyle== */
@@ -78,6 +78,10 @@
7878
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='IssueViewer-module__issueViewerContainer-'] > div[class^='Box-sc-'] {
7979
max-width: none;
8080
}
81+
/* Issue page (Jan 2026) */
82+
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='ContentWrapper-module__contentContainer--'] {
83+
max-width: none;
84+
}
8185

8286
/* New issue page */
8387
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='IssueCreatePage-module__createPaneContainer-'] {

build/wide-github.user.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
// @namespace https://github.com/xthexder/wide-github
66
// @description Change all GitHub repository and gist pages to be full width and dynamically sized.
77
// @author xthexder
8-
// @copyright 2013-2025, xthexder (https://github.com/xthexder)
8+
// @copyright 2013-2026, xthexder (https://github.com/xthexder)
99
// @contributor Jason Frey (https://github.com/Fryguy)
1010
// @contributor Marti Martz (https://github.com/Martii)
1111
// @contributor Paul "Joey" Clark (https://github.com/joeytwiddle)
1212
// @contributor Robert Laverty (https://github.com/roblav96)
1313
// @contributor Amir Meimari (https://github.com/amirmeimari)
1414
// @license MIT; https://raw.githubusercontent.com/xthexder/wide-github/master/LICENSE
15-
// @version 1.7.1
15+
// @version 1.7.2
1616
// @icon https://raw.githubusercontent.com/xthexder/wide-github/master/icons/icon.png
1717
// @homepageURL https://github.com/xthexder/wide-github
1818
// @supportURL https://github.com/xthexder/wide-github/issues
@@ -84,6 +84,10 @@ var styleSheet = "" +
8484
"body:not(.wgh-disabled) .application-main div[data-target=\"react-app.reactRoot\"] div[class^='IssueViewer-module__issueViewerContainer-'] > div[class^='Box-sc-'] {" +
8585
"max-width: none;" +
8686
"}" +
87+
// Issue page (Jan 2026)
88+
"body:not(.wgh-disabled) .application-main div[data-target=\"react-app.reactRoot\"] div[class^='ContentWrapper-module__contentContainer--'] {" +
89+
"max-width: none;" +
90+
"}" +
8791

8892
// New issue page
8993
"body:not(.wgh-disabled) .application-main div[data-target=\"react-app.reactRoot\"] div[class^='IssueCreatePage-module__createPaneContainer-'] {" +

chrome/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
"name": "Wide GitHub",
55
"description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
6-
"version": "1.7.1",
7-
"version_name": "1.7.1 MV3",
6+
"version": "1.7.2",
7+
"version_name": "1.7.2 MV3",
88
"icons": {
99
"32": "icons/icon32.png",
1010
"48": "icons/icon48.png",

makecss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var header = "" +
1010
"@namespace https://github.com/xthexder/wide-github\n" +
1111
"@description " + manifest["description"] + "\n" +
1212
"@author xthexder\n" +
13-
"@copyright 2013-2025, xthexder (https://github.com/xthexder)\n" +
13+
"@copyright 2013-2026, xthexder (https://github.com/xthexder)\n" +
1414
"@contributor Jason Frey (https://github.com/Fryguy)\n" +
1515
"@contributor Marti Martz (https://github.com/Martii)\n" +
1616
"@contributor Paul \"Joey\" Clark (https://github.com/joeytwiddle)\n" +

makejs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var header = "" +
1212
"// @namespace https://github.com/xthexder/wide-github\n" +
1313
"// @description " + manifest["description"] + "\n" +
1414
"// @author xthexder\n" +
15-
"// @copyright 2013-2025, xthexder (https://github.com/xthexder)\n" +
15+
"// @copyright 2013-2026, xthexder (https://github.com/xthexder)\n" +
1616
"// @contributor Jason Frey (https://github.com/Fryguy)\n" +
1717
"// @contributor Marti Martz (https://github.com/Martii)\n" +
1818
"// @contributor Paul \"Joey\" Clark (https://github.com/joeytwiddle)\n" +

mozilla/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"name": "Wide GitHub",
55
"description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
6-
"version": "1.7.1",
6+
"version": "1.7.2",
77
"icons": {
88
"32": "icons/icon32.png",
99
"48": "icons/icon48.png",

wide-github.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"]
5959
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='IssueViewer-module__issueViewerContainer-'] > div[class^='Box-sc-'] {
6060
max-width: none;
6161
}
62+
/* Issue page (Jan 2026) */
63+
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='ContentWrapper-module__contentContainer--'] {
64+
max-width: none;
65+
}
6266

6367
/* New issue page */
6468
body:not(.wgh-disabled) .application-main div[data-target="react-app.reactRoot"] div[class^='IssueCreatePage-module__createPaneContainer-'] {

0 commit comments

Comments
 (0)