Skip to content

Commit b127321

Browse files
committed
fix: remove redundant text color style
from what I can tell it paints nicely, probably a left-over from the Grapelli theme days
1 parent cc87719 commit b127321

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

advanced_filters/templates/admin/advanced_filters.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h1>{% trans "Create advanced filter" %}:</h1>
3636
<thead>
3737
<tr>
3838
{% for field in formset.fields %}
39-
<th style="color: black;">{{ field.label|capfirst }}</th>
39+
<th>{{ field.label|capfirst }}</th>
4040
{% endfor %}
4141
</tr>
4242
</thead>

advanced_filters/templates/admin/advanced_filters/change_form.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1>{% trans "Change advanced filter" %}:</h1>
2525
<thead>
2626
<tr>
2727
{% for field in formset.fields %}
28-
<th style="color: black;">{{ field.label|capfirst }}</th>
28+
<th>{{ field.label|capfirst }}</th>
2929
{% endfor %}
3030
</tr>
3131
</thead>
@@ -64,4 +64,4 @@ <h1>{% trans "Change advanced filter" %}:</h1>
6464
</div>
6565
{% endwith %}
6666
</form>
67-
{% endblock content %}
67+
{% endblock content %}

0 commit comments

Comments
 (0)