From a4d4ca5186313c1f6a5864774612550c8c306f2b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 7 Aug 2019 12:42:06 +0100 Subject: [PATCH] Larger checkbox --- epicyon-profile.css | 10 ++++++++++ webinterface.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index 96e3c989..eca41c1a 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -531,3 +531,13 @@ input[type=submit]:hover { /* Change the background color of the dropdown button when the dropdown content is shown */ .dropdown-timeline:hover .dropbtn {background-color: #3e8e41;} + +input[type=checkbox] +{ + -ms-transform: scale(2); + -moz-transform: scale(2); + -webkit-transform: scale(2); + -o-transform: scale(2); + transform: scale(2); + padding: 10px; +} diff --git a/webinterface.py b/webinterface.py index 2919aeae..1e0dccae 100644 --- a/webinterface.py +++ b/webinterface.py @@ -47,7 +47,7 @@ def htmlEditProfile(baseDir: str,path: str,domain: str,port: int) -> str: preferredNickname=nickname bioStr='' - manuallyApprovesFollowers='checked' + manuallyApprovesFollowers='' with open(actorFilename, 'r') as fp: actorJson=commentjson.load(fp) if actorJson.get('preferredUsername'):