Files
zjpb.net/templates/admin/custom_base.html

22 lines
844 B
HTML
Raw Normal View History

{% extends 'admin/base.html' %}
{% block head_css %}
{{ super() }}
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Noto+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Custom Admin Theme -->
<link href="{{ url_for('static', filename='css/admin-theme.css') }}" rel="stylesheet">
<style>
/* 强制应用亮色主题到body */
body {
background: #F3F3F3 !important;
color: #000000 !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif !important;
}
</style>
{% endblock %}
{% block body_class %}admin-theme{% endblock %}