Selection of text for common emoji

main
Bob Mottram 2022-04-19 10:45:20 +01:00
parent 075e2b3b30
commit 4abc01b644
2 changed files with 10 additions and 1 deletions

View File

@ -215,6 +215,9 @@ input[type=text] {
font-family: Arial, Helvetica, sans-serif;
margin: var(--hashtag-margin);
line-height: var(--hashtag-vertical-spacing1);
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
.hashtagswarm img {
width: 5%;
@ -266,6 +269,9 @@ input[type=text] {
font-family: Arial, Helvetica, sans-serif;
margin: var(--hashtag-margin);
line-height: var(--hashtag-vertical-spacing3);
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
.hashtagswarm img {
width: 5%;
@ -320,6 +326,9 @@ input[type=text] {
font-family: Arial, Helvetica, sans-serif;
margin: var(--hashtag-margin);
line-height: var(--hashtag-vertical-spacing3);
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
.hashtagswarm img {
width: 5%;

View File

@ -358,7 +358,7 @@ def _html_common_emoji(base_dir: str, no_of_emoji: int) -> str:
'<label class="hashtagswarm"><img ' + \
'src="/emoji/' + emoji_name + '.png" ' + \
'alt="" title="">' + \
':' + emoji_name + ':</label>\n'
'<textarea>:' + emoji_name + ':</textarea></label>\n'
ctr += 1
line_ctr += 1
if html_str: