discourse/plugins/chat/assets/stylesheets/mobile/chat-composer.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
973 B
SCSS
Raw Normal View History

.chat-composer {
&__wrapper {
padding-top: 0.75rem;
background: none;
.chat-replying-indicator {
padding-left: calc(1rem + (2 * 5px) + 0.2rem + (2 * 0.65rem) + 1px);
}
}
&__outer-container {
padding: 0;
2024-02-22 23:39:54 +08:00
align-items: flex-end;
.chat-composer.is-disabled {
opacity: 0.5;
}
}
&__inner-container {
2024-02-22 23:39:54 +08:00
align-self: stretch;
min-height: unset;
}
&__input-container {
padding: 0.15em 0.5em;
background: var(--primary-very-low);
}
&__input {
.ios-device & {
background-color: transparent;
}
}
&-button__wrapper {
2024-02-22 23:39:54 +08:00
margin-bottom: 0.3em;
}
&-button.-send {
2024-02-22 23:39:54 +08:00
height: auto;
width: auto;
2024-02-22 23:39:54 +08:00
margin-inline: 0.7rem;
padding: 0.5rem;
2024-02-22 23:39:54 +08:00
border-radius: 100%;
line-height: 0;
.is-send-enabled.is-focused &,
.is-send-enabled & {
2024-02-22 23:39:54 +08:00
background-color: var(--tertiary-high);
color: var(--secondary);
.d-icon {
color: inherit;
}
}
}
}