fist commit
This commit is contained in:
46
emoji-autocomplete.css
Normal file
46
emoji-autocomplete.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user