Larger checkbox

master
Bob Mottram 2019-08-07 12:42:06 +01:00
parent 5781afad2c
commit a4d4ca5186
2 changed files with 11 additions and 1 deletions

View File

@ -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;
}

View File

@ -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'):