From 97e132260f8e13b9dd5b97b138ed27a9ab343834 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Dec 2021 20:22:49 +0000 Subject: [PATCH] Include font sizes within theme designer --- webapp_themeDesigner.py | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/webapp_themeDesigner.py b/webapp_themeDesigner.py index 14b0a1f2d..163308b93 100644 --- a/webapp_themeDesigner.py +++ b/webapp_themeDesigner.py @@ -223,16 +223,29 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str, 'name="submitThemeDesigner" accesskey="' + submitKey + '">' + \ translate['Submit'] + '\n \n' - themeForm += ' \n' - themeForm += ' \n' - themeForm += ' \n' - themeForm += ' \n' - themeForm += ' \n' - themeForm += ' \n' + tableStr = '
\n' + tableStr += ' \n' + tableStr += ' \n' + tableStr += ' \n' + tableStr += ' \n' + tableStr += ' \n' + fontStr = '
\n' + tableStr + colorStr = '
\n' + tableStr for variableName, value in themeJson.items(): - if variableName.endswith('-color') or \ - variableName.endswith('-text'): + if 'font-size' in variableName: + variableNameStr = variableName.replace('-', ' ') + variableNameStr = variableNameStr.replace('font size', '').strip() + variableNameStr = variableNameStr.title() + fontStr += \ + '
' + fontStr += \ + '\n' + elif (variableName.endswith('-color') or + variableName.endswith('-text')): # only use colors defined as hex if not value.startswith('#'): if color_to_hex.get(value): @@ -249,15 +262,17 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str, if variableNameStr == 'cw': variableNameStr = 'content warning' variableNameStr = variableNameStr.title() - themeForm += \ + colorStr += \ ' ' - themeForm += \ + colorStr += \ '\n' - themeForm += '

\n' + colorStr += ' \n \n' + fontStr += ' \n \n' + themeForm += colorStr + fontStr themeForm += ' \n' themeForm += '\n' themeForm += htmlFooter()