upload progress and icons were fixed

This commit is contained in:
Denis Fedoseev 2018-08-03 23:19:35 +03:00
parent 7eaa376126
commit 156274c109
4 changed files with 21 additions and 3 deletions

View file

@ -15,6 +15,15 @@
padding: 5px;
}
.copy-img:before {
content: url(/img/copy_icon.png);
width: 32px;
height: 32px;
overflow: hidden;
cursor: pointer;
position: relative;
}
.copy-img {
content: url(/img/copy_icon.png);
width: 32px;
@ -24,6 +33,15 @@
position: relative;
}
.copy-bb-more:before {
content: url(/img/more_icon.png);
width: 32px;
height: 32px;
overflow: hidden;
cursor: pointer;
position: relative;
}
.copy-bb-more {
content: url(/img/more_icon.png);
width: 32px;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 600 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 416 B

View file

@ -17,7 +17,7 @@
sequentialUploads: true,
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#progress .bar').css(
$('#progress .progress-bar').css(
'width',
progress + '%'
);
@ -26,10 +26,10 @@
});
</script>
<div id="progress">
<div id="progress" class="container">
<div class="progress-bar" style="width: 0%;"></div>
</div>
<div id="lastUploadLog"></div>
<div id="lastUploadLog" class="container"></div>
</div>
<!-- display images from server -->