mirror of https://gitlab.com/bashrc2/epicyon
Apply custom theme settings on designer screen
parent
74d87fe54c
commit
3e74267fd3
|
@ -177,6 +177,14 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str,
|
||||||
if os.path.isfile(themeFilename):
|
if os.path.isfile(themeFilename):
|
||||||
themeJson = loadJson(themeFilename)
|
themeJson = loadJson(themeFilename)
|
||||||
|
|
||||||
|
# set custom theme parameters
|
||||||
|
customVariablesFile = baseDir + '/accounts/theme.json'
|
||||||
|
if os.path.isfile(customVariablesFile):
|
||||||
|
customThemeParams = loadJson(customVariablesFile, 0)
|
||||||
|
if customThemeParams:
|
||||||
|
for variableName, value in customThemeParams.items():
|
||||||
|
themeJson[variableName] = value
|
||||||
|
|
||||||
themeForm = ''
|
themeForm = ''
|
||||||
cssFilename = baseDir + '/epicyon-profile.css'
|
cssFilename = baseDir + '/epicyon-profile.css'
|
||||||
if os.path.isfile(baseDir + '/epicyon.css'):
|
if os.path.isfile(baseDir + '/epicyon.css'):
|
||||||
|
|
Loading…
Reference in New Issue