mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 09:45:36 +03:00
d5fa81f76e
* color experimentation and troubleshooting * create color scheme, assign colors, more ant overrides * fun selection color * Prettified Code! * Correctly import opensans * Prettified Code! * Organize+standardize colors/names and update the app to use them * Prettified Code! * Use css var references instead of resolving value of vars in css files * Prettified Code! Co-authored-by: gingervitis <gingervitis@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: gabek <gabek@users.noreply.github.com>
60 lines
1.2 KiB
SCSS
60 lines
1.2 KiB
SCSS
.root {
|
|
position: relative;
|
|
display: flex;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
padding: 0.3rem;
|
|
color: var(--theme-color-components-form-field-text);
|
|
overflow-x: hidden;
|
|
|
|
div[role='textbox'] {
|
|
font-size: 0.9rem;
|
|
border-radius: 0.2rem;
|
|
padding: 0.6rem;
|
|
padding-right: calc(0.6rem + 44px);
|
|
background-color: var(--theme-color-components-form-field-background);
|
|
border-color: var(--theme-color-components-form-field-border);
|
|
box-shadow: 0;
|
|
transition: box-shadow 50ms ease-in-out;
|
|
&:focus {
|
|
box-shadow: inset 0px 0px 0x 1px var(--color-owncast-purple-700);
|
|
outline: 1px solid var(--color-owncast-gray-500) !important;
|
|
}
|
|
& > p {
|
|
margin: 0px;
|
|
}
|
|
}
|
|
|
|
.inputWrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
position: relative;
|
|
margin-right: 0.3rem;
|
|
border-radius: 0.2rem;
|
|
& > div {
|
|
transition: box-shadow 0.2s ease-in-out;
|
|
}
|
|
}
|
|
|
|
.submitButtonWrapper {
|
|
display: flex;
|
|
padding: 6px 0;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
|
|
.sendButton {
|
|
display: none;
|
|
|
|
@media (max-width: 768px) {
|
|
display: inline;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.emojiButton {
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
padding: 0 1rem;
|
|
}
|