Skip to content
Snippets Groups Projects
Commit d56072cf authored by Raghu Nayyar's avatar Raghu Nayyar
Browse files

Merge pull request #8255 from owncloud/fix-public-download-button

keep long file names in one line to not overflow download button on mobile
parents f353e6f6 d82a31d1
No related branches found
No related tags found
No related merge requests found
......@@ -70,13 +70,26 @@ thead {
margin: 0;
}
.directDownload,
.directLink {
margin-bottom: 20px;
}
/* keep long file names in one line to not overflow download button on mobile */
.directDownload #download {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 90%;
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.directDownload .button img {
vertical-align: text-bottom;
}
.directLink label {
font-weight: normal;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment