mirror of https://gitlab.com/bashrc2/epicyon
Selection of text for common emoji
parent
075e2b3b30
commit
4abc01b644
|
@ -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%;
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue