discourse/plugins/chat/assets/stylesheets/common/chat-modal-create-channel.scss
Joffrey JAFFEUX 9830c40386
DEV: makes chat modals use the new <DModal /> component (#22495)
This commit also standardize the naming pattern of modals: `<Chat::Modal::FooBar />` and changes css class accordingly.

Co-authored-by: David Taylor <david@taylorhq.com>
2023-07-10 13:43:33 +02:00

43 lines
804 B
SCSS

.chat-modal-create-channel {
.modal-inner-container {
width: 500px;
}
.choose-topic-results-list {
max-height: 200px;
overflow-y: scroll;
}
.select-kit.combo-box,
&__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
}
}
&__hint {
font-size: var(--font-down-1);
padding-top: 0.25rem;
color: var(--secondary-low);
}
&__control,
.edit-channel-control {
margin-bottom: 1rem;
}
&__label-description {
margin: 0;
padding-top: 0.25rem;
color: var(--secondary-low);
font-size: var(--font-down-1) !important;
}
}