diff options
Diffstat (limited to 'client/src')
5 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/shared/misc/help.component.scss b/client/src/app/shared/misc/help.component.scss index 0df8b86fa..fe64a270d 100644 --- a/client/src/app/shared/misc/help.component.scss +++ b/client/src/app/shared/misc/help.component.scss | |||
@@ -9,6 +9,7 @@ | |||
9 | background-image: url('../../../assets/images/global/help.svg'); | 9 | background-image: url('../../../assets/images/global/help.svg'); |
10 | background-color: #fff; | 10 | background-color: #fff; |
11 | border: none; | 11 | border: none; |
12 | margin: 5px; | ||
12 | } | 13 | } |
13 | 14 | ||
14 | /deep/ { | 15 | /deep/ { |
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.html b/client/src/app/videos/+video-edit/shared/video-edit.component.html index 77b554ad5..7e1be4467 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.html +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.html | |||
@@ -14,7 +14,7 @@ | |||
14 | <div class="form-group"> | 14 | <div class="form-group"> |
15 | <label class="label-tags">Tags</label> <span>(press Enter to add)</span> | 15 | <label class="label-tags">Tags</label> <span>(press Enter to add)</span> |
16 | <tag-input | 16 | <tag-input |
17 | [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages" | 17 | [validators]="tagValidators" [errorMessages]="tagValidatorsMessages" |
18 | formControlName="tags" maxItems="5" modelAsStrings="true" | 18 | formControlName="tags" maxItems="5" modelAsStrings="true" |
19 | ></tag-input> | 19 | ></tag-input> |
20 | </div> | 20 | </div> |
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.scss b/client/src/app/videos/+video-edit/shared/video-edit.component.scss index 58ed5ab98..1295cf098 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.scss +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.scss | |||
@@ -5,10 +5,6 @@ | |||
5 | @include peertube-select-container(auto); | 5 | @include peertube-select-container(auto); |
6 | } | 6 | } |
7 | 7 | ||
8 | .form-group-checkbox { | ||
9 | my-help { margin-left: 5px } | ||
10 | } | ||
11 | |||
12 | .video-edit { | 8 | .video-edit { |
13 | height: 100%; | 9 | height: 100%; |
14 | 10 | ||
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.ts b/client/src/app/videos/+video-edit/shared/video-edit.component.ts index eab0a898e..af4438bd2 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.ts | |||
@@ -30,7 +30,6 @@ export class VideoEditComponent implements OnInit { | |||
30 | @Input() videoPrivacies = [] | 30 | @Input() videoPrivacies = [] |
31 | @Input() userVideoChannels = [] | 31 | @Input() userVideoChannels = [] |
32 | 32 | ||
33 | tags: string[] = [] | ||
34 | videoCategories = [] | 33 | videoCategories = [] |
35 | videoLicences = [] | 34 | videoLicences = [] |
36 | videoLanguages = [] | 35 | videoLanguages = [] |
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 2e1e5bf65..8331c9fa3 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -227,6 +227,10 @@ p-table { | |||
227 | width: 250px !important; | 227 | width: 250px !important; |
228 | padding: 0 !important; | 228 | padding: 0 !important; |
229 | text-align: center; | 229 | text-align: center; |
230 | |||
231 | my-edit-button + my-delete-button { | ||
232 | margin-left: 5px; | ||
233 | } | ||
230 | } | 234 | } |
231 | 235 | ||
232 | p-paginator { | 236 | p-paginator { |