|
|
@@ -1,6 +1,11 @@
|
|
|
|
{% extends "admin/base.html" %}
|
|
|
|
{% extends "admin/base.html" %}
|
|
|
|
{% load i18n staticfiles admin_interface_tags %}
|
|
|
|
{% load i18n staticfiles admin_interface_tags %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
|
|
|
|
{% get_admin_interface_theme as theme %}
|
|
|
|
|
|
|
|
{% if theme.title %}{% trans theme.title %}{% else %}{% trans 'Django administration' %}{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block extrastyle %}
|
|
|
|
{% block extrastyle %}
|
|
|
|
{% get_admin_interface_theme as theme %}
|
|
|
|
{% get_admin_interface_theme as theme %}
|
|
|
|
<style type="text/css">
|
|
|
|
<style type="text/css">
|
|
|
@@ -122,20 +127,25 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button:active, input[type=submit]:active, input[type=button]:active,
|
|
|
|
.button:active, input[type=submit]:active, input[type=button]:active,
|
|
|
|
|
|
|
|
.button:focus, input[type=submit]:focus, input[type=button]:focus,
|
|
|
|
.button:hover, input[type=submit]:hover, input[type=button]:hover {
|
|
|
|
.button:hover, input[type=submit]:hover, input[type=button]:hover {
|
|
|
|
background:{{ theme.css_save_button_background_hover_color }};
|
|
|
|
background:{{ theme.css_save_button_background_hover_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button.default, input[type=submit].default, .submit-row input.default {
|
|
|
|
.button.default, input[type=submit].default, .submit-row input.default {
|
|
|
|
background:{{ theme.css_save_button_background_color }};
|
|
|
|
background:{{ theme.css_save_button_background_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button.default:active, input[type=submit].default:active,
|
|
|
|
.button.default:active, input[type=submit].default:active,
|
|
|
|
|
|
|
|
.button.default:focus, input[type=submit].default:focus,
|
|
|
|
.button.default:hover, input[type=submit].default:hover {
|
|
|
|
.button.default:hover, input[type=submit].default:hover {
|
|
|
|
background:{{ theme.css_save_button_background_hover_color }};
|
|
|
|
background:{{ theme.css_save_button_background_hover_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
color:{{ theme.css_save_button_text_color }};
|
|
|
|
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.submit-row a.deletelink:link,
|
|
|
|
.submit-row a.deletelink:link,
|
|
|
|