Edit screen header style

merge-requests/8/head
Bob Mottram 2020-12-21 15:40:55 +00:00
parent fd64616964
commit 5a28a3b222
3 changed files with 7 additions and 2 deletions

View File

@ -474,6 +474,11 @@ a:focus {
margin: var(--vertical-between-posts);
}
.editColumnHeader {
float: right;
min-width: 10ch;
}
.media {
width: 80%;
border-radius: 5px;

View File

@ -337,7 +337,7 @@ def htmlEditLinks(cssCache: {}, translate: {}, baseDir: str, path: str,
editLinksForm += \
' <h1>' + translate['Edit Links'] + '</h1>'
editLinksForm += \
' <div class="containerNewPost">\n'
' <div class="editColumnHeader">\n'
editLinksForm += \
' <input type="submit" name="submitLinks" value="' + \
translate['Submit'] + '">\n'

View File

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