fix loading.gif size for both upload and deletion, force visiblity

This commit is contained in:
Jan-Christoph Borchardt 2013-07-30 10:44:01 +02:00
parent 33fe24dc3d
commit 1a1c100719
2 changed files with 8 additions and 2 deletions

View File

@ -15,7 +15,7 @@ var FileList={
// filename td
td = $('<td></td>').attr({
"class": "filename",
"style": 'background-image:url('+iconurl+')'
"style": 'background-image:url('+iconurl+'); background-size: 16px;'
});
td.append('<input type="checkbox" />');
var link_elem = $('<a></a>').attr({

View File

@ -669,7 +669,13 @@ div.crumb:active {
background-image: url('../img/actions/delete-hover.svg');
}
.edit-icon { background-image: url('../img/actions/rename.svg'); }
.progress-icon { background-image: url('../img/loading.gif'); }
.progress-icon {
background-image: url('../img/loading.gif');
background-size: 16px;
/* force show the loading icon, not only on hover */
opacity: 1 !important;
display: inline !important;
}
/* buttons */
button.loading {