Fixed broken upload status style in Firefox

This commit is contained in:
Tobias Reich 2014-07-26 16:57:21 +02:00
parent b45112f4a8
commit f579579b58
3 changed files with 6 additions and 4 deletions

View File

@ -83,8 +83,8 @@
.upload_message .rows .row a.name { .upload_message .rows .row a.name {
float: left; float: left;
width: 70%;
padding: 5px 10px; padding: 5px 10px;
width: calc(70% - 20px);
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
white-space: nowrap; white-space: nowrap;
@ -92,10 +92,12 @@
} }
.upload_message .rows .row a.status { .upload_message .rows .row a.status {
float: right; float: left;
padding: 5px 10px; padding: 5px 10px;
width: calc(30% - 20px);
color: rgba(255, 255, 255, .5); color: rgba(255, 255, 255, .5);
font-size: 14px; font-size: 14px;
text-align: right;
} }
.upload_message .rows .row a.status { .upload_message .rows .row a.status {

View File

@ -176,7 +176,7 @@ upload = {
xhr.send(formData); xhr.send(formData);
} };
if (files.length<=0) return false; if (files.length<=0) return false;
if (albumID===false||visible.albums()===true) albumID = 0; if (albumID===false||visible.albums()===true) albumID = 0;

File diff suppressed because one or more lines are too long