Skip to content

Commit 887aaef

Browse files
authored
Merge pull request #76 from xthexder/assignee_fix
Assignee alignment fix
2 parents 6fe7afd + ce709d2 commit 887aaef

File tree

6 files changed

+15
-30
lines changed

6 files changed

+15
-30
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ chrome-extension:
1414
cp chrome/background.js build/chrome/background.js
1515
cp wide-github.css build/chrome/wide-github.css
1616
cp wide-github-toggle.js build/chrome/wide-github-toggle.js
17-
cp -r icons build/chrome/icons
18-
cd build/chrome/ && zip wide-github.tmp.zip *
17+
cp -rT icons build/chrome/icons/
18+
cd build/chrome/ && zip -r wide-github.tmp.zip *
1919
mv build/chrome/wide-github.tmp.zip build/wide-github-chrome.zip
2020

2121
mozilla-extension:
@@ -25,8 +25,8 @@ mozilla-extension:
2525
cp mozilla/background.js build/mozilla/background.js
2626
cp wide-github.css build/mozilla/wide-github.css
2727
cp wide-github-toggle.js build/mozilla/wide-github-toggle.js
28-
cp -r icons build/mozilla/icons
29-
cd build/mozilla/ && zip wide-github.tmp.zip *
28+
cp -rT icons build/mozilla/icons/
29+
cd build/mozilla/ && zip -r wide-github.tmp.zip *
3030
mv build/mozilla/wide-github.tmp.zip build/wide-github-mozilla.zip
3131

3232
clean:

build/wide-github.user.css

+3-8
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.5.0
13+
@version 1.5.1
1414
@homepageURL https://github.com/xthexder/wide-github
1515
@supportURL https://github.com/xthexder/wide-github/issues
1616
==/UserStyle== */
@@ -66,8 +66,8 @@
6666
body:not(.wgh-disabled) .repository-content #all_commit_comments .comment-holder {
6767
max-width: inherit !important;
6868
}
69-
body:not(.wgh-disabled) .repository-content .js-issue-row .col-3.text-right { /* Issue list Assignee alignment */
70-
max-width: 288px !important;
69+
body:not(.wgh-disabled) .repository-content .js-issue-row .text-right { /* Issue list Assignee alignment */
70+
max-width: 303px !important;
7171
}
7272

7373
/* Repository graph page */
@@ -81,9 +81,4 @@
8181
height: calc(100vh - 500px) !important;
8282
}
8383

84-
/* Refined GitHub extension conflict fix */
85-
.refined-github > body:not(.wgh-disabled, .full-width, .enterprise) main > .hide-full-screen > * {
86-
padding-left: 0px !important;
87-
}
88-
8984
}

build/wide-github.user.js

+3-8
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.5.0
15+
// @version 1.5.1
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
@@ -71,8 +71,8 @@ var styleSheet = "" +
7171
"body:not(.wgh-disabled) .repository-content #all_commit_comments .comment-holder {" +
7272
"max-width: inherit !important;" +
7373
"}" +
74-
"body:not(.wgh-disabled) .repository-content .js-issue-row .col-3.text-right {" + // Issue list Assignee alignment
75-
"max-width: 288px !important;" +
74+
"body:not(.wgh-disabled) .repository-content .js-issue-row .text-right {" + // Issue list Assignee alignment
75+
"max-width: 303px !important;" +
7676
"}" +
7777

7878
// Repository graph page
@@ -86,11 +86,6 @@ var styleSheet = "" +
8686
"height: calc(100vh - 500px) !important;" +
8787
"}" +
8888

89-
// Refined GitHub extension conflict fix
90-
".refined-github > body:not(.wgh-disabled, .full-width, .enterprise) main > .hide-full-screen > * {" +
91-
"padding-left: 0px !important;" +
92-
"}" +
93-
9489
"";
9590

9691
(function () {

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.5.0",
7-
"version_name": "1.5.0 MV3",
6+
"version": "1.5.1",
7+
"version_name": "1.5.1 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.5.0",
6+
"version": "1.5.1",
77
"icons": {
88
"32": "icons/icon32.png",
99
"48": "icons/icon48.png",

wide-github.css

+2-7
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ body:not(.wgh-disabled) .repository-content #all_commit_comments .commit-comment
4747
body:not(.wgh-disabled) .repository-content #all_commit_comments .comment-holder {
4848
max-width: inherit !important;
4949
}
50-
body:not(.wgh-disabled) .repository-content .js-issue-row .col-3.text-right { /* Issue list Assignee alignment */
51-
max-width: 288px !important;
50+
body:not(.wgh-disabled) .repository-content .js-issue-row .text-right { /* Issue list Assignee alignment */
51+
max-width: 303px !important;
5252
}
5353

5454
/* Repository graph page */
@@ -61,8 +61,3 @@ body:not(.wgh-disabled) .gist-content .commit-create .CodeMirror {
6161
min-height: 250px;
6262
height: calc(100vh - 500px) !important;
6363
}
64-
65-
/* Refined GitHub extension conflict fix */
66-
.refined-github > body:not(.wgh-disabled, .full-width, .enterprise) main > .hide-full-screen > * {
67-
padding-left: 0px !important;
68-
}

0 commit comments

Comments
 (0)