Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Wider Github

Wider Github is a Chrome extension that allows you to maximize your screen size when looking at codes on Github. This extension is not affiliated with Github.
Wider Github is a Chrome extension that allows you to maximize your screen size when looking at codes on Github. Works on commit code and READMEs. This extension is not affiliated with Github.

Download this repo at https://github.com/tmlee/wider_github/archive/master.zip

Expand Down
31 changes: 27 additions & 4 deletions regular.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
/* Code View */

#js-repo-pjax-container{
/*#js-repo-pjax-container{
width: 920px;
left: initial;
margin: initial;
position: initial;
}

left: initial;
z-index: initial;
width: initial;
margin: initial;
z-index: 0;
}*/

/* Gist */

Expand All @@ -26,8 +32,24 @@ div.column{
margin: initial;
}

/* Pull Request */
/* For Reamdes */
#readme {
position: relative;
left: 0px;
width: 100%;
z-index: 0;
}

/* For file/commit view */
div.file-box {
position: relative;
left: 0px;
width: 100%;
z-index: 0;
}

/* Pull Request */
/*
div.file .meta .info .css-truncate-target {
max-width: 600px;
}
Expand All @@ -36,4 +58,5 @@ div.file .meta .info {

div.site-footer, div#all_commit_comments, div.thread-subscription-status {
visibility: initial;
}
}*/

26 changes: 22 additions & 4 deletions widen.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* Code View */

#js-repo-pjax-container{
/*#js-repo-pjax-container{
width: 94%;
left: 0px;
margin: 0px 3%;
position: absolute;
}
z-index: 1;
}*/

/* Gist */

Expand All @@ -25,8 +26,24 @@ div.column{
margin: 0 1%;
}

/* Pull Request */
/* For Reamdes */
#readme {
position: absolute;
left: 10px;
width: 99%;
z-index: 1;
}

/* For file/commit view */
div.file-box {
position: absolute;
left: 10px;
width: 99%;
z-index: 1;
}

/* Pull Request */
/*
div.file .meta .info .css-truncate-target {
max-width: 85%;
}
Expand All @@ -35,4 +52,5 @@ div.file .meta .info {

div.site-footer, div#all_commit_comments, div.thread-subscription-status {
visibility: hidden;
}
}*/