Some small css modifications
This commit is contained in:
parent
a0382b70d0
commit
763bed9ba0
5 changed files with 19 additions and 22 deletions
|
@ -29,6 +29,6 @@ menu {
|
|||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 30px;
|
||||
.panel_block:not(:last-child) {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
|
|
@ -12,12 +12,14 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="btn btn-default btn-file">
|
||||
<span>Select the video...</span>
|
||||
<input type="file" name="input_video" id="input_video">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="btn btn-default btn-file">
|
||||
<span>Select the video...</span>
|
||||
<input type="file" name="input_video" id="input_video">
|
||||
</div>
|
||||
|
||||
<span *ngIf="fileToUpload">{{ fileToUpload.name }}</span>
|
||||
<span *ngIf="fileToUpload">{{ fileToUpload.name }}</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="description">Description</label>
|
||||
|
|
|
@ -23,3 +23,11 @@
|
|||
display: inline-block;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#progress {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ export class VideosAddComponent implements OnInit {
|
|||
|
||||
progressall: (e, data) => {
|
||||
this.progressBar.value = data.loaded;
|
||||
this.progressBar.max= data.total;
|
||||
this.progressBar.max = data.total;
|
||||
},
|
||||
|
||||
done: (e, data) => {
|
||||
|
|
|
@ -7,18 +7,5 @@ footer {
|
|||
padding-top: 10px;
|
||||
text-align: center;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.search-group {
|
||||
.search-btn {
|
||||
position: relative;
|
||||
left: -40px;
|
||||
top: 0;
|
||||
|
||||
&:hover { text-decoration: none; }
|
||||
}
|
||||
}
|
||||
|
||||
.panel_block:not(:last-child) {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue