Skip to content

Commit

Permalink
Version 2.3.0 released (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocchetti authored Aug 10, 2024
1 parent 6474c60 commit dd6def0
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 28 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ It works on Mozilla Firefox 57 (Quantum) or superior. Compatible with private Gi

### Changelog

**2.3.0**
- Improved support for the "Blame" view ([Issue #21](https://github.com/fabiocchetti/wide-github/issues/21)).
- Minor fixes and general CSS tweaks.

**2.2.0**
- Support new UI and the updated code panel ([Issue #19](https://github.com/fabiocchetti/wide-github/issues/19)).

Expand Down
Binary file modified icons/Wide-GitHub_LogoExpanded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/wide-github-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/wide-github-96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/wide-github-disabled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

"manifest_version": 2,
"name": "Wide GitHub",
"version": "2.2.0",
"version": "2.3.0",

"description": "Makes GitHub layout wide on Mozilla Firefox.",
"description": "Makes GitHub's layout wide on Mozilla Firefox.",

"homepage_url": "https://github.com/fabiocchetti/wide-github",
"icons": {
Expand Down
50 changes: 24 additions & 26 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
body:not(.is-github-wide-disabled) #js-repo-pjax-container .repository-content .discussion-timeline,
body:not(.is-github-wide-disabled) .repository-content .capped-card-content {
width: 100% !important;
body:not(.is-github-wide-disabled) .application-main .container-lg,
body:not(.is-github-wide-disabled) .footer.container-lg {
margin-left: 0 !important;
max-width: none !important;
}

body:not(.is-github-wide-disabled) .application-main .container {
body:not(.is-github-wide-disabled) .application-main .container-lg {
margin-left: 0 !important;
min-width: 980px;
padding-left: 16px !important;
padding-right: 16px !important;
width: auto !important;
max-width: none !important;
}

body:not(.is-github-wide-disabled) .application-main .container-lg,
body:not(.is-github-wide-disabled) .footer.container-lg {
margin-left: 0 !important;
body:not(.is-github-wide-disabled) .application-main .container-xl {
max-width: none !important;
}

Expand All @@ -22,23 +18,31 @@ body:not(.is-github-wide-disabled) .gist-content-wrapper .container-lg {
max-width: none !important;
}

body:not(.is-github-wide-disabled) .gist-content-wrapper .container {
margin-left: 20px !important;
margin-right: 20px !important;
min-width: 980px;
width: auto !important;
body:not(.is-github-wide-disabled) .gist-content-wrapper .container-lg .h-card {
width: 250px !important;
}

body:not(.is-github-wide-disabled) .gist-content-wrapper .container-lg .h-card {
width: 252px !important;
body:not(.is-github-wide-disabled) #js-repo-pjax-container .js-issue-row .text-right {
max-width: 300px !important;
}

body:not(.is-github-wide-disabled) .repository-content .capped-card-content,
body:not(.is-github-wide-disabled) #js-repo-pjax-container .repository-content .discussion-timeline {
width: 100% !important;
}

body:not(.is-github-wide-disabled) #js-repo-pjax-container div[style="--sticky-pane-height:100vh"],
body:not(.is-github-wide-disabled) #js-repo-pjax-container div[style="--sticky-pane-height: 100vh;"] > div[class^='Box-sc-']:first-child {
max-width: none;
}
body:not(.is-github-wide-disabled) .Layout-main div[data-selector="repos-split-pane-content"] {
max-width: none !important;
}

body:not(.is-github-wide-disabled) .Layout-main div[style="--sticky-pane-height: 100vh;"] > div[class^="Box-sc-"] > div[class^="Box-sc-"] > div[class^="Box-sc-"] > div[class^="Box-sc-"]:nth-child(2) {
max-width: none !important;
body:not(.is-github-wide-disabled) .Layout-main div[style="--sticky-pane-height: 100vh;"] > div[class^='Box-sc-'] > div[class^='Box-sc-'] > div[class^='Box-sc-'] > div[class^='Box-sc-']:nth-child(2),
body:not(.is-github-wide-disabled) .Layout-main div[style="--sticky-pane-height:100vh"] > div[class^='Box-sc-'] > div[class^='Box-sc-'] > div[class^='Box-sc-'] > div[class^='Box-sc-']:nth-child(2) {
max-width: none;
}

body:not(.is-github-wide-disabled) .pr-toolbar {
Expand All @@ -62,9 +66,3 @@ body:not(.is-github-wide-disabled) .repository-content #all_commit_comments .com
body:not(.is-github-wide-disabled) .repository-content .timeline-new-comment {
max-width: 100% !important;
}

@media screen and (min-width: 767px) {
body:not(.is-github-wide-disabled) .repository-content .inline-comments .inline-comment-form {
max-width: calc(100vw - 96px) !important;
}
}

0 comments on commit dd6def0

Please sign in to comment.