updatestyles: Fix list of affected keys

This commit is contained in:
Raphael Michel
2021-05-05 22:33:16 +02:00
parent 63cfef43e4
commit 6820044461

View File

@@ -47,7 +47,7 @@ from pretix.multidomain.urlreverse import (
from pretix.presale.signals import sass_postamble, sass_preamble
logger = logging.getLogger('pretix.presale.style')
affected_keys = ['primary_font', 'primary_color', 'theme_color_success', 'theme_color_danger']
affected_keys = ['primary_font', 'primary_color', 'theme_color_success', 'theme_color_danger', 'theme_color_background', 'theme_round_borders']
def compile_scss(object, file="main.scss", fonts=True):