mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-06 11:38:13 +00:00
Allows related topics to show up for logged on users - Introduces a new "Related Topics" block above suggested when related topics exist - Renames `ai_embeddings_semantic_suggested_topics_anons_enabled` -> `ai_embeddings_semantic_suggested_topics_enabled` (given it is only deployed on 1 site not bothering with a migration) - Adds an integration test to ensure data arrives correctly on the client
32 lines
543 B
SCSS
32 lines
543 B
SCSS
.composer-ai-helper-modal {
|
|
.combobox,
|
|
.text-preview,
|
|
.ai-helper-waiting-selection {
|
|
margin: 10px 0 10px 0;
|
|
}
|
|
|
|
.text-preview {
|
|
ins {
|
|
background-color: var(--success-low);
|
|
text-decoration: underline;
|
|
}
|
|
del {
|
|
background-color: var(--danger-low);
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.preview-area {
|
|
height: 200px;
|
|
}
|
|
}
|
|
|
|
.selection-hint {
|
|
font-size: var(--font-down-2);
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.topic-above-suggested-outlet.related-topics {
|
|
margin: 4.5em 0 1em;
|
|
}
|