mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-08-06 05:03:28 +00:00
This moves the bot warning from `composer-after-composer-editor` to `after-d-editor` (with a minor adjustment for outlet args to match new name)
42 lines
781 B
SCSS
42 lines
781 B
SCSS
nav.post-controls .actions button.cancel-streaming {
|
|
display: none;
|
|
}
|
|
|
|
.ai-bot-chat #reply-control {
|
|
.title-and-category {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ai-bot-chat-warning {
|
|
color: var(--tertiary);
|
|
background-color: var(--tertiary-low);
|
|
border-top: 1px solid var(--tertiary-medium);
|
|
opacity: 0.75;
|
|
.d-icon {
|
|
color: var(--tertiary);
|
|
}
|
|
margin: 0;
|
|
padding: 4px 10px;
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
article.streaming nav.post-controls .actions button.cancel-streaming {
|
|
display: inline-block;
|
|
}
|
|
|
|
.ai-bot-available-bot-options {
|
|
.ai-bot-available-bot-content {
|
|
color: var(--primary-high);
|
|
display: flex;
|
|
width: 100%;
|
|
.d-button-label {
|
|
flex: 1;
|
|
text-align: left;
|
|
}
|
|
&:hover {
|
|
background: var(--primary-low);
|
|
}
|
|
}
|
|
}
|