Minor style fixes and improvements by SunsetTechuila · Pull Request #9419 · refined-github/refined-github · GitHub
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
7 changes: 4 additions & 3 deletions source/features/align-issue-labels.css
1 change: 1 addition & 0 deletions source/features/github-bugs.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ div[class^='PRIVATE_TreeView-item-visual']
div[class*='ActivityHeaderGridLayout'] {
display: flex;
flex-wrap: wrap;
row-gap: 2px;

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


> div[data-testid='comment-header-left-side-items'] {
flex-grow: 1;
Expand Down
2 changes: 1 addition & 1 deletion source/features/linkify-user-labels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function linkify(label: HTMLElement): void {

const url = new URL(buildRepoUrl('commits'));
url.searchParams.set('author', getAuthor(label));
wrap(label, <a className="Link--onHover color-fg-inherit rgh-linkify-user-labels" href={url.href} />);
wrap(label, <a className="Link--onHover no-underline color-fg-inherit rgh-linkify-user-labels" href={url.href} />);
Comment thread
SunsetTechuila marked this conversation as resolved.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before:

Image

}

const ariaLabelSelector = is(
Expand Down
23 changes: 23 additions & 0 deletions source/refined-github.css
Loading