diff options
author | Chocobozzz <me@florianbigard.com> | 2019-02-11 14:09:23 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-02-11 14:09:23 +0100 |
commit | b718fd22374d64534bcfe69932cf562894abed6a (patch) | |
tree | 311d3c67e2a4d1f33ebdd1dc163527de9d33d0f7 /client/src/app/videos/+video-edit/shared | |
parent | adb115f5522bea4d52456a9fc5eb4140bb064476 (diff) | |
parent | 501e961199578129629cf0567033d13efced9904 (diff) | |
download | PeerTube-b718fd22374d64534bcfe69932cf562894abed6a.tar.gz PeerTube-b718fd22374d64534bcfe69932cf562894abed6a.tar.zst PeerTube-b718fd22374d64534bcfe69932cf562894abed6a.zip |
Merge branch 'develop' into pr/1285
Diffstat (limited to 'client/src/app/videos/+video-edit/shared')
4 files changed, 23 insertions, 26 deletions
diff --git a/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.html b/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.html index 30aefdbfc..19043eee6 100644 --- a/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.html +++ b/client/src/app/videos/+video-edit/shared/video-caption-add-modal.component.html | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | <div class="modal-header"> | 4 | <div class="modal-header"> |
5 | <h4 i18n class="modal-title">Add caption</h4> | 5 | <h4 i18n class="modal-title">Add caption</h4> |
6 | <span class="close" aria-label="Close" role="button" (click)="hide()"></span> | 6 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> |
7 | </div> | 7 | </div> |
8 | 8 | ||
9 | <div class="modal-body"> | 9 | <div class="modal-body"> |
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 23a71a068..2fb540170 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 | |||
@@ -135,11 +135,6 @@ | |||
135 | ></my-peertube-checkbox> | 135 | ></my-peertube-checkbox> |
136 | 136 | ||
137 | <my-peertube-checkbox | 137 | <my-peertube-checkbox |
138 | inputName="commentsEnabled" formControlName="commentsEnabled" | ||
139 | i18n-labelText labelText="Enable video comments" | ||
140 | ></my-peertube-checkbox> | ||
141 | |||
142 | <my-peertube-checkbox | ||
143 | *ngIf="waitTranscodingEnabled" | 138 | *ngIf="waitTranscodingEnabled" |
144 | inputName="waitTranscoding" formControlName="waitTranscoding" | 139 | inputName="waitTranscoding" formControlName="waitTranscoding" |
145 | i18n-labelText labelText="Wait transcoding before publishing the video" | 140 | i18n-labelText labelText="Wait transcoding before publishing the video" |
@@ -157,7 +152,7 @@ | |||
157 | 152 | ||
158 | <div class="captions-header"> | 153 | <div class="captions-header"> |
159 | <a (click)="openAddCaptionModal()" class="create-caption"> | 154 | <a (click)="openAddCaptionModal()" class="create-caption"> |
160 | <span class="icon icon-add"></span> | 155 | <my-global-icon iconName="add"></my-global-icon> |
161 | <ng-container i18n>Add another caption</ng-container> | 156 | <ng-container i18n>Add another caption</ng-container> |
162 | </a> | 157 | </a> |
163 | </div> | 158 | </div> |
@@ -230,6 +225,16 @@ | |||
230 | {{ formErrors.support }} | 225 | {{ formErrors.support }} |
231 | </div> | 226 | </div> |
232 | </div> | 227 | </div> |
228 | |||
229 | <my-peertube-checkbox | ||
230 | inputName="commentsEnabled" formControlName="commentsEnabled" | ||
231 | i18n-labelText labelText="Enable video comments" | ||
232 | ></my-peertube-checkbox> | ||
233 | |||
234 | <my-peertube-checkbox | ||
235 | inputName="downloadEnabled" formControlName="downloadEnabled" | ||
236 | i18n-labelText labelText="Enable download" | ||
237 | ></my-peertube-checkbox> | ||
233 | </div> | 238 | </div> |
234 | </ng-template> | 239 | </ng-template> |
235 | </ngb-tab> | 240 | </ngb-tab> |
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 25db8e8ed..bb775cb0a 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 | |||
@@ -23,10 +23,6 @@ my-peertube-checkbox { | |||
23 | display: block; | 23 | display: block; |
24 | } | 24 | } |
25 | 25 | ||
26 | input, select { | ||
27 | font-size: 15px | ||
28 | } | ||
29 | |||
30 | .label-tags + span { | 26 | .label-tags + span { |
31 | font-size: 15px; | 27 | font-size: 15px; |
32 | } | 28 | } |
@@ -42,7 +38,7 @@ my-peertube-checkbox { | |||
42 | text-align: right; | 38 | text-align: right; |
43 | 39 | ||
44 | .create-caption { | 40 | .create-caption { |
45 | @include create-button('../../../../assets/images/global/add.svg'); | 41 | @include create-button; |
46 | } | 42 | } |
47 | } | 43 | } |
48 | 44 | ||
@@ -100,13 +96,14 @@ my-peertube-checkbox { | |||
100 | display: inline-block; | 96 | display: inline-block; |
101 | margin-right: 25px; | 97 | margin-right: 25px; |
102 | 98 | ||
103 | color: #585858; | 99 | color: $grey-foreground-color; |
104 | font-size: 15px; | 100 | font-size: 15px; |
105 | } | 101 | } |
106 | 102 | ||
107 | .submit-button { | 103 | .submit-button { |
108 | @include peertube-button; | 104 | @include peertube-button; |
109 | @include orange-button; | 105 | @include orange-button; |
106 | @include button-with-icon(20px, 1px); | ||
110 | 107 | ||
111 | display: inline-block; | 108 | display: inline-block; |
112 | 109 | ||
@@ -119,16 +116,6 @@ my-peertube-checkbox { | |||
119 | color: inherit; | 116 | color: inherit; |
120 | font-weight: $font-semibold; | 117 | font-weight: $font-semibold; |
121 | } | 118 | } |
122 | |||
123 | .icon.icon-validate { | ||
124 | @include icon(20px); | ||
125 | |||
126 | cursor: inherit; | ||
127 | position: relative; | ||
128 | top: -1px; | ||
129 | margin-right: 4px; | ||
130 | background-image: url('../../../../assets/images/global/validate.svg'); | ||
131 | } | ||
132 | } | 119 | } |
133 | } | 120 | } |
134 | 121 | ||
@@ -176,10 +163,10 @@ p-calendar { | |||
176 | } | 163 | } |
177 | 164 | ||
178 | tag { | 165 | tag { |
179 | background-color: var(--inputColor) !important; | 166 | background-color: $grey-background-color !important; |
167 | color: #000 !important; | ||
180 | border-radius: 3px !important; | 168 | border-radius: 3px !important; |
181 | font-size: 15px !important; | 169 | font-size: 15px !important; |
182 | color: var(--mainForegroundColor) !important; | ||
183 | height: 30px !important; | 170 | height: 30px !important; |
184 | line-height: 30px !important; | 171 | line-height: 30px !important; |
185 | margin: 0 5px 0 0 !important; | 172 | margin: 0 5px 0 0 !important; |
@@ -202,7 +189,10 @@ p-calendar { | |||
202 | top: -1px; | 189 | top: -1px; |
203 | height: auto !important; | 190 | height: auto !important; |
204 | vertical-align: middle !important; | 191 | vertical-align: middle !important; |
205 | fill: #585858 !important; | 192 | |
193 | path { | ||
194 | fill: $grey-foreground-color !important; | ||
195 | } | ||
206 | } | 196 | } |
207 | 197 | ||
208 | &:hover { | 198 | &:hover { |
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 d02f18ee9..836452948 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 | |||
@@ -82,6 +82,7 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
82 | const defaultValues: any = { | 82 | const defaultValues: any = { |
83 | nsfw: 'false', | 83 | nsfw: 'false', |
84 | commentsEnabled: 'true', | 84 | commentsEnabled: 'true', |
85 | downloadEnabled: 'true', | ||
85 | waitTranscoding: 'true', | 86 | waitTranscoding: 'true', |
86 | tags: [] | 87 | tags: [] |
87 | } | 88 | } |
@@ -91,6 +92,7 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
91 | channelId: this.videoValidatorsService.VIDEO_CHANNEL, | 92 | channelId: this.videoValidatorsService.VIDEO_CHANNEL, |
92 | nsfw: null, | 93 | nsfw: null, |
93 | commentsEnabled: null, | 94 | commentsEnabled: null, |
95 | downloadEnabled: null, | ||
94 | waitTranscoding: null, | 96 | waitTranscoding: null, |
95 | category: this.videoValidatorsService.VIDEO_CATEGORY, | 97 | category: this.videoValidatorsService.VIDEO_CATEGORY, |
96 | licence: this.videoValidatorsService.VIDEO_LICENCE, | 98 | licence: this.videoValidatorsService.VIDEO_LICENCE, |