Fix display of Download entry text

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/6652/head
Jan-Christoph Borchardt 7 years ago
parent 93d14dd315
commit 40a3b01838

@ -5,11 +5,6 @@
position: absolute !important;
}
/* hide text of download button, only show icon */
#download-text {
display: none;
}
/* hide size and date columns */
table th#headerSize,
table td.filesize,

@ -94,6 +94,10 @@ thead {
margin-right: auto;
}
.download-size {
opacity: .5;
}
.directLink label {
font-weight: normal;
opacity: .5;
@ -129,7 +133,6 @@ thead {
#remote_address {
width: 200px;
margin-right: 4px;
height: 31px;
}

@ -55,7 +55,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
<li>
<a href="<?php p($_['downloadURL']); ?>" id="download">
<span class="icon icon-download"></span>
<span id="download-text"><?php p($l->t('Download'))?> (<?php p($_['fileSize']) ?>)</span>
<?php p($l->t('Download'))?>&nbsp;<span class="download-size">(<?php p($_['fileSize']) ?>)</span>
</a>
</li>
<li>

Loading…
Cancel
Save