diff --git a/django/contrib/admin/static/admin/css/base.css b/django/contrib/admin/static/admin/css/base.css
index fd011a3f9a..087037a4de 100644
a
|
b
|
|
2 | 2 | DJANGO Admin styles |
3 | 3 | */ |
4 | 4 | |
5 | | @import url(fonts.css); |
6 | | |
7 | 5 | body { |
8 | 6 | margin: 0; |
9 | 7 | padding: 0; |
diff --git a/django/contrib/admin/templates/admin/base.html b/django/contrib/admin/templates/admin/base.html
index 2cf5137070..2f2040f392 100644
a
|
b
|
|
3 | 3 | <html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> |
4 | 4 | <head> |
5 | 5 | <title>{% block title %}{% endblock %}</title> |
| 6 | {% block adminfonts %}<link rel="stylesheet" type="text/css" href="{% static "admin/css/fonts.css" %}">{% endblock %} |
6 | 7 | <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}"> |
7 | 8 | {% block extrastyle %}{% endblock %} |
8 | 9 | {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}">{% endif %} |