Add css_generic_link_active_color field to use on active tab (tabbed changeform). #232

This commit is contained in:
Fabio Caccamo
2023-04-18 16:10:02 +02:00
parent 55f2c86a47
commit 6f7a51bee8
6 changed files with 35 additions and 1 deletions
@@ -0,0 +1,24 @@
import colorfield.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("admin_interface", "0028_theme_show_fieldsets_as_tabs_and_more"),
]
operations = [
migrations.AddField(
model_name="theme",
name="css_generic_link_active_color",
field=colorfield.fields.ColorField(
blank=True,
default="#29B864",
help_text="#29B864",
image_field=None,
max_length=10,
samples=None,
verbose_name="link active color",
),
),
]