Right justify

merge-requests/8/head
Bob Mottram 2020-12-21 16:20:17 +00:00
parent 2e05de11c5
commit dd11c9bfa8
3 changed files with 3 additions and 2 deletions

View File

@ -524,6 +524,7 @@ input[type=submit] {
font-size: var(--font-size-header);
font-family: Arial, Helvetica, sans-serif;
width: 120px;
float: right;
}
.loginButton {

View File

@ -343,7 +343,7 @@ def htmlEditLinks(cssCache: {}, translate: {}, baseDir: str, path: str,
editLinksForm += \
' <colgroup>\n'
editLinksForm += \
' <col span="1" style="width:100%;float:right">\n'
' <col span="1" style="width:100%">\n'
editLinksForm += \
' </colgroup>\n'
editLinksForm += \

View File

@ -500,7 +500,7 @@ def htmlEditNewswire(cssCache: {}, translate: {}, baseDir: str, path: str,
editNewswireForm += \
' <h1>' + translate['Edit newswire'] + '</h1>'
editNewswireForm += \
' <div class="editColumnHeader">\n'
' <div class="containerSubmitNewPost">\n'
editNewswireForm += \
' <input type="submit" name="submitNewswire" value="' + \
translate['Submit'] + '">\n'