Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/unreleased/enhancement-redesign-shared-with-list
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ https://github.com/owncloud/web/pull/7310
https://github.com/owncloud/web/pull/7315
https://github.com/owncloud/web/pull/7372
https://github.com/owncloud/web/pull/7402
https://github.com/owncloud/web/pull/7475
https://github.com/owncloud/web/issues/7110
https://github.com/owncloud/web/issues/7340
7 changes: 6 additions & 1 deletion packages/web-app-files/src/components/SideBar/FileInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/>
</h3>
</div>
<private-link-item v-if="privateLinkEnabled" />
<private-link-item v-if="privateLinkEnabled" class="oc-ml-s" />
</div>
</template>

Expand Down Expand Up @@ -106,6 +106,10 @@ export default {
align-items: center;
grid-gap: 5px;

button {
white-space: nowrap;
}

&__body {
text-align: left;
font-size: 0.75rem;
Expand All @@ -114,6 +118,7 @@ export default {
font-size: 0.9rem;
font-weight: 600;
margin: 0;
word-break: break-all;
}
}

Expand Down