Skip to content

Commit

Permalink
Fix overflowing public share names
Browse files Browse the repository at this point in the history
Beautify code according to coding style guidelines
  • Loading branch information
felixheidecke committed May 7, 2018
1 parent 9acfff9 commit d309411
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 d309411

Please sign in to comment.