Skip to content
Merged
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
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ GitHub Enterprise is also supported. More info in the options.
- [The autocomplete on the issue search field is removed.](https://user-images.githubusercontent.com/1402241/42991841-1f057e4e-8c07-11e8-909c-b051db7a2a03.png)
- [Forks are hidden from a user's Repositories list (but they can still be shown)](https://user-images.githubusercontent.com/1402241/45133648-fe21be80-b1c8-11e8-9052-e38cb443efa9.png)
- [Reaction comments ("+1", "👍", …) are hidden](https://user-images.githubusercontent.com/1402241/45543717-d45f3c00-b847-11e8-84a5-8c439d0ad1a5.png) (except the maintainers') [but they can still be shown.](https://user-images.githubusercontent.com/1402241/45543720-d628ff80-b847-11e8-9fb6-758a3102e3a9.png)
- [Tall code blocks and quotes are limited in height.](https://github.com/sindresorhus/refined-github/issues/1123)
- [Forks and watchers counters are hidden.](https://user-images.githubusercontent.com/1402241/53681077-f3328b80-3d1e-11e9-9e29-2cb017141769.png)

### UI improvements
Expand Down
14 changes: 14 additions & 0 deletions source/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,20 @@ body > .footer li a {
cursor: pointer;
}

.comment-body blockquote,
.comment-body pre {
position: relative; /* OctoLinker compat: attach the purple balls to the scroll */
max-height: 30.5em;
overflow-y: auto;
}

.comment-body details blockquote,
.comment-body details pre,
.comment-body blockquote blockquote,
.comment-body blockquote pre {
max-height: none;
}

/* For 'add-jump-to-bottom-link' feature */
#rgh-jump-to-bottom-link {
display: inline-block; /* Avoid breaking link in two lines */
Expand Down