forked from indymedia/epicyon
Larger checkbox
parent
5781afad2c
commit
a4d4ca5186
|
@ -531,3 +531,13 @@ input[type=submit]:hover {
|
||||||
|
|
||||||
/* Change the background color of the dropdown button when the dropdown content is shown */
|
/* Change the background color of the dropdown button when the dropdown content is shown */
|
||||||
.dropdown-timeline:hover .dropbtn {background-color: #3e8e41;}
|
.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;
|
||||||
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ def htmlEditProfile(baseDir: str,path: str,domain: str,port: int) -> str:
|
||||||
|
|
||||||
preferredNickname=nickname
|
preferredNickname=nickname
|
||||||
bioStr=''
|
bioStr=''
|
||||||
manuallyApprovesFollowers='checked'
|
manuallyApprovesFollowers=''
|
||||||
with open(actorFilename, 'r') as fp:
|
with open(actorFilename, 'r') as fp:
|
||||||
actorJson=commentjson.load(fp)
|
actorJson=commentjson.load(fp)
|
||||||
if actorJson.get('preferredUsername'):
|
if actorJson.get('preferredUsername'):
|
||||||
|
|
Loading…
Reference in New Issue