Skip to content

Commit

Permalink
Merge pull request #31369 from owncloud/stable10-fix-overflowing-publ…
Browse files Browse the repository at this point in the history
…ic-link-title

[Stable10] Fix overflowing public share names
  • Loading branch information
DeepDiver1975 authored May 8, 2018
2 parents 374aaef + d309411 commit 153135a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 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 Expand Up @@ -237,10 +240,9 @@
}

.user-share--permission-preview {
white-space : nowrap;
overflow : hidden;
-ms-text-overflow: ellipsis;
text-overflow : ellipsis;
white-space : nowrap;
overflow : hidden;
text-overflow: ellipsis;
}

.user-share--permission-preview li {
Expand Down

0 comments on commit 153135a

Please sign in to comment.