0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-11 02:59:07 +08:00
discourse/plugins/chat/assets/stylesheets/common/chat-composer.scss
Jarek Radosz c63f9cca90
DEV: Remove obsolete chat code and tests (#39451)
I believe the unreliable-network UI was removed in #19531.

The test cases are all covered by system specs now, with the exception
of message sending retry - this one is redone here.
2026-04-22 21:33:17 +02:00

129 lines
2.3 KiB
SCSS
Vendored

:root {
--d-chat-input-border-color: var(--primary-low);
--d-chat-input-bg-color: rgb(var(--primary-very-low-rgb), 0.5);
--d-chat-input-focused-shadow: 0 0 1px 0 var(--tertiary);
}
.chat-composer {
&__wrapper {
display: flex;
flex-direction: column;
z-index: 3;
padding: var(--space-1) 0 env(safe-area-inset-bottom) 0;
.keyboard-visible & {
padding-bottom: 0;
}
#chat-full-page-uploader,
#chat-widget-uploader {
display: none;
}
.drop-a-file {
display: none;
}
.chat-replying-indicator {
padding-inline: 1rem;
}
}
.chat-composer-button,
.chat-composer-separator {
align-self: flex-end;
}
.chat-composer-separator {
flex-shrink: 0;
}
&__outer-container {
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
padding-inline: 1rem;
}
&__inner-container {
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
flex-direction: row;
border: 1px solid var(--d-chat-input-border-color);
border-radius: var(--d-border-radius-large);
background: var(--d-chat-input-bg-color);
min-height: 50px;
overflow: hidden;
.chat-composer.is-focused & {
box-shadow: var(--d-chat-input-focused-shadow);
}
.chat-composer.is-disabled & {
background: var(--d-input-bg-color--disabled);
&:hover {
cursor: not-allowed;
}
}
}
&__input-container {
display: flex;
align-items: center;
box-sizing: border-box;
width: 100%;
align-self: stretch;
}
&__input {
overflow-x: hidden;
width: 100%;
appearance: none;
outline: none;
border: 0;
resize: none;
max-height: 25dvh;
background: none;
padding: 0;
margin: 5px 0;
text-overflow: ellipsis;
cursor: inherit;
white-space: pre-wrap !important;
min-width: 20px;
@include chat-scrollbar;
&[disabled] {
background: none;
.d-icon {
opacity: 0.4;
}
}
&:focus,
&:active {
outline: none;
}
&::placeholder {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
.chat-composer-message-details {
margin: 0 1rem 0.5rem 1rem;
display: flex;
align-items: center;
.cancel-message-action {
margin-left: auto;
}
}