Skip to content

Commit

Permalink
Bugfix: Long links in notifications are cut off (#9144)
Browse files Browse the repository at this point in the history
  • Loading branch information
lookacat authored Jun 2, 2023
1 parent eb90aca commit 6ac3c7c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changelog/unreleased/bugfix-notifications-link-overflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Notifications link overflow

We've fixed a bug that caused long links in notifications to overflow.

https://github.com/owncloud/web/pull/9144
https://github.com/owncloud/web/issues/9053
6 changes: 6 additions & 0 deletions packages/web-runtime/src/components/Topbar/Notifications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -354,5 +354,11 @@ export default {
margin-right: var(--oc-space-small);
}
}
&-link {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 300px;
}
}
</style>

0 comments on commit 6ac3c7c

Please sign in to comment.