mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
Merged development into master
This commit is contained in:
commit
74c8e0997b
2 changed files with 8 additions and 1 deletions
|
@ -61,6 +61,7 @@
|
|||
height: 10px;
|
||||
z-index: -1;
|
||||
background: @pfm-purple;
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.has-error {
|
||||
|
@ -71,6 +72,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
&.uploading {
|
||||
.bar {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-processing {
|
||||
border-color: @blue;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
</div>
|
||||
|
||||
<ul class="uploads">
|
||||
<li ng-repeat="upload in data.queue" ng-class="{'has-error': upload.error != null, 'is-processing': upload.isUploading && upload.error == null && upload.progress >= 100}" ng-animate="'upload-queue'">
|
||||
<li ng-repeat="upload in data.queue" ng-class="{'uploading': upload.isUploading, 'has-error': upload.error != null, 'is-processing': upload.isUploading && upload.error == null && upload.progress >= 100}" ng-animate="'upload-queue'">
|
||||
<p>
|
||||
<span ng-show="!upload.success">
|
||||
<strong ng-show="upload.isUploading && upload.error == null && upload.progress >= 100">Processing</strong>
|
||||
|
|
Loading…
Reference in a new issue