Separate div for header icons

main
Bob Mottram 2020-11-06 15:00:26 +00:00
parent 888e38a95c
commit 8e498ff46a
2 changed files with 12 additions and 1 deletions

View File

@ -479,6 +479,10 @@ a:focus {
margin: 0px var(--containericons-horizontal-offset); margin: 0px var(--containericons-horizontal-offset);
} }
.headericons {
display: inline-block;
}
.replyingto { .replyingto {
color: var(--main-fg-color); color: var(--main-fg-color);
} }

View File

@ -6604,9 +6604,11 @@ def headerButtonsTimeline(defaultTimeline: str,
if not newsHeader: if not newsHeader:
if not iconsAsButtons: if not iconsAsButtons:
# start of headericons div
tlStr += '<div class="headericons">'
# the search button # the search button
tlStr += \ tlStr += \
' <a class="imageAnchor" href="' + usersPath + \ '<a class="imageAnchor" href="' + usersPath + \
'/search"><img loading="lazy" src="/' + \ '/search"><img loading="lazy" src="/' + \
iconsDir + '/search.png" title="' + \ iconsDir + '/search.png" title="' + \
translate['Search and follow'] + '" alt="| ' + \ translate['Search and follow'] + '" alt="| ' + \
@ -7026,6 +7028,11 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
'<a href="' + usersPath + '/newfollowers">' + \ '<a href="' + usersPath + '/newfollowers">' + \
'<button class="button"><span>' + \ '<button class="button"><span>' + \
translate['Post'] + '</span></button></a>' translate['Post'] + '</span></button></a>'
# end of headericons div
if newPostButtonStr and not iconsAsButtons and not newsHeader:
tlStr += '</div>'
# This creates a link to the profile page when viewed # This creates a link to the profile page when viewed
# in lynx, but should be invisible in a graphical web browser # in lynx, but should be invisible in a graphical web browser
tlStr += \ tlStr += \