Skip to content

Commit c247975

Browse files
committed
fix(EnvelopeSkeleton): add filler on hover to prevent text shifting
Signed-off-by: Grigory Vodyanov <scratchx@gmx.com>
1 parent 07f71c2 commit c247975

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/components/EnvelopeSkeleton.vue

+13
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@
8383
<div v-show="forceDisplayActions || displayActionsOnHoverFocus"
8484
class="list-item__actions"
8585
@focusout="handleBlur">
86+
<!-- These details aren't actually displayed, they are just there to prevent text jittering on hover -->
87+
<div class="list-item__actions__filler">
88+
<slot name="list-item__actions__filler">{{ details }}</slot>
89+
</div>
8690
<NcActions ref="actions"
8791
:primary="isActive || active"
8892
:aria-label="computedActionsAriaLabel"
@@ -633,6 +637,15 @@ export default {
633637
justify-content: center;
634638
align-self: start;
635639
margin-top: 0;
640+
display: flex;
641+
flex-direction: column-reverse;
642+
align-items: flex-end;
643+
644+
&__filler {
645+
padding-right: calc(var(--default-grid-baseline) * 2);
646+
visibility: hidden;
647+
margin-left: calc(var(--default-grid-baseline) * 2 + 1px);
648+
}
636649
}
637650

638651
}

0 commit comments

Comments
 (0)