web: fix text colour in delete form in dark mode

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-09-19 00:14:50 +02:00
parent bf09a54f35
commit c15d0c3d17
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ export class DeleteObjectsTable<T> extends Table<T> {
renderUsedBy(usedBy: UsedBy[]): TemplateResult {
if (usedBy.length < 1) {
return html` <span>${t`Not used by any other object.`}</span>`;
return html`<span>${t`Not used by any other object.`}</span>`;
}
return html`<ul class="pf-c-list">
${usedBy.map((ub) => {
@ -179,7 +179,7 @@ export class DeleteBulkForm extends ModalButton {
</section>
<section class="pf-c-page__main-section pf-m-light">
<form class="pf-c-form pf-m-horizontal">
<p>
<p class="pf-c-title">
${t`Are you sure you want to delete ${this.objects.length} ${this.objectLabel}?`}
</p>
</form>