Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Sidebar cripples file name which is not visible #7475

Merged
merged 3 commits into from
Aug 18, 2022
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