1
0
Fork 0

Some small css modifications

This commit is contained in:
Chocobozzz 2016-03-16 20:59:56 +01:00
parent a0382b70d0
commit 763bed9ba0
5 changed files with 19 additions and 22 deletions

View File

@ -29,6 +29,6 @@ menu {
}
}
footer {
margin-top: 30px;
.panel_block:not(:last-child) {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

View File

@ -12,12 +12,14 @@
</div>
</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>
</div>
<div class="form-group">
<label for="description">Description</label>

View File

@ -23,3 +23,11 @@
display: inline-block;
margin-left: 10px;
}
.form-group {
margin-bottom: 10px;
}
#progress {
margin-bottom: 10px;
}

View File

@ -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) => {

View File

@ -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;
}