mirror of https://github.com/Chocobozzz/PeerTube
Align layout for create/edit video-playlists (my-account) on create/edit user (admin)
parent
03a3ad9194
commit
628c155338
|
@ -1,6 +1,11 @@
|
||||||
@import '_variables';
|
@import '_variables';
|
||||||
@import '_mixins';
|
@import '_mixins';
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-weight: $font-regular;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.video-channel-title {
|
.video-channel-title {
|
||||||
@include settings-big-title;
|
@include settings-big-title;
|
||||||
}
|
}
|
||||||
|
@ -37,11 +42,6 @@ input {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
|
||||||
font-weight: $font-regular;
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
@include peertube-textarea(500px, 150px);
|
@include peertube-textarea(500px, 150px);
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,33 @@
|
||||||
<div i18n class="form-sub-title" *ngIf="isCreation() === true">Create playlist</div>
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a routerLink="/my-account/video-playlists" i18n>My Playlists</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<ng-container *ngIf="isCreation()">
|
||||||
|
<li class="breadcrumb-item active" i18n>Create</li>
|
||||||
|
</ng-container>
|
||||||
|
<ng-container *ngIf="!isCreation()">
|
||||||
|
<li class="breadcrumb-item active" i18n>Edit</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
<a *ngIf="videoPlaylistToUpdate" [routerLink]="[ '/my-account/video-playlists/update', videoPlaylistToUpdate?.uuid ]">{{ videoPlaylistToUpdate?.displayName }}</a>
|
||||||
|
</li>
|
||||||
|
</ng-container>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
|
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
|
||||||
|
|
||||||
<form role="form" (ngSubmit)="formValidated()" [formGroup]="form">
|
<form role="form" (ngSubmit)="formValidated()" [formGroup]="form">
|
||||||
<div class="row">
|
|
||||||
|
<div class="form-row"> <!-- playlist grid -->
|
||||||
|
<div class="form-group col-12 col-lg-4 col-xl-3">
|
||||||
|
<div *ngIf="isCreation()" class="video-playlist-title" i18n>NEW PLAYLIST</div>
|
||||||
|
<div *ngIf="!isCreation() && videoPlaylistToUpdate" class="video-playlist-title" i18n>PLAYLIST</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group form-group-right col-12 col-lg-8 col-xl-9">
|
||||||
|
|
||||||
<div class="col-md-12 col-xl-6">
|
<div class="col-md-12 col-xl-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label i18n for="displayName">Display name</label>
|
<label i18n for="displayName">Display name</label>
|
||||||
|
@ -65,7 +89,14 @@
|
||||||
></my-preview-upload>
|
></my-preview-upload>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-row"> <!-- submit placement block -->
|
||||||
|
<div class="col-md-7 col-xl-5"></div>
|
||||||
|
<div class="col-md-5 col-xl-5 d-inline-flex">
|
||||||
|
<input type="submit" value="{{ getFormButtonTitle() }}" [disabled]="!form.valid">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="submit" value="{{ getFormButtonTitle() }}" [disabled]="!form.valid">
|
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
@import '_variables';
|
@import '_variables';
|
||||||
@import '_mixins';
|
@import '_mixins';
|
||||||
|
|
||||||
.form-sub-title {
|
label {
|
||||||
margin-bottom: 20px;
|
font-weight: $font-regular;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-playlist-title {
|
||||||
|
@include settings-big-title;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text] {
|
input[type=text] {
|
||||||
|
@ -25,3 +30,7 @@ input[type=submit] {
|
||||||
@include peertube-button;
|
@include peertube-button;
|
||||||
@include orange-button;
|
@include orange-button;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.breadcrumb {
|
||||||
|
@include breadcrumb;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue