mirror of https://github.com/Chocobozzz/PeerTube
Some small css modifications
parent
a0382b70d0
commit
763bed9ba0
|
@ -29,6 +29,6 @@ menu {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
.panel_block:not(:last-child) {
|
||||||
margin-top: 30px;
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,12 +12,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="btn btn-default btn-file">
|
<div class="form-group">
|
||||||
<span>Select the video...</span>
|
<div class="btn btn-default btn-file">
|
||||||
<input type="file" name="input_video" id="input_video">
|
<span>Select the video...</span>
|
||||||
</div>
|
<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">
|
<div class="form-group">
|
||||||
<label for="description">Description</label>
|
<label for="description">Description</label>
|
||||||
|
|
|
@ -23,3 +23,11 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ export class VideosAddComponent implements OnInit {
|
||||||
|
|
||||||
progressall: (e, data) => {
|
progressall: (e, data) => {
|
||||||
this.progressBar.value = data.loaded;
|
this.progressBar.value = data.loaded;
|
||||||
this.progressBar.max= data.total;
|
this.progressBar.max = data.total;
|
||||||
},
|
},
|
||||||
|
|
||||||
done: (e, data) => {
|
done: (e, data) => {
|
||||||
|
|
|
@ -7,18 +7,5 @@ footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
margin-top: 30px;
|
||||||
|
|
||||||
.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);
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue