Compare commits

..

No commits in common. "2f06b0443acb3b25e1d0ef41acb08626059d97fd" and "dcbbe1554696fab6b991143510904b2c36ae84a9" have entirely different histories.

2 changed files with 4 additions and 13 deletions

View file

@ -230,7 +230,7 @@
width: unset;
height: unset;
max-width: calc(100% - 1.5em);
max-height: 90vh;
max-height: 55vh;
}
.box {
border: 3px solid var(--accent);
@ -253,7 +253,7 @@
img.expand,
video.expand {
height: unset;
max-height: 90vh;
max-height: 55vh;
max-width: 100%;
object-fit: contain;
}

View file

@ -1,7 +1,7 @@
use std::sync::Arc;
use leptos::*;
use crate::{prelude::*, URL_SENSITIVE};
use crate::prelude::*;
use apb::{field::OptionalString, target::Addressed, ActivityMut, Base, Collection, CollectionMut, Object, ObjectMut};
@ -119,16 +119,7 @@ pub fn Object(object: crate::Object) -> impl IntoView {
let post_image = object.image().get().and_then(|x| x.url().id().str()).map(|x| {
let (expand, set_expand) = create_signal(false);
view! {
<img
class="flex-pic box cursor"
class:flex-pic-expand=expand
src={move || if sensitive && !expand.get() {
URL_SENSITIVE.to_string()
} else {
x.clone()
}}
on:click=move|_| set_expand.set(!expand.get())
/>
<img src={x} class="flex-pic box cursor" class:flex-pic-expand=expand on:click=move|_| set_expand.set(!expand.get()) />
}
});