From 7120630bf4637d230bfd6de50d64b537f97f1ed4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 7 Aug 2019 20:22:56 +0100 Subject: [PATCH] Submit button at the top --- epicyon-profile.css | 5 +++++ webinterface.py | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index eca41c1ac..ec7fe452b 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -53,6 +53,11 @@ body, html { color: white; } +.new-post-text { + font-size: 24px; + padding: 4px 0; +} + .highlight { width: 2%; } diff --git a/webinterface.py b/webinterface.py index 1e0dccae5..8a3841ecf 100644 --- a/webinterface.py +++ b/webinterface.py @@ -85,7 +85,11 @@ def htmlEditProfile(baseDir: str,path: str,domain: str,port: int) -> str: editProfileForm+= \ '
' \ '
' \ - '

Edit profile for '+nickname+'@'+domainFull+'

' \ + '

Profile for '+nickname+'@'+domainFull+'

' \ + '
' \ + ' ' \ + ' ' \ + '
'+ \ '
' \ ' ' \ ' ' \ @@ -113,10 +117,6 @@ def htmlEditProfile(baseDir: str,path: str,domain: str,port: int) -> str: '
Federate only with a defined set of instances. One domain name per line.' \ ' ' \ '
' \ - '
' \ - ' ' \ - ' ' \ - '
'+ \ '
' \ '
' editProfileForm+=htmlFooter()