Add option to make active list filters more visible. #178

* add option to make active list filters more visible

* fix margins and border radius for selected filters
This commit is contained in:
Éric
2022-10-06 03:47:19 -04:00
committed by GitHub
parent 56f876d25e
commit f25d340738
7 changed files with 55 additions and 7 deletions
@@ -0,0 +1,18 @@
# Generated by Django 4.0.7 on 2022-09-28 17:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('admin_interface', '0025_theme_language_chooser_control'),
]
operations = [
migrations.AddField(
model_name='theme',
name='list_filter_highlight',
field=models.BooleanField(default=True, verbose_name='highlight active'),
),
]