Replace .text-muted with .text-body-secondary

The CSS class .text-muted is deprecated and will be replaced by
.text-body-secondary.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2023-06-17 17:09:41 -03:00
parent 6427b1b931
commit c72bf239d7
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
<div class="card-body">
<h5 class="card-title visually-hidden">{{ form.descriptions.name }}</h5>
{% if form.descriptions.desc is not empty %}
<h6 class="card-subtitle mb-2 text-muted">{{ form.descriptions.desc|raw }}</h6>
<h6 class="card-subtitle mb-2 text-body-secondary">{{ form.descriptions.desc|raw }}</h6>
{% endif %}
<fieldset class="optbox">

View File

@ -21,7 +21,7 @@
{% if row.Checksum is not null %}
{{ row.Checksum }}
{% else %}
<em class="text-muted">NULL</em>
<em class="text-body-secondary">NULL</em>
{% endif %}
</td>
</tr>

View File

@ -16,7 +16,7 @@
<option value="{{ column.Field }}">{{ column.Field }}</option>
{% endfor %}
</select>
<small id="tableOrderFieldSelectHelp" class="form-text text-muted">
<small id="tableOrderFieldSelectHelp" class="form-text text-body-secondary">
{% trans %}(singly){% context %}Alter table order by a single field.{% endtrans %}
</small>
</div>