File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 83
83
<div v-show="forceDisplayActions || displayActionsOnHoverFocus"
84
84
class="list-item__actions"
85
85
@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>
86
90
<NcActions ref="actions"
87
91
:primary="isActive || active"
88
92
:aria-label="computedActionsAriaLabel"
@@ -633,6 +637,15 @@ export default {
633
637
justify-content: center;
634
638
align-self: start;
635
639
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
+ }
636
649
}
637
650
638
651
}
You can’t perform that action at this time.
0 commit comments