2👍
✅
The correct code is:
{% block extrastyle %}
<style type="text/css">
body.login {background-color: #444444;}
</style>
{% endblock %}
The problem was the #
in the css which refers to an id, ie <some_tag id="body">
rather than <body>
. body.login
targets a body tag with a login
class, ie <body class="login">
, which is what the django admin site uses to identify the body of just the login screen.
Source:stackexchange.com