UX: AI post helper DMenu styling (#770)
This commit is contained in:
parent
36ce88f356
commit
22d1e71dc9
|
@ -20,7 +20,7 @@ const AiHelperOptionsList = <template>
|
||||||
@action={{fn @performAction option}}
|
@action={{fn @performAction option}}
|
||||||
data-name={{option.name}}
|
data-name={{option.name}}
|
||||||
data-value={{option.id}}
|
data-value={{option.id}}
|
||||||
class="btn-flat ai-helper-options__button"
|
class="ai-helper-options__button"
|
||||||
/>
|
/>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -13,7 +13,6 @@ import { ajax } from "discourse/lib/ajax";
|
||||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||||
import { sanitize } from "discourse/lib/text";
|
import { sanitize } from "discourse/lib/text";
|
||||||
import { clipboardCopy } from "discourse/lib/utilities";
|
import { clipboardCopy } from "discourse/lib/utilities";
|
||||||
import i18n from "discourse-common/helpers/i18n";
|
|
||||||
import { bind } from "discourse-common/utils/decorators";
|
import { bind } from "discourse-common/utils/decorators";
|
||||||
import I18n from "discourse-i18n";
|
import I18n from "discourse-i18n";
|
||||||
import eq from "truth-helpers/helpers/eq";
|
import eq from "truth-helpers/helpers/eq";
|
||||||
|
@ -285,10 +284,7 @@ export default class AiPostHelperMenu extends Component {
|
||||||
(and this.site.mobileView (eq this.menuState this.MENU_STATES.options))
|
(and this.site.mobileView (eq this.menuState this.MENU_STATES.options))
|
||||||
}}
|
}}
|
||||||
<div class="ai-post-helper-menu__selected-text">
|
<div class="ai-post-helper-menu__selected-text">
|
||||||
<h2>
|
{{@data.selectedText}}
|
||||||
{{i18n "discourse_ai.ai_helper.post_options_menu.selected_text"}}
|
|
||||||
</h2>
|
|
||||||
<p>{{@data.selectedText}}</p>
|
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
.ai-custom-prompt {
|
.ai-custom-prompt {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0.25rem;
|
gap: 0.25rem;
|
||||||
margin-bottom: 0.5rem;
|
padding: 0.75em 1rem;
|
||||||
|
|
||||||
&__input[type="text"] {
|
&__input[type="text"] {
|
||||||
border-color: var(--primary-400);
|
border-color: var(--primary-400);
|
||||||
|
@ -308,10 +308,19 @@
|
||||||
|
|
||||||
.ai-post-helper {
|
.ai-post-helper {
|
||||||
&__suggestion {
|
&__suggestion {
|
||||||
padding: 0.5rem;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: var(--font-0);
|
||||||
|
border-bottom: 1px solid var(--primary-low);
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&__copy {
|
&__copy {
|
||||||
.d-icon-check {
|
.d-icon-check {
|
||||||
color: var(--success);
|
color: var(--success);
|
||||||
|
@ -325,18 +334,17 @@
|
||||||
&__buttons {
|
&__buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: stretch;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
.btn {
|
.btn {
|
||||||
width: 100%;
|
flex-grow: 1;
|
||||||
|
padding-inline: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__fast-edit {
|
&__fast-edit {
|
||||||
.fast-edit-container {
|
.fast-edit-container {
|
||||||
padding-top: 0.5em;
|
padding: 0.75em 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -556,43 +564,10 @@
|
||||||
color: var(--primary-high);
|
color: var(--primary-high);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ai-post-helper-menu__selected-text {
|
|
||||||
padding: 0.75rem 1rem;
|
|
||||||
margin: 0.5rem;
|
|
||||||
border: 1px solid var(--primary-low-mid);
|
|
||||||
border-radius: var(--d-border-radius);
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: var(--font-0);
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
@include ellipsis;
|
|
||||||
font-size: var(--font-down-2);
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mobile Bottom Modal
|
|
||||||
.ai-post-helper-menu-content {
|
|
||||||
.ai-helper-loading {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ai-helper-options__button {
|
|
||||||
padding: 1rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// AI Helper Options List
|
// AI Helper Options List
|
||||||
.ai-helper-options {
|
.ai-helper-options {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0.5rem;
|
|
||||||
|
|
||||||
li:not(:last-child) {
|
|
||||||
border-bottom: 1px solid var(--primary-low);
|
|
||||||
}
|
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
@ -601,19 +576,24 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-block: 0.6rem;
|
padding: 0.5em 1rem;
|
||||||
|
|
||||||
.d-button-label {
|
|
||||||
color: var(--primary-very-high);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
background: var(--d-hover);
|
background: var(--d-hover);
|
||||||
|
|
||||||
|
.discourse-no-touch & {
|
||||||
|
color: var(--primary);
|
||||||
|
background: var(--d-hover);
|
||||||
|
}
|
||||||
|
|
||||||
.d-icon {
|
.d-icon {
|
||||||
color: var(--primary-medium);
|
color: var(--primary-high);
|
||||||
|
|
||||||
|
.discourse-no-touch & {
|
||||||
|
color: var(--primary-high);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
.fk-d-menu {
|
||||||
|
.ai-post-helper {
|
||||||
|
&__suggestion__text,
|
||||||
|
&__suggestion__buttons {
|
||||||
|
padding: 0.75em 1rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
.fk-d-menu-modal {
|
||||||
|
&.ai-post-helper-menu-content {
|
||||||
|
.ai-post-helper {
|
||||||
|
&__suggestion__text,
|
||||||
|
&__suggestion__buttons {
|
||||||
|
padding: 0.75em 1rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.d-modal__body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
max-height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ai-post-helper-menu {
|
||||||
|
&__selected-text {
|
||||||
|
margin: 0.75em 1rem;
|
||||||
|
padding: 0.5em;
|
||||||
|
border-radius: var(--d-border-radius);
|
||||||
|
border: 1px solid var(--primary-low);
|
||||||
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.125);
|
||||||
|
overflow: auto;
|
||||||
|
overscroll-behavior: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ai-helper-options {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ai-custom-prompt {
|
||||||
|
padding: 0.75em 1rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ai-helper-loading {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -318,7 +318,6 @@ en:
|
||||||
cancel: "Cancel"
|
cancel: "Cancel"
|
||||||
insert_footnote: "Add footnote"
|
insert_footnote: "Add footnote"
|
||||||
footnote_credits: "Explanation by AI"
|
footnote_credits: "Explanation by AI"
|
||||||
selected_text: "Selected Text"
|
|
||||||
fast_edit:
|
fast_edit:
|
||||||
suggest_button: "Suggest Edit"
|
suggest_button: "Suggest Edit"
|
||||||
thumbnail_suggestions:
|
thumbnail_suggestions:
|
||||||
|
|
|
@ -16,7 +16,9 @@ enabled_site_setting :discourse_ai_enabled
|
||||||
register_asset "stylesheets/common/streaming.scss"
|
register_asset "stylesheets/common/streaming.scss"
|
||||||
|
|
||||||
register_asset "stylesheets/modules/ai-helper/common/ai-helper.scss"
|
register_asset "stylesheets/modules/ai-helper/common/ai-helper.scss"
|
||||||
|
register_asset "stylesheets/modules/ai-helper/desktop/ai-helper-fk-modals.scss", :desktop
|
||||||
register_asset "stylesheets/modules/ai-helper/mobile/ai-helper.scss", :mobile
|
register_asset "stylesheets/modules/ai-helper/mobile/ai-helper.scss", :mobile
|
||||||
|
register_asset "stylesheets/modules/ai-helper/mobile/ai-helper-fk-modals.scss", :mobile
|
||||||
|
|
||||||
register_asset "stylesheets/modules/summarization/mobile/ai-summary.scss", :mobile
|
register_asset "stylesheets/modules/summarization/mobile/ai-summary.scss", :mobile
|
||||||
register_asset "stylesheets/modules/summarization/common/ai-summary.scss"
|
register_asset "stylesheets/modules/summarization/common/ai-summary.scss"
|
||||||
|
|
Loading…
Reference in New Issue