fist commit

This commit is contained in:
mk
2026-02-21 13:57:47 -03:00
commit 15274a6eb3
4 changed files with 464 additions and 0 deletions

46
emoji-autocomplete.css Normal file
View File

@@ -0,0 +1,46 @@
/* Emoji Autocomplete Popup - paste into Owncast Admin > Custom CSS */
#emoji-autocomplete-popup {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
display: flex;
flex-wrap: wrap;
align-content: end;
overflow: hidden;
background-color: var(--theme-color-components-chat-background);
border: 1px solid var(--theme-color-palette-3);
border-radius: var(--theme-rounded-corners);
z-index: 200;
list-style: none;
margin: 0 0 4px;
padding: 4px;
gap: 3px;
}
#emoji-autocomplete-popup li {
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 38px;
height: 38px;
padding: 4px;
cursor: pointer;
font-size: 24px;
border-radius: 4px;
}
#emoji-autocomplete-popup li:hover {
background-color: var(--theme-color-palette-3);
}
#emoji-autocomplete-popup li img {
width: 28px;
height: 28px;
}
#emoji-autocomplete-popup li.selected {
background-color: var(--theme-color-palette-3);
}