76 lines
2.1 KiB
HTML
76 lines
2.1 KiB
HTML
{% extends 'admin/base.html' %}
|
|
{% load i18n admin_urls %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<style>
|
|
:root {
|
|
--primary: #79aec8;
|
|
--secondary: #417690;
|
|
--accent: #f5dd5d;
|
|
--primary-fg: #fff;
|
|
|
|
--body-fg: #333;
|
|
--body-bg: #fff;
|
|
--body-quiet-color: #666;
|
|
--body-loud-color: #000;
|
|
|
|
--header-color: #ffc;
|
|
--header-branding-color: var(--accent);
|
|
--header-bg: var(--secondary);
|
|
--header-link-color: var(--primary-fg);
|
|
|
|
--breadcrumbs-fg: #c4dce8;
|
|
--breadcrumbs-link-fg: var(--body-bg);
|
|
--breadcrumbs-bg: var(--primary);
|
|
|
|
--link-fg: #447e9b;
|
|
--link-hover-color: #036;
|
|
--link-selected-fg: #5b80b2;
|
|
|
|
--hairline-color: #e8e8e8;
|
|
--border-color: #ccc;
|
|
|
|
--error-fg: #ba2121;
|
|
|
|
--message-success-bg: #dfd;
|
|
--message-warning-bg: #ffc;
|
|
--message-error-bg: #ffefef;
|
|
|
|
--darkened-bg: #f8f8f8; /* A bit darker than --body-bg */
|
|
--selected-bg: #e4e4e4; /* E.g. selected table cells */
|
|
--selected-row: #ffc;
|
|
|
|
--button-fg: #fff;
|
|
--button-bg: var(--primary);
|
|
--button-hover-bg: #609ab6;
|
|
--default-button-bg: var(--secondary);
|
|
--default-button-hover-bg: #205067;
|
|
--close-button-bg: #888; /* Previously #bbb, contrast 1.92 */
|
|
--close-button-hover-bg: #747474;
|
|
--delete-button-bg: #ba2121;
|
|
--delete-button-hover-bg: #a41515;
|
|
|
|
--object-tools-fg: var(--button-fg);
|
|
--object-tools-bg: var(--close-button-bg);
|
|
--object-tools-hover-bg: var(--close-button-hover-bg);
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block userlinks %}
|
|
{% if site_url %}
|
|
<a href="{{ site_url }}" target="_blank">{% translate 'View site' %}</a> /
|
|
{% endif %}
|
|
{% if user.is_active and user.is_staff %}
|
|
{% url 'django-admindocs-docroot' as docsroot %}
|
|
{% if docsroot %}
|
|
<a href="{{ docsroot }}">{% translate 'Documentation' %}</a> /
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if user.has_usable_password %}
|
|
<a href="{% url 'admin:password_change' %}">{% translate 'Change password' %}</a> /
|
|
{% endif %}
|
|
<a href="{% url 'admin:logout' %}">{% translate 'Log out' %}</a>
|
|
{% endblock %}
|