Ensure only content gets clipped
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
FloatingGhost 2022-12-07 11:01:58 +00:00
parent a8e119b0f1
commit abc75c360b
3 changed files with 24 additions and 18 deletions

View File

@ -42,6 +42,10 @@
display: flex; display: flex;
padding: var(--status-margin, $status-margin); padding: var(--status-margin, $status-margin);
.content {
overflow: hidden;
}
> * { > * {
min-width: 0; min-width: 0;
} }

View File

@ -352,8 +352,10 @@
</div> </div>
</div> </div>
<div class="content">
<StatusContent <StatusContent
ref="content" ref="content"
class="status-content"
:status="status" :status="status"
:no-heading="noHeading" :no-heading="noHeading"
:highlight="highlight" :highlight="highlight"
@ -368,6 +370,7 @@
@mediapause="removeMediaPlaying($event)" @mediapause="removeMediaPlaying($event)"
@parseReady="setHeadTailLinks" @parseReady="setHeadTailLinks"
/> />
</div>
<div <div
v-if="inConversation && !isPreview && replies && replies.length" v-if="inConversation && !isPreview && replies && replies.length"
@ -534,6 +537,6 @@
</div> </div>
</template> </template>
<script src="./status.js" ></script> <script src="./status.js"></script>
<style src="./status.scss" lang="scss"></style> <style src="./status.scss" lang="scss"></style>

View File

@ -68,7 +68,6 @@
.StatusContent { .StatusContent {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
overflow: hidden;
img, video { img, video {
&.emoji { &.emoji {