discourse/plugins/chat/assets/stylesheets/common/chat-form.scss
Joffrey JAFFEUX ab832cc865
FEATURE: introduces group channels (#24288)
Group channels will allow users to create channels with a name and invite people. It's possible to add people even after creation of the channel. Removing users is not yet possible but will be added in the near future.

Technically a group channel is `direct_message_channel` with a group attribute set to true on its direct message (chatable). This model might evolve in the future but offers much flexibility for now without having to rely on a complex migration.

The commit essentially consists of:
- a migration to set existing direct message channels with more than 2 users to a group
- a new message creator which allows to search, add members, and create groups
- a new `AddUsersToChannel` service
- a modified `SearchChatable` service
2023-11-10 11:29:28 +01:00

85 lines
1.2 KiB
SCSS

.chat-form {
display: flex;
flex-direction: column;
}
.chat-form__row {
&.-separator {
border-bottom: 1px solid var(--primary-low);
}
}
.chat-form__section {
display: flex;
flex-direction: column;
width: 100%;
& + .chat-form__section {
margin-top: 1rem;
}
&-title {
font-weight: 700;
font-size: var(--font-down-1);
color: var(--primary-medium);
}
&-title + &-content {
margin-top: 0.25rem;
}
&-content {
gap: 1rem;
display: flex;
flex-direction: column;
}
}
.chat-form__row {
display: flex;
width: 100%;
// background: green;
flex-direction: column;
justify-content: center;
label,
.d-toggle-switch__checkbox-slider {
margin: 0;
}
&-action {
.chat-form__btn:first-child {
padding-left: 0;
}
}
&-label + &-action {
margin-left: auto;
}
&.-link {
color: var(--primary);
.d-icon {
color: var(--primary-medium);
}
}
&-content {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
min-height: 40px;
gap: 0.25rem;
}
&-description {
display: flex;
padding-top: 3px;
color: var(--primary-medium);
font-size: var(--font-down-1);
}
}