Light theme font size

main
Bob Mottram 2020-06-10 20:02:35 +01:00
parent c357ad6a0d
commit 0566645906
2 changed files with 8 additions and 1 deletions

View File

@ -461,6 +461,12 @@ def setThemeHacker(baseDir: str):
def setThemeLight(baseDir: str):
themeParams = {
"font-size-button-mobile": "36px",
"font-size": "32px",
"font-size2": "26px",
"font-size3": "40px",
"font-size4": "24px",
"font-size5": "22px",
"rgba(0, 0, 0, 0.5)": "rgba(0, 0, 0, 0.0)",
"main-bg-color": "#e6ebf0",
"main-bg-color-dm": "#e3dbf0",

View File

@ -1294,7 +1294,8 @@ def htmlEditProfile(translate: {}, baseDir: str, path: str,
editProfileForm += ' <br><label class="labels">' + \
translate['Search banner image'] + '</label>'
editProfileForm += ' <input type="file" id="search_banner" name="search_banner"'
editProfileForm += ' <input type="file" id="search_banner" '
editProfileForm += 'name="search_banner"'
editProfileForm += ' accept="' + imageFormats + '">'
editProfileForm += ' </div>'