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:
parent
6427b1b931
commit
c72bf239d7
@ -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">
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user