discourse/plugins/chat/assets/stylesheets/common/chat-channel-members.scss
Joffrey JAFFEUX 42801c950f
UI: redesigned settings/members (#23804)
This PR is a first step towards private groups. It redesigns settings/members area of a channel and also drops the "about" page which is now mixed into settings.

This commit is also:
- introducing chat-form, a small DSL to create forms, ideally I would want something in core for this
- introducing a DToggleSwitch page object component to simplify testing toggles
- migrating various components to gjs
2023-10-09 14:11:16 +02:00

33 lines
504 B
SCSS

.chat-channel-members {
width: 50%;
min-width: 320px;
&__filter {
margin-bottom: 1rem;
}
&__list {
display: flex;
margin: 0;
flex-direction: column;
gap: 0.5rem;
&-item {
display: flex;
gap: 0.5rem;
list-style: none;
border-bottom: 1px solid var(--primary-low);
height: 42px;
align-items: center;
&.-no-results {
box-sizing: border-box;
}
&:last-child {
border-bottom: none;
}
}
}
}