fix loading.gif size for both upload and deletion, force visiblity
This commit is contained in:
parent
33fe24dc3d
commit
1a1c100719
|
@ -15,7 +15,7 @@ var FileList={
|
||||||
// filename td
|
// filename td
|
||||||
td = $('<td></td>').attr({
|
td = $('<td></td>').attr({
|
||||||
"class": "filename",
|
"class": "filename",
|
||||||
"style": 'background-image:url('+iconurl+')'
|
"style": 'background-image:url('+iconurl+'); background-size: 16px;'
|
||||||
});
|
});
|
||||||
td.append('<input type="checkbox" />');
|
td.append('<input type="checkbox" />');
|
||||||
var link_elem = $('<a></a>').attr({
|
var link_elem = $('<a></a>').attr({
|
||||||
|
|
|
@ -669,7 +669,13 @@ div.crumb:active {
|
||||||
background-image: url('../img/actions/delete-hover.svg');
|
background-image: url('../img/actions/delete-hover.svg');
|
||||||
}
|
}
|
||||||
.edit-icon { background-image: url('../img/actions/rename.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 */
|
/* buttons */
|
||||||
button.loading {
|
button.loading {
|
||||||
|
|
Loading…
Reference in New Issue