mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 22:53:44 +08:00
42801c950f
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
33 lines
504 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|