UX: responsive oneboxing with images in chat (#22824)

* UX: fix narrow oneboxing with images in chat

* UX: more responsive oneboxing

* UX: onebox-avatar limits

* ony flex non onebox-avatars
This commit is contained in:
chapoi 2023-07-27 13:57:30 +02:00 committed by GitHub
parent 3a11c82547
commit d10fd697b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,10 @@ $max_image_height: 150px;
.chat-message { .chat-message {
// append selectors to set images to a // append selectors to set images to a
// max height of $max_image_height // max height of $max_image_height
.chat-message-collapser .onebox img:not(.ytp-thumbnail-image, .onebox-avatar-inline),
.onebox img.onebox,
img:not(.ytp-thumbnail-image, .onebox-avatar-inline), .chat-uploads img,
.chat-message-collapser img.onebox, p img,
.chat-message-collapser .chat-uploads img,
.chat-message-collapser p img,
aside.onebox .onebox-body .aspect-image-full-size, aside.onebox .onebox-body .aspect-image-full-size,
aside.onebox .onebox-body .aspect-image-full-size img, aside.onebox .onebox-body .aspect-image-full-size img,
.chat-message-text p img:not(.emoji) { .chat-message-text p img:not(.emoji) {
@ -19,6 +17,46 @@ $max_image_height: 150px;
overflow: hidden; overflow: hidden;
} }
.onebox {
container-type: inline-size;
.thumbnail {
max-width: 40% !important;
&.onebox-avatar {
max-height: 100px;
width: 20%;
max-width: 60px;
margin-right: 0.5rem;
}
}
@container (width < 400px) {
.onebox-body {
&:not(:has(.thumbnail.onebox-avatar)) {
display: flex;
flex-direction: column;
}
h3 {
margin-block: 0.75rem 0;
}
p {
margin-top: 0.5rem;
}
.thumbnail {
max-width: 100% !important;
margin: 0;
&.onebox-avatar {
max-width: 20%;
margin-right: 0.5rem;
}
}
}
}
}
.chat-message-collapser .chat-message-collapser
.chat-message-collapser-header .chat-message-collapser-header
+ div + div