fix: Uses woot-button in mention box (#6317)

* fix: Uses woot-button in mention box

* Style changes to fix mention box position

* Fixes review comments

* Fixes review comments

---------

Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com>
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
Nithin David Thomas
2023-01-31 16:25:24 +05:30
committed by GitHub
parent b1af814eab
commit ee3124cf84
5 changed files with 73 additions and 46 deletions

View File

@@ -20,6 +20,7 @@
<canned-response
v-if="showMentions && hasSlashCommand"
v-on-clickaway="hideMentions"
class="normal-editor__canned-box"
:search-key="mentionSearchKey"
@click="replaceText"
/>
@@ -1045,6 +1046,7 @@ export default {
}
.reply-box__top {
position: relative;
padding: 0 var(--space-normal);
border-top: 1px solid var(--color-border);
margin-top: -1px;
@@ -1082,4 +1084,9 @@ export default {
margin-bottom: 0;
}
}
.normal-editor__canned-box {
width: calc(100% - 2 * var(--space-normal));
left: var(--space-normal);
}
</style>