Merge remote-tracking branch 'lemmy/main' into feat/hide-avatars-on-listings

* lemmy/main:
  feat(UI): Fix some link hover colors
This commit is contained in:
Jay Sitter 2023-06-25 17:49:37 -04:00
commit a9feae7da0
2 changed files with 7 additions and 7 deletions

View file

@ -84,7 +84,7 @@
margin-top: -6.5px; margin-top: -6.5px;
} }
.post-title a:visited { .post-title a:visited:not(:hover) {
color: var(--bs-gray) !important; color: var(--bs-gray) !important;
} }

View file

@ -451,8 +451,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<Link <Link
className={`d-inline ${ className={`d-inline ${
!post.featured_community && !post.featured_local !post.featured_community && !post.featured_local
? "text-body" ? "link-dark"
: "text-primary" : "link-primary"
}`} }`}
to={`/post/${post.id}`} to={`/post/${post.id}`}
title={I18NextService.i18n.t("comments")} title={I18NextService.i18n.t("comments")}
@ -477,8 +477,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<a <a
className={ className={
!post.featured_community && !post.featured_local !post.featured_community && !post.featured_local
? "text-body" ? "link-dark"
: "text-primary" : "link-primary"
} }
href={url} href={url}
title={url} title={url}
@ -561,10 +561,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
const url = post.url; const url = post.url;
return ( return (
<p className="d-flex text-muted align-items-center gap-1 small m-0"> <p className="small m-0">
{url && !(hostname(url) === getExternalHost()) && ( {url && !(hostname(url) === getExternalHost()) && (
<a <a
className="text-muted fst-italic" className="fst-italic link-dark link-opacity-75 link-opacity-100-hover"
href={url} href={url}
title={url} title={url}
rel={relTags} rel={relTags}