forked from indymedia/epicyon
Remove stray character
parent
36fa7c2cb9
commit
26c8c71ce8
|
@ -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;
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue