mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
add description to transcoding profile selector
This commit is contained in:
parent
a59db27090
commit
149e4cc597
@ -885,15 +885,22 @@
|
||||
|
||||
<div class="form-group mt-4" [ngClass]="{ 'disabled-checkbox-extra': !isTranscodingEnabled() }">
|
||||
<label i18n for="transcodingProfile">Transcoding profile</label>
|
||||
<span class="text-muted ml-1" i18n>New transcoding profiles can be added by PeerTube plugins</span>
|
||||
<span class="text-muted ml-1" i18n>new transcoding profiles can be added by PeerTube plugins</span>
|
||||
|
||||
<div class="peertube-select-container">
|
||||
<select id="transcodingProfile" formControlName="profile" class="form-control">
|
||||
<option *ngFor="let vodTranscodingProfileOption of getAvailableTranscodingProfile('vod')" [value]="vodTranscodingProfileOption">
|
||||
{{ vodTranscodingProfileOption }}
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
<ng-select
|
||||
id="transcodingProfile"
|
||||
formControlName="profile"
|
||||
[items]="getAvailableTranscodingProfile('vod')"
|
||||
[clearable]="false"
|
||||
>
|
||||
<ng-template ng-option-tmp let-item="item" let-index="index">
|
||||
{{ item }}
|
||||
<ng-container *ngIf="item === 'default'">
|
||||
<br>
|
||||
<span class="text-muted">x264, targeting maximum device compatibility</span>
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
</ng-select>
|
||||
<div *ngIf="formErrors.transcoding.profile" class="form-error">{{ formErrors.transcoding.profile }}</div>
|
||||
</div>
|
||||
|
||||
|
@ -20,6 +20,11 @@ $ng-select-height: 30px;
|
||||
font-size: .9em;
|
||||
}
|
||||
|
||||
.ng-input,
|
||||
.ng-select .ng-select-container .ng-value-container {
|
||||
padding-left: 15px !important;
|
||||
}
|
||||
|
||||
.ng-select {
|
||||
&.ng-select-focused {
|
||||
&:not(.ng-select-opened) > .ng-select-container {
|
||||
@ -29,6 +34,11 @@ $ng-select-height: 30px;
|
||||
|
||||
.ng-select-container {
|
||||
background-color: pvar(--inputBackgroundColor);
|
||||
|
||||
}
|
||||
|
||||
.ng-arrow-wrapper {
|
||||
padding-right: 12px
|
||||
}
|
||||
|
||||
&.ng-select-single .ng-value-container .ng-value {
|
||||
|
Loading…
Reference in New Issue
Block a user