Skip to content

Commit

Permalink
Merge pull request #28906 from owncloud/stable10-fh-fix_broken-trashb…
Browse files Browse the repository at this point in the history
…in-layout

[stable10] Fix overlapping selectively in default fileslist
  • Loading branch information
Vincent Petry committed Sep 5, 2017
2 parents b8c7092 + c28657c commit bdfd05b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions apps/files/css/files.css
Expand Up @@ -847,3 +847,28 @@ html.ie8 #controls .button.new {
#filestable tbody tr.canDrop {
background-color: rgba(255, 255, 140, 1);
}

/* Default files-list incl. sharing */

#app-content-files table td.filename .nametext,
#app-content-sharingin table td.filename .nametext,
#app-content-sharingout table td.filename .nametext {
position: static;
left: inherit;
}

#app-content-files.has-favorites #fileList td.filename a.name,
#app-content-sharingin.has-favorites #fileList td.filename a.name,
#app-content-sharingout.has-favorites #fileList td.filename a.name {
display: flex;
justify-content: space-between;
left: 50px;
margin-right: 50px;
}

#app-content-files .fileactions,
#app-content-sharingin .fileactions,
#app-content-sharingout .fileactions {
position: inherit;
right: inherit;
}

0 comments on commit bdfd05b

Please sign in to comment.