mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-19 02:44:02 +00:00
Fix image expanding and truncation issue.
This commit is contained in:
parent
7e7bb2dc34
commit
432acf4bf7
2 changed files with 18 additions and 13 deletions
1
ui/assets/css/main.css
vendored
1
ui/assets/css/main.css
vendored
|
@ -158,3 +158,4 @@ hr {
|
||||||
.fl-1 {
|
.fl-1 {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
6
ui/src/components/post-listing.tsx
vendored
6
ui/src/components/post-listing.tsx
vendored
|
@ -136,7 +136,11 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{post.url && isImage(post.url) && !post.nsfw && !post.community_nsfw && (
|
{post.url &&
|
||||||
|
isImage(post.url) &&
|
||||||
|
!post.nsfw &&
|
||||||
|
!post.community_nsfw &&
|
||||||
|
!this.state.imageExpanded && (
|
||||||
<span
|
<span
|
||||||
title={i18n.t('expand_here')}
|
title={i18n.t('expand_here')}
|
||||||
class="pointer"
|
class="pointer"
|
||||||
|
|
Loading…
Reference in a new issue