File tree 6 files changed +15
-30
lines changed
6 files changed +15
-30
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ chrome-extension:
14
14
cp chrome/background.js build/chrome/background.js
15
15
cp wide-github.css build/chrome/wide-github.css
16
16
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 *
19
19
mv build/chrome/wide-github.tmp.zip build/wide-github-chrome.zip
20
20
21
21
mozilla-extension :
@@ -25,8 +25,8 @@ mozilla-extension:
25
25
cp mozilla/background.js build/mozilla/background.js
26
26
cp wide-github.css build/mozilla/wide-github.css
27
27
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 *
30
30
mv build/mozilla/wide-github.tmp.zip build/wide-github-mozilla.zip
31
31
32
32
clean :
Original file line number Diff line number Diff line change 10
10
@contributor Robert Laverty (https://github.com/roblav96)
11
11
@contributor Amir Meimari (https://github.com/amirmeimari)
12
12
@license MIT; https://raw.githubusercontent.com/xthexder/wide-github/master/LICENSE
13
- @version 1.5.0
13
+ @version 1.5.1
14
14
@homepageURL https://github.com/xthexder/wide-github
15
15
@supportURL https://github.com/xthexder/wide-github/issues
16
16
==/UserStyle== */
66
66
body : not (.wgh-disabled ) .repository-content # all_commit_comments .comment-holder {
67
67
max-width : inherit !important ;
68
68
}
69
- body : not (.wgh-disabled ) .repository-content .js-issue-row .col-3 . text-right { /* Issue list Assignee alignment */
70
- max-width : 288 px !important ;
69
+ body : not (.wgh-disabled ) .repository-content .js-issue-row .text-right { /* Issue list Assignee alignment */
70
+ max-width : 303 px !important ;
71
71
}
72
72
73
73
/* Repository graph page */
81
81
height : calc (100vh - 500px ) !important ;
82
82
}
83
83
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
-
89
84
}
Original file line number Diff line number Diff line change 12
12
// @contributor Robert Laverty (https://github.com/roblav96)
13
13
// @contributor Amir Meimari (https://github.com/amirmeimari)
14
14
// @license MIT; https://raw.githubusercontent.com/xthexder/wide-github/master/LICENSE
15
- // @version 1.5.0
15
+ // @version 1.5.1
16
16
// @icon https://raw.githubusercontent.com/xthexder/wide-github/master/icons/icon.png
17
17
// @homepageURL https://github.com/xthexder/wide-github
18
18
// @supportURL https://github.com/xthexder/wide-github/issues
@@ -71,8 +71,8 @@ var styleSheet = "" +
71
71
"body:not(.wgh-disabled) .repository-content #all_commit_comments .comment-holder {" +
72
72
"max-width: inherit !important;" +
73
73
"}" +
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;" +
76
76
"}" +
77
77
78
78
// Repository graph page
@@ -86,11 +86,6 @@ var styleSheet = "" +
86
86
"height: calc(100vh - 500px) !important;" +
87
87
"}" +
88
88
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
-
94
89
"" ;
95
90
96
91
( function ( ) {
Original file line number Diff line number Diff line change 3
3
4
4
"name" : " Wide GitHub" ,
5
5
"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" ,
8
8
"icons" : {
9
9
"32" : " icons/icon32.png" ,
10
10
"48" : " icons/icon48.png" ,
Original file line number Diff line number Diff line change 3
3
4
4
"name" : " Wide GitHub" ,
5
5
"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 " ,
7
7
"icons" : {
8
8
"32" : " icons/icon32.png" ,
9
9
"48" : " icons/icon48.png" ,
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ body:not(.wgh-disabled) .repository-content #all_commit_comments .commit-comment
47
47
body : not (.wgh-disabled ) .repository-content # all_commit_comments .comment-holder {
48
48
max-width : inherit !important ;
49
49
}
50
- body : not (.wgh-disabled ) .repository-content .js-issue-row .col-3 . text-right { /* Issue list Assignee alignment */
51
- max-width : 288 px !important ;
50
+ body : not (.wgh-disabled ) .repository-content .js-issue-row .text-right { /* Issue list Assignee alignment */
51
+ max-width : 303 px !important ;
52
52
}
53
53
54
54
/* Repository graph page */
@@ -61,8 +61,3 @@ body:not(.wgh-disabled) .gist-content .commit-create .CodeMirror {
61
61
min-height : 250px ;
62
62
height : calc (100vh - 500px ) !important ;
63
63
}
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
- }
You can’t perform that action at this time.
0 commit comments