Fix help button position

This commit is contained in:
Chocobozzz 2024-11-27 14:59:24 +01:00
parent 36731b5a8e
commit 38d38c0e7a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 31 additions and 14 deletions

View File

@ -1,7 +1,10 @@
<form (ngSubmit)="updateDetails()" [formGroup]="form"> <form (ngSubmit)="updateDetails()" [formGroup]="form">
<div class="form-group"> <div class="form-group">
<div class="anchor" id="video-sensitive-content-policy"></div> <!-- video-sensitive-content-policy anchor --> <div class="anchor" id="video-sensitive-content-policy"></div> <!-- video-sensitive-content-policy anchor -->
<div class="pt-label-container">
<label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label> <label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
<my-help> <my-help>
<ng-template ptTemplate="customHtml"> <ng-template ptTemplate="customHtml">
<ng-container i18n> <ng-container i18n>
@ -9,6 +12,7 @@
</ng-container> </ng-container>
</ng-template> </ng-template>
</my-help> </my-help>
</div>
<div class="peertube-select-container"> <div class="peertube-select-container">
<select id="nsfwPolicy" formControlName="nsfwPolicy" class="form-control"> <select id="nsfwPolicy" formControlName="nsfwPolicy" class="form-control">
@ -22,12 +26,15 @@
<div class="form-group"> <div class="form-group">
<div class="anchor" id="video-languages-subtitles"></div> <!-- video-languages-subtitles anchor --> <div class="anchor" id="video-languages-subtitles"></div> <!-- video-languages-subtitles anchor -->
<div class="pt-label-container">
<label i18n for="videoLanguages">Only display videos in the following languages/subtitles</label> <label i18n for="videoLanguages">Only display videos in the following languages/subtitles</label>
<my-help> <my-help>
<ng-template ptTemplate="customHtml"> <ng-template ptTemplate="customHtml">
<ng-container i18n>In Recently added, Trending, Local, Most liked and Search pages</ng-container> <ng-container i18n>In Recently added, Trending, Local, Most liked and Search pages</ng-container>
</ng-template> </ng-template>
</my-help> </my-help>
</div>
<div> <div>
<my-select-languages inputId="videoLanguages" [maxLanguages]="20" formControlName="videoLanguages"></my-select-languages> <my-select-languages inputId="videoLanguages" [maxLanguages]="20" formControlName="videoLanguages"></my-select-languages>

View File

@ -207,6 +207,16 @@ label,
color: pvar(--fg-350); color: pvar(--fg-350);
} }
.pt-label-container {
margin-bottom: 0.5rem;
label {
display: inline;
@include margin-right(0.25rem);
}
}
code { code {
background-color: pvar(--bg-secondary-500); background-color: pvar(--bg-secondary-500);
color: pvar(--fg-400); color: pvar(--fg-400);