Skip to content

Commit

Permalink
fix: remove redundant text color style
Browse files Browse the repository at this point in the history
from what I can tell it paints nicely, probably a left-over from
the Grapelli theme days
  • Loading branch information
asfaltboy committed Oct 8, 2022
1 parent cc87719 commit b127321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion advanced_filters/templates/admin/advanced_filters.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>{% trans "Create advanced filter" %}:</h1>
<thead>
<tr>
{% for field in formset.fields %}
<th style="color: black;">{{ field.label|capfirst }}</th>
<th>{{ field.label|capfirst }}</th>
{% endfor %}
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>{% trans "Change advanced filter" %}:</h1>
<thead>
<tr>
{% for field in formset.fields %}
<th style="color: black;">{{ field.label|capfirst }}</th>
<th>{{ field.label|capfirst }}</th>
{% endfor %}
</tr>
</thead>
Expand Down Expand Up @@ -64,4 +64,4 @@ <h1>{% trans "Change advanced filter" %}:</h1>
</div>
{% endwith %}
</form>
{% endblock content %}
{% endblock content %}

0 comments on commit b127321

Please sign in to comment.