Put your CSS changes in a new CSS file in /static/css/my_flask_admin.css
Then rewrite the HTML template and include the following block:
{% block head_css %} {{ super() }} <link rel="stylesheet" href="{{ url_for('static', filename='css/my_flask_admin.css', _external=True) }}" ></link> {% endblock %}
The super() call loads the css source files, and the url_for(... call adds your css file afterwards and therefore applies your changes to the css source files.
source share