Add style to cancel button

pull/213/merge
Chocobozzz 2018-01-23 15:15:03 +01:00
parent 531ab5b627
commit e494f91e67
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 43 additions and 33 deletions

View File

@ -32,17 +32,15 @@
</div>
</div>
<div
*ngIf="isUploadingVideo"
>
<div *ngIf="isUploadingVideo" class="upload-progress-cancel">
<p-progressBar
[value]="videoUploadPercents"
[ngClass]="{ processing: videoUploadPercents === 100 && videoUploaded === false }"
></p-progressBar>
<input type="button" value="Cancel" (click)="cancelUpload()" />
<input *ngIf="videoUploaded === false" type="button" value="Cancel" (click)="cancelUpload()" />
</div>
<!-- Hidden because we need to load the component -->
<!-- Hidden because we want to load the component -->
<form [hidden]="!isUploadingVideo" novalidate [formGroup]="form">
<my-video-edit
[form]="form" [formErrors]="formErrors"

View File

@ -41,39 +41,51 @@
}
}
p-progressBar {
/deep/ .ui-progressbar {
margin-top: 25px !important;
margin-bottom: 40px !important;
font-size: 15px !important;
color: #fff !important;
height: 30px !important;
line-height: 30px !important;
border-radius: 3px !important;
background-color: rgba(11, 204, 41, 0.16) !important;
.upload-progress-cancel {
display: flex;
margin-top: 25px;
margin-bottom: 40px;
.ui-progressbar-value {
background-color: #0BCC29 !important;
p-progressBar {
flex-grow: 1;
/deep/ .ui-progressbar {
font-size: 15px !important;
color: #fff !important;
height: 30px !important;
line-height: 30px !important;
border-radius: 3px !important;
background-color: rgba(11, 204, 41, 0.16) !important;
.ui-progressbar-value {
background-color: #0BCC29 !important;
}
.ui-progressbar-label {
text-align: left;
padding-left: 18px;
margin-top: 0 !important;
}
}
.ui-progressbar-label {
text-align: left;
padding-left: 18px;
margin-top: 0 !important;
}
}
&.processing {
/deep/ .ui-progressbar-label {
// Same color as background to hide "100%"
color: rgba(11, 204, 41, 0.16) !important;
&.processing {
/deep/ .ui-progressbar-label {
// Same color as background to hide "100%"
color: rgba(11, 204, 41, 0.16) !important;
&::before {
content: 'Processing...';
color: #fff;
&::before {
content: 'Processing...';
color: #fff;
}
}
}
}
input {
@include peertube-button;
@include grey-button;
margin-left: 10px;
}
}

View File

@ -99,8 +99,8 @@ export class VideoAddComponent extends FormReactive implements OnInit {
this.videoUploadObservable.unsubscribe()
this.isUploadingVideo = false
this.videoUploadPercents = 0
this.notificationsService.error('Error', 'Upload cancelled')
this.videoUploadObservable = null
this.notificationsService.info('Info', 'Upload cancelled')
}
}