mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-22 16:46:28 +01:00
Somehow this kinda works
This commit is contained in:
parent
72ff229dfb
commit
c30eaee4e2
2 changed files with 4 additions and 10 deletions
|
@ -121,7 +121,6 @@ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) {
|
||||||
'--height': `${height}px`,
|
'--height': `${height}px`,
|
||||||
aspectRatio: `${width} / ${height}`,
|
aspectRatio: `${width} / ${height}`,
|
||||||
};
|
};
|
||||||
const fixedWidth = width > height * 2;
|
|
||||||
|
|
||||||
if (isImage) {
|
if (isImage) {
|
||||||
// Note: type: unknown might not have width/height
|
// Note: type: unknown might not have width/height
|
||||||
|
@ -143,7 +142,7 @@ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) {
|
||||||
return (
|
return (
|
||||||
<Parent
|
<Parent
|
||||||
ref={parentRef}
|
ref={parentRef}
|
||||||
class={`media media-image ${fixedWidth ? 'media-fixed-width' : ''}`}
|
class={`media media-image`}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
data-orientation={orientation}
|
data-orientation={orientation}
|
||||||
style={
|
style={
|
||||||
|
@ -245,7 +244,7 @@ function Media({ media, to, showOriginal, autoAnimate, onClick = () => {} }) {
|
||||||
<Parent
|
<Parent
|
||||||
class={`media media-${isGIF ? 'gif' : 'video'} ${
|
class={`media media-${isGIF ? 'gif' : 'video'} ${
|
||||||
autoGIFAnimate ? 'media-contain' : ''
|
autoGIFAnimate ? 'media-contain' : ''
|
||||||
} ${fixedWidth ? 'media-fixed-width' : ''}`}
|
}`}
|
||||||
data-orientation={orientation}
|
data-orientation={orientation}
|
||||||
data-formatted-duration={formattedDuration}
|
data-formatted-duration={formattedDuration}
|
||||||
data-label={isGIF && !showOriginal && !autoGIFAnimate ? 'GIF' : ''}
|
data-label={isGIF && !showOriginal && !autoGIFAnimate ? 'GIF' : ''}
|
||||||
|
|
|
@ -597,15 +597,10 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100% !important;
|
max-width: 100% !important;
|
||||||
min-width: 44px;
|
min-width: 44px;
|
||||||
width: auto;
|
/* width: auto; */
|
||||||
min-height: 44px;
|
min-height: 44px;
|
||||||
/* width: min(var(--width), 100%); */
|
/* width: min(var(--width), 100%); */
|
||||||
/* max-height: min(var(--height), 33vh); */
|
width: min(fit-content, 100%);
|
||||||
height: min(160px, var(--height), 33vh);
|
|
||||||
}
|
|
||||||
.status .media-container.media-eq1 .media.media-fixed-width {
|
|
||||||
width: min(var(--width), 100%);
|
|
||||||
height: auto;
|
|
||||||
max-height: min(var(--height), 33vh);
|
max-height: min(var(--height), 33vh);
|
||||||
}
|
}
|
||||||
.status .media-container.media-eq1 .media[data-orientation='portrait'] {
|
.status .media-container.media-eq1 .media[data-orientation='portrait'] {
|
||||||
|
|
Loading…
Reference in a new issue