upload progress and icons were fixed
This commit is contained in:
parent
7eaa376126
commit
156274c109
4 changed files with 21 additions and 3 deletions
|
@ -15,6 +15,15 @@
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.copy-img:before {
|
||||||
|
content: url(/img/copy_icon.png);
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
overflow: hidden;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.copy-img {
|
.copy-img {
|
||||||
content: url(/img/copy_icon.png);
|
content: url(/img/copy_icon.png);
|
||||||
width: 32px;
|
width: 32px;
|
||||||
|
@ -24,6 +33,15 @@
|
||||||
position: relative;
|
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 {
|
.copy-bb-more {
|
||||||
content: url(/img/more_icon.png);
|
content: url(/img/more_icon.png);
|
||||||
width: 32px;
|
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 |
|
@ -17,7 +17,7 @@
|
||||||
sequentialUploads: true,
|
sequentialUploads: true,
|
||||||
progressall: function (e, data) {
|
progressall: function (e, data) {
|
||||||
var progress = parseInt(data.loaded / data.total * 100, 10);
|
var progress = parseInt(data.loaded / data.total * 100, 10);
|
||||||
$('#progress .bar').css(
|
$('#progress .progress-bar').css(
|
||||||
'width',
|
'width',
|
||||||
progress + '%'
|
progress + '%'
|
||||||
);
|
);
|
||||||
|
@ -26,10 +26,10 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div id="progress">
|
<div id="progress" class="container">
|
||||||
<div class="progress-bar" style="width: 0%;"></div>
|
<div class="progress-bar" style="width: 0%;"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="lastUploadLog"></div>
|
<div id="lastUploadLog" class="container"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- display images from server -->
|
<!-- display images from server -->
|
||||||
|
|
Loading…
Reference in a new issue