mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-07 01:39:54 +00:00
Previously we were not using using HeaderPanel for drop down, which caused it not to properly act like a header panel. - Not styled right - Not hidden when other buttons clicked Etc... Header is sadly full of legacy so this is somewhat hacky weaving widgets.
23 lines
437 B
SCSS
23 lines
437 B
SCSS
nav.post-controls .actions button.cancel-streaming {
|
|
display: none;
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|