﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33994	wrong position of {% block extrastyle %} in admin/base.html	Maxim Danilov	Jay Patel	"in admin/base.html 
{% block extrastyle %}{% endblock %} goes before {% block responsive %}...{% endblock %} 

i use **extrastyle** block to add my_extra.css styles to add extra css rules everywhere in admin. 
This is logically correct.

But it works not correctly, because after in template exists other block with responsive.css or responsive_rtl.css.

I can override block **responsive** to add my extra styles behind all css. But the Name of block **extrastyle** says: it should be done here.

Probably we can change the position of **extrastyle** block, to made it as a last block_for_css in <header> of the admin/base.html?

{{{
....
<head>
....
<-- not here {% block extrastyle %}{% endblock %} not here -- >
....
{% block responsive %}
    ....
{% endblock %}
<-- here  {% block extrastyle %}{% endblock %} here -->
{% block blockbots %}...{% endblock %}
<-- or here {% block extrastyle %}{% endblock %} or here -- >
</head>
}}}
"	Cleanup/optimization	closed	contrib.admin	4.0	Normal	fixed	admin, modeladmin, templates	Carlton Gibson	Accepted	0	0	0	0	0	0
