Skip to content

Commit 2dc9527

Browse files
committed
Fix Your Branches page
1 parent efd6b18 commit 2dc9527

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

build/wide-github.user.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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.6.2
13+
@version 1.6.3
1414
@homepageURL https://github.com/xthexder/wide-github
1515
@supportURL https://github.com/xthexder/wide-github/issues
1616
==/UserStyle== */
@@ -43,10 +43,14 @@
4343
max-width: none;
4444
}
4545

46-
/* Commit history page */
46+
/* Commit History page */
4747
body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height: 100vh;"] > div[class^='Box-sc-']:first-child {
4848
max-width: none;
4949
}
50+
/* Your Branches page */
51+
body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height:100vh"] > div[class^='Box-sc-']:first-child {
52+
max-width: none;
53+
}
5054

5155
/* Issue list Assignee alignment */
5256
body:not(.wgh-disabled) #js-repo-pjax-container .js-issue-row .text-right {

build/wide-github.user.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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.6.2
15+
// @version 1.6.3
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
@@ -48,10 +48,14 @@ var styleSheet = "" +
4848
"max-width: none;" +
4949
"}" +
5050

51-
// Commit history page
51+
// Commit History page
5252
"body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height: 100vh;"] > div[class^='Box-sc-']:first-child {" +
5353
"max-width: none;" +
5454
"}" +
55+
// Your Branches page
56+
"body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height:100vh"] > div[class^='Box-sc-']:first-child {" +
57+
"max-width: none;" +
58+
"}" +
5559

5660
// Issue list Assignee alignment
5761
"body:not(.wgh-disabled) #js-repo-pjax-container .js-issue-row .text-right {" +

chrome/manifest.json

+2-2
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.6.2",
7-
"version_name": "1.6.2 MV3",
6+
"version": "1.6.3",
7+
"version_name": "1.6.3 MV3",
88
"icons": {
99
"32": "icons/icon32.png",
1010
"48": "icons/icon48.png",

mozilla/manifest.json

+1-1
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.6.2",
6+
"version": "1.6.3",
77
"icons": {
88
"32": "icons/icon32.png",
99
"48": "icons/icon48.png",

wide-github.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,14 @@ body:not(.wgh-disabled) .Layout-main div[data-selector="repos-split-pane-content
2424
max-width: none;
2525
}
2626

27-
/* Commit history page */
27+
/* Commit History page */
2828
body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height: 100vh;"] > div[class^='Box-sc-']:first-child {
2929
max-width: none;
3030
}
31+
/* Your Branches page */
32+
body:not(.wgh-disabled) #js-repo-pjax-container div[style="--sticky-pane-height:100vh"] > div[class^='Box-sc-']:first-child {
33+
max-width: none;
34+
}
3135

3236
/* Issue list Assignee alignment */
3337
body:not(.wgh-disabled) #js-repo-pjax-container .js-issue-row .text-right {

0 commit comments

Comments
 (0)