mirror of
https://github.com/marsbatya/tg-emoji-search.git
synced 2026-07-22 05:41:44 +00:00
43 lines
No EOL
689 B
CSS
43 lines
No EOL
689 B
CSS
/* Emoji Suggester Plugin Styles */
|
|
|
|
/* Suggestion items styling */
|
|
.emoji-suggestion-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.emoji-suggestion-emoji {
|
|
font-size: 1.5em;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.emoji-suggestion-keyword {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* Settings tab styling */
|
|
.emoji-popularity-stats {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.emoji-top-list {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.emoji-top-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.emoji-top-symbol {
|
|
font-size: 1.5em;
|
|
margin-right: 10px;
|
|
min-width: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* When showing only emoji without keywords */
|
|
.emoji-suggestion-emoji:only-child {
|
|
margin: 0 10px;
|
|
} |