Files
owncast/web/components/chat/ChatTextField/ChatTextField.module.scss
T
a1f7f599c8 Allow emoji picker to fit smaller viewports (#4651)
* fixed 4493 issue

* Update web/components/chat/ChatTextField/ChatTextField.module.scss

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* lint error fix

---------

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-11-10 14:00:11 -08:00

90 lines
1.8 KiB
SCSS

@use '../../../styles/mixins' as *;
.root {
position: relative;
display: flex;
bottom: 0;
width: 100%;
padding: 0.6em;
background-color: var(--theme-color-components-chat-background);
.inputWrap {
position: relative;
display: flex;
color: var(--theme-color-components-form-field-text);
background-color: var(--theme-color-palette-3);
border-radius: var(--theme-rounded-corners);
bottom: 0;
width: 100%;
padding: 0.3rem;
transition: box-shadow 90ms ease-in-out;
&:focus-within {
background-color: var(--theme-color-components-form-field-background);
box-shadow: inset 0 0 2px 2px var(--theme-color-palette-3);
}
// Size of custom emoji.
img {
width: 20px;
height: 20px;
}
}
.maxCharacters {
border-style: solid;
border-width: 2px;
border-color: red;
}
div[role='textbox'] {
font-size: 13px;
font-weight: 400;
padding: 0.3rem;
background-color: inherit;
border-color: var(--theme-color-components-form-field-border);
box-shadow: 0;
transition: box-shadow 50ms ease-in-out;
max-height: 40px; // 2 lines of text
min-height: 30px;
cursor: text;
overflow-x: auto;
&:focus {
outline: 1px solid var(--color-owncast-gray-500) !important;
}
& > p {
margin: 0;
}
}
// Placeholder styling
:empty::before {
content: attr(placeholder);
display: block;
color: #aaa;
}
}
.emojiButton {
border: none;
background: none;
cursor: pointer;
padding: 0 0.25rem;
}
.sendButton {
border: none;
background: none;
cursor: pointer;
padding: 0 1rem;
}
// Constrain the emoji picker popover to the viewport and allow scrolling.
.emojiPickerContainer {
max-height: 70vh;
max-width: 90vw;
overflow: auto hidden;
}