Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f9d502e4f | |||
| c961de3391 | |||
| aec7ede184 | |||
| d338e5914e | |||
| 36971ad662 | |||
| d2c8885afa | |||
| e9b0694c0b | |||
| 14aa681e7d | |||
| c2e3545f46 | |||
| aed5afbfa7 | |||
| 9b7c6ee3fe | |||
| a8322872ab |
@@ -1,6 +1,2 @@
|
|||||||
github: [fabiocaccamo]
|
github: [fabiocaccamo]
|
||||||
patreon: fabiocaccamo
|
|
||||||
ko_fi: fabiocaccamo
|
|
||||||
liberapay: fabiocaccamo
|
|
||||||
issuehunt: fabiocaccamo
|
|
||||||
custom: ['https://www.paypal.me/fabiocaccamo']
|
custom: ['https://www.paypal.me/fabiocaccamo']
|
||||||
|
|||||||
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.16.1](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.16.1) - 2021-04-07
|
||||||
|
- Fixed style of "Delete" and "Save" buttons in the delete confirmation page. #123
|
||||||
|
- Overridden dark-mode css variables introduced in `django 3.2`. #124
|
||||||
|
|
||||||
|
## [0.16.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.16.0) - 2021-03-30
|
||||||
|
- Added customizable colors for selected apps and models in dashboard. #122
|
||||||
|
- Added `responsive_rtl.css` stylesheet. #98
|
||||||
|
- Updated `vazir-font` version to `27.2.2`. #98
|
||||||
|
|
||||||
## [0.15.6](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.15.6) - 2021-03-26
|
## [0.15.6](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.15.6) - 2021-03-26
|
||||||
- Fixed `show_change_link` related modal support. #120
|
- Fixed `show_change_link` related modal support. #120
|
||||||
- Fixed inline changelink style.
|
- Fixed inline changelink style.
|
||||||
|
|||||||
@@ -101,8 +101,10 @@ You can add **theme support to existing third-party libraries** using the follow
|
|||||||
- `--admin-interface-header-link-color`
|
- `--admin-interface-header-link-color`
|
||||||
- `--admin-interface-header-link_hover-color`
|
- `--admin-interface-header-link_hover-color`
|
||||||
- `--admin-interface-module-background-color`
|
- `--admin-interface-module-background-color`
|
||||||
|
- `--admin-interface-module-background-selected-color`
|
||||||
- `--admin-interface-module-text-color`
|
- `--admin-interface-module-text-color`
|
||||||
- `--admin-interface-module-link-color`
|
- `--admin-interface-module-link-color`
|
||||||
|
- `--admin-interface-module-link-selected-color`
|
||||||
- `--admin-interface-module-link-hover-color`
|
- `--admin-interface-module-link-hover-color`
|
||||||
- `--admin-interface-generic-link-color`
|
- `--admin-interface-generic-link-color`
|
||||||
- `--admin-interface-generic-link-hover-color`
|
- `--admin-interface-generic-link-hover-color`
|
||||||
@@ -161,6 +163,19 @@ Released under [MIT License](LICENSE.txt).
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Supporting
|
||||||
|
|
||||||
|
I would like to spend more time on this project, especially to improve it and adding new features.
|
||||||
|
|
||||||
|
As everyone knows open-source projects takes up a lot of time that is unpaid. :money_with_wings:
|
||||||
|
|
||||||
|
If you are using this package in commercial project(s), please consider the idea to become a sponsor or donating once:
|
||||||
|
|
||||||
|
- [GitHub Sponsor](https://github.com/sponsors/fabiocaccamo)
|
||||||
|
- [PayPal](https://www.paypal.me/fabiocaccamo)
|
||||||
|
- BTC: bc1q2t0pv8z3udpyuvfnx5kskhqdad4dcvtfuzmvjw
|
||||||
|
- ETH: 0x8B55Fb7798b5A9F797A4455C00821B6e53daca74
|
||||||
|
|
||||||
## See also
|
## See also
|
||||||
|
|
||||||
- [`django-colorfield`](https://github.com/fabiocaccamo/django-colorfield) - simple color field for models with a nice color-picker in the admin. 🎨
|
- [`django-colorfield`](https://github.com/fabiocaccamo/django-colorfield) - simple color field for models with a nice color-picker in the admin. 🎨
|
||||||
|
|||||||
@@ -71,8 +71,10 @@ class ThemeAdmin(admin.ModelAdmin):
|
|||||||
'classes': ('wide', ),
|
'classes': ('wide', ),
|
||||||
'fields': (
|
'fields': (
|
||||||
'css_module_background_color',
|
'css_module_background_color',
|
||||||
|
'css_module_background_selected_color',
|
||||||
'css_module_text_color',
|
'css_module_text_color',
|
||||||
'css_module_link_color',
|
'css_module_link_color',
|
||||||
|
'css_module_link_selected_color',
|
||||||
'css_module_link_hover_color',
|
'css_module_link_hover_color',
|
||||||
'css_module_rounded_corners',
|
'css_module_rounded_corners',
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
import colorfield.fields
|
||||||
|
from django.db import migrations
|
||||||
|
from django.db.models import F
|
||||||
|
|
||||||
|
def default_link_selected(apps, schema_editor):
|
||||||
|
Theme = apps.get_model("admin_interface", "Theme")
|
||||||
|
Theme.objects.update(css_module_link_selected_color=F('css_module_link_color'))
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('admin_interface', '0019_add_form_sticky'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='theme',
|
||||||
|
name='css_module_background_selected_color',
|
||||||
|
field=colorfield.fields.ColorField(blank=True, default='#FFFFCC', help_text='#FFFFCC', max_length=10, verbose_name='background selected color'),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='theme',
|
||||||
|
name='css_module_link_selected_color',
|
||||||
|
field=colorfield.fields.ColorField(blank=True, default='#FFFFFF', help_text='#FFFFFF', max_length=10, verbose_name='link selected color'),
|
||||||
|
),
|
||||||
|
migrations.RunPython(default_link_selected),
|
||||||
|
]
|
||||||
@@ -178,6 +178,12 @@ class Theme(models.Model):
|
|||||||
help_text='#44B78B',
|
help_text='#44B78B',
|
||||||
max_length=10,
|
max_length=10,
|
||||||
verbose_name=_('background color'))
|
verbose_name=_('background color'))
|
||||||
|
css_module_background_selected_color = ColorField(
|
||||||
|
blank=True,
|
||||||
|
default='#FFFFCC',
|
||||||
|
help_text='#FFFFCC',
|
||||||
|
max_length=10,
|
||||||
|
verbose_name=_('background selected color'))
|
||||||
css_module_text_color = ColorField(
|
css_module_text_color = ColorField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default='#FFFFFF',
|
default='#FFFFFF',
|
||||||
@@ -190,6 +196,12 @@ class Theme(models.Model):
|
|||||||
help_text='#FFFFFF',
|
help_text='#FFFFFF',
|
||||||
max_length=10,
|
max_length=10,
|
||||||
verbose_name=_('link color'))
|
verbose_name=_('link color'))
|
||||||
|
css_module_link_selected_color = ColorField(
|
||||||
|
blank=True,
|
||||||
|
default='#FFFFFF',
|
||||||
|
help_text='#FFFFFF',
|
||||||
|
max_length=10,
|
||||||
|
verbose_name=_('link selected color'))
|
||||||
css_module_link_hover_color = ColorField(
|
css_module_link_hover_color = ColorField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default='#C9F0DD',
|
default='#C9F0DD',
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ https://github.com/fabiocaccamo/django-admin-interface
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
{% if current_lang == 'fa' %}
|
{% if current_lang == 'fa' %}
|
||||||
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v26.0.2/dist/font-face.css" rel="stylesheet" type="text/css" />
|
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v27.2.2/dist/font-face.css" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -48,7 +48,8 @@ https://github.com/fabiocaccamo/django-admin-interface
|
|||||||
{% get_admin_interface_version as version %}
|
{% get_admin_interface_version as version %}
|
||||||
{# https://github.com/elky/django-flat-responsive#important-note #}
|
{# https://github.com/elky/django-flat-responsive#important-note #}
|
||||||
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||||||
<link rel="stylesheet" href="{% static 'admin/css/responsive.css' %}?v={{ version }}">
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/responsive.css' %}?v={{ version }}">
|
||||||
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/responsive_rtl.css' %}?v={{ version }}" />
|
||||||
{% include "admin_interface/favicon.html" %}
|
{% include "admin_interface/favicon.html" %}
|
||||||
{% include "admin_interface/related-modal.html" %}
|
{% include "admin_interface/related-modal.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -1,4 +1,48 @@
|
|||||||
:root {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root .admin-interface {
|
||||||
|
--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;
|
||||||
|
--selected-bg: #e4e4e4;
|
||||||
|
--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;
|
||||||
|
--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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:root .admin-interface {
|
||||||
--admin-interface-title-color: {{ theme.title_color }};
|
--admin-interface-title-color: {{ theme.title_color }};
|
||||||
--admin-interface-logo-color: {{ theme.logo_color }};
|
--admin-interface-logo-color: {{ theme.logo_color }};
|
||||||
--admin-interface-env-color: {{ theme.env_color }};
|
--admin-interface-env-color: {{ theme.env_color }};
|
||||||
@@ -7,8 +51,10 @@
|
|||||||
--admin-interface-header-link-color: {{ theme.css_header_link_color }};
|
--admin-interface-header-link-color: {{ theme.css_header_link_color }};
|
||||||
--admin-interface-header-link_hover-color: {{ theme.css_header_link_hover_color }};
|
--admin-interface-header-link_hover-color: {{ theme.css_header_link_hover_color }};
|
||||||
--admin-interface-module-background-color: {{ theme.css_module_background_color }};
|
--admin-interface-module-background-color: {{ theme.css_module_background_color }};
|
||||||
|
--admin-interface-module-background-selected-color: {{ theme.css_module_background_selected_color }};
|
||||||
--admin-interface-module-text-color: {{ theme.css_module_text_color }};
|
--admin-interface-module-text-color: {{ theme.css_module_text_color }};
|
||||||
--admin-interface-module-link-color: {{ theme.css_module_link_color }};
|
--admin-interface-module-link-color: {{ theme.css_module_link_color }};
|
||||||
|
--admin-interface-module-link-selected-color: {{ theme.css_module_link_selected_color }};
|
||||||
--admin-interface-module-link-hover-color: {{ theme.css_module_link_hover_color }};
|
--admin-interface-module-link-hover-color: {{ theme.css_module_link_hover_color }};
|
||||||
--admin-interface-generic-link-color: {{ theme.css_generic_link_color }};
|
--admin-interface-generic-link-color: {{ theme.css_generic_link_color }};
|
||||||
--admin-interface-generic-link-hover-color: {{ theme.css_generic_link_hover_color }};
|
--admin-interface-generic-link-hover-color: {{ theme.css_generic_link_hover_color }};
|
||||||
@@ -126,7 +172,7 @@
|
|||||||
|
|
||||||
.admin-interface #nav-sidebar .current-app .section:link,
|
.admin-interface #nav-sidebar .current-app .section:link,
|
||||||
.admin-interface #nav-sidebar .current-app .section:visited {
|
.admin-interface #nav-sidebar .current-app .section:visited {
|
||||||
color: {{ theme.css_module_link_color }};
|
color: {{ theme.css_module_link_selected_color }};
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -136,11 +182,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface #nav-sidebar .current-model {
|
.admin-interface #nav-sidebar .current-model {
|
||||||
background: #FFFFCC;
|
background: {{ theme.css_module_background_selected_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface #changelist table tbody tr.selected {
|
.admin-interface #changelist table tbody tr.selected {
|
||||||
background-color: #FFFFCC;
|
background-color: {{ theme.css_module_background_selected_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .module h2,
|
.admin-interface .module h2,
|
||||||
@@ -272,19 +318,22 @@
|
|||||||
.admin-interface .button.default:hover,
|
.admin-interface .button.default:hover,
|
||||||
.admin-interface input[type=submit].default:active,
|
.admin-interface input[type=submit].default:active,
|
||||||
.admin-interface input[type=submit].default:focus,
|
.admin-interface input[type=submit].default:focus,
|
||||||
.admin-interface input[type=submit].default:hover {
|
.admin-interface input[type=submit].default:hover,
|
||||||
|
.admin-interface.delete-confirmation form .cancel-link: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;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .submit-row a.deletelink:link,
|
.admin-interface .submit-row a.deletelink:link,
|
||||||
.admin-interface .submit-row a.deletelink:visited {
|
.admin-interface .submit-row a.deletelink:visited,
|
||||||
|
.admin-interface.delete-confirmation form input[type="submit"] {
|
||||||
background:{{ theme.css_delete_button_background_color }};
|
background:{{ theme.css_delete_button_background_color }};
|
||||||
color:{{ theme.css_delete_button_text_color }};
|
color:{{ theme.css_delete_button_text_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface .submit-row a.deletelink:hover {
|
.admin-interface .submit-row a.deletelink:hover,
|
||||||
|
.admin-interface.delete-confirmation form input[type="submit"]:hover {
|
||||||
background:{{ theme.css_delete_button_background_hover_color }};
|
background:{{ theme.css_delete_button_background_hover_color }};
|
||||||
color:{{ theme.css_delete_button_text_color }};
|
color:{{ theme.css_delete_button_text_color }};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ https://github.com/jmrivas86/django-json-widget
|
|||||||
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected,
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected,
|
||||||
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus,
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus,
|
||||||
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover {
|
.admin-interface div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover {
|
||||||
background-color: #FFFFCC;
|
background-color: {{ theme.css_module_background_selected_color }};
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.15.6'
|
__version__ = '0.16.1'
|
||||||
|
|||||||
Reference in New Issue
Block a user