mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 23:45:59 +08:00
ea0b8ca38c
Enabling/Disabling threading has been possible through command line until now. This commit introduces two new UIs: - When creating a channel, it will be available once the category has been selected - On the settings page of a channel for admins
43 lines
855 B
SCSS
43 lines
855 B
SCSS
.create-channel-modal {
|
|
.modal-inner-container {
|
|
width: 500px;
|
|
}
|
|
|
|
.choose-topic-results-list {
|
|
max-height: 200px;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.select-kit.combo-box,
|
|
.create-channel__input,
|
|
#choose-topic-title {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
}
|
|
.category-chooser {
|
|
.select-kit-selected-name.selected-name.choice {
|
|
color: var(
|
|
--primary-high
|
|
); // Make consistent with color of placeholder text when choosing topic
|
|
}
|
|
}
|
|
|
|
.create-channel__hint {
|
|
font-size: var(--font-down-1);
|
|
padding-top: 0.25rem;
|
|
color: var(--secondary-low);
|
|
}
|
|
|
|
.create-channel__control,
|
|
.edit-channel-control {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.create-channel__label-description {
|
|
margin: 0;
|
|
padding-top: 0.25rem;
|
|
color: var(--secondary-low);
|
|
font-size: var(--font-down-1) !important;
|
|
}
|
|
}
|