Skip to content

Commit

Permalink
Fix overflowing public share names
Browse files Browse the repository at this point in the history
  • Loading branch information
felixheidecke committed Feb 9, 2018
1 parent ae23652 commit ad0a6bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/files_sharing/css/sharetabview.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,11 @@
}

.link-entry--title {
flex-grow : 1;
font-weight: bold;
flex-grow : 1;
font-weight : bold;
overflow-x : hidden;
text-overflow: ellipsis;
white-space : nowrap;
}

.link-entry--icon-button {
Expand Down

0 comments on commit ad0a6bb

Please sign in to comment.