We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc4e0f commit 422e3d9Copy full SHA for 422e3d9
1 file changed
apps/files_versions/src/components/Version.vue
@@ -45,7 +45,10 @@
45
disable-menu
46
disable-tooltip
47
:show-user-status="false" />
48
- <div>{{ versionAuthor }}</div>
+ <div class="version__info__author_name"
49
+ :title="versionAuthor">
50
+ {{ versionAuthor }}
51
+ </div>
52
</div>
53
54
</template>
@@ -349,12 +352,19 @@ export default defineComponent({
349
352
gap: 0.5rem;
350
353
color: var(--color-main-text);
351
354
font-weight: 500;
355
+ overflow: hidden;
356
357
&__label {
358
font-weight: 700;
359
// Fix overflow on narrow screens
360
overflow: hidden;
361
text-overflow: ellipsis;
362
+ min-width: 110px;
363
+ }
364
+
365
+ &__author_name {
366
367
+ text-overflow: ellipsis;
368
}
369
370
&__date {
0 commit comments