Compare commits

...

7 commits

Author SHA1 Message Date
Jay Sitter
18494e1966
Merge branch 'main' into tweak/thumbnail-fixed-width-height 2023-06-28 20:04:52 -04:00
Alec Armbruster
05b10a7c56
Merge branch 'main' into tweak/thumbnail-fixed-width-height 2023-06-28 13:59:40 -04:00
Alec Armbruster
202ab7c37f
remove .overflow-hidden 2023-06-28 10:55:17 -04:00
SleeplessOne1917
31daff70cb
Merge branch 'main' into tweak/thumbnail-fixed-width-height 2023-06-27 20:12:04 -04:00
Alec Armbruster
3ddff78d88
make hopefully final tweaks 2023-06-27 20:01:33 -04:00
Alec Armbruster
7fbfa2f0ef
Update src/shared/components/post/post-listing.tsx
Co-authored-by: Jay Sitter <jsit@users.noreply.github.com>
2023-06-27 19:55:40 -04:00
Alec Armbruster
1d20aa0644
add static width/height for post listing thumbnails 2023-06-27 17:31:00 -04:00
2 changed files with 7 additions and 7 deletions

View file

@ -198,9 +198,9 @@ blockquote {
.thumbnail {
object-fit: cover;
aspect-ratio: 4/3;
width: 100%;
max-height: 6rem;
aspect-ratio: 1/1;
width: 5rem;
height: 5rem;
}
.thumbnail svg {

View file

@ -333,7 +333,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
return (
<button
type="button"
className="d-inline-block position-relative mb-2 p-0 border-0"
className="thumbnail rounded overflow-hidden d-inline-block position-relative mb-2 p-0 border-0"
data-tippy-content={I18NextService.i18n.t("expand_here")}
onClick={linkEvent(this, this.handleImageExpandClick)}
aria-label={I18NextService.i18n.t("expand_here")}
@ -348,7 +348,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
} else if (!this.props.hideImage && url && thumbnail && this.imageSrc) {
return (
<a
className="text-body d-inline-block position-relative mb-2"
className="thumbnail rounded bg-light d-flex justify-content-center"
href={url}
rel={relTags}
title={url}
@ -1433,10 +1433,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
)}
<div className="col flex-grow-1">
<div className="row">
<div className="col-sm-3 col-lg-2 pe-0 post-media">
<div className="col flex-grow-0 px-0">
<div className="">{this.thumbnail()}</div>
</div>
<div className="col-12 col-sm-9 col-lg-10">
<div className="col flex-grow-1">
{this.postTitleLine()}
{this.createdLine()}
{this.commentsLine()}