Remove stray character

main
Bob Mottram 2020-11-04 13:00:03 +00:00
parent 36fa7c2cb9
commit 26c8c71ce8
2 changed files with 2 additions and 2 deletions

View File

@ -746,7 +746,7 @@ input[type=submit]:hover {
.newPostDropdown > label:after, .newPostDropdown > label:after,
.newPostDropdown > a[role="button"]:after { .newPostDropdown > a[role="button"]:after {
content: "\f0d7"; content: "";
font-family: 'Bedstead'; font-family: 'Bedstead';
display: inline-block; display: inline-block;
margin-left: 6px; margin-left: 6px;

View File

@ -2437,7 +2437,7 @@ def htmlNewPostDropDown(scopeIcon: str, scopeDescription: str,
dropDownContent += ' data-toggle="newPostDropdown">\n' dropDownContent += ' data-toggle="newPostDropdown">\n'
dropDownContent += ' <img loading="lazy" alt="" title="" src="/' + \ dropDownContent += ' <img loading="lazy" alt="" title="" src="/' + \
iconsDir + '/' + scopeIcon + '"/><b>' + \ iconsDir + '/' + scopeIcon + '"/><b>' + \
scopeDescription + '</b></label>\n' scopeDescription.strip() + '</b></label>\n'
dropDownContent += ' <ul>\n' dropDownContent += ' <ul>\n'
if showPublicOnDropdown: if showPublicOnDropdown: