forked from indymedia/epicyon
Replace flex with table
parent
f05e003d27
commit
2a54f7eb70
|
@ -661,10 +661,6 @@ div.gallery img {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-container {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
li { list-style:none;}
|
li { list-style:none;}
|
||||||
.msgscope-collapse { position: relative; }
|
.msgscope-collapse { position: relative; }
|
||||||
.nav { width: 150px; }
|
.nav { width: 150px; }
|
||||||
|
|
|
@ -2055,15 +2055,15 @@ def htmlNewPost(mediaInstance: bool, translate: {},
|
||||||
newPostForm += \
|
newPostForm += \
|
||||||
' <label for="nickname"><b>' + newPostText + '</b></label>\n'
|
' <label for="nickname"><b>' + newPostText + '</b></label>\n'
|
||||||
newPostForm += ' <div class="container">\n'
|
newPostForm += ' <div class="container">\n'
|
||||||
newPostForm += ' <div class="flex-container">\n'
|
newPostForm += ' <table border="0"><tr>\n'
|
||||||
newPostForm += dropDownContent
|
newPostForm += '<td>' + dropDownContent + '</td>\n'
|
||||||
newPostForm += \
|
newPostForm += \
|
||||||
' <div><a href="' + pathBase + \
|
' <td><a href="' + pathBase + \
|
||||||
'/searchemoji"><img loading="lazy" class="emojisearch" ' + \
|
'/searchemoji"><img loading="lazy" class="emojisearch" ' + \
|
||||||
'src="/emoji/1F601.png" title="' + \
|
'src="/emoji/1F601.png" title="' + \
|
||||||
translate['Search for emoji'] + '" alt="' + \
|
translate['Search for emoji'] + '" alt="' + \
|
||||||
translate['Search for emoji'] + '"/></a></div>\n'
|
translate['Search for emoji'] + '"/></a></td>\n'
|
||||||
newPostForm += ' </div>\n'
|
newPostForm += ' </tr></table>\n'
|
||||||
newPostForm += ' </div>\n'
|
newPostForm += ' </div>\n'
|
||||||
newPostForm += ' <div class="container"><center>\n'
|
newPostForm += ' <div class="container"><center>\n'
|
||||||
newPostForm += \
|
newPostForm += \
|
||||||
|
|
Loading…
Reference in New Issue