Skip to content

Commit

Permalink
Merge pull request #9491 from nextcloud/fix/partial-border-select
Browse files Browse the repository at this point in the history
Fix: misplaced border ncselect
  • Loading branch information
hamza221 authored May 27, 2024
2 parents 0ddd588 + d4f159d commit 7766fe3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/Composer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
:reducible="true"
:clearable="true"
:no-wrap="false"
:append-to-body="false"
:create-option="createRecipientOption"
@input="saveDraftDebounced"
@option:selecting="onNewToAddr"
Expand Down Expand Up @@ -97,7 +98,7 @@
:filter-by="(option, label, search)=>filterOption(option, label, search,'cc')"
:taggable="true"
:close-on-select="true"

:append-to-body="false"
:multiple="true"
:placeholder="t('mail', 'Contact or email address …')"
:aria-label-combobox="t('mail', 'Contact or email address …')"
Expand Down Expand Up @@ -148,7 +149,7 @@
:options="selectableRecipients.filter(reciptient=>!selectBcc.some(bcc=>bcc.email===reciptient.email))"
:taggable="true"
:close-on-select="true"

:append-to-body="false"
:multiple="true"
:placeholder="t('mail', 'Contact or email address …')"
:aria-label-combobox="t('mail', 'Contact or email address …')"
Expand Down Expand Up @@ -1559,7 +1560,7 @@ export default {
min-height: 100px;
}
:deep(.multiselect .multiselect__tags),:deep( .vs__dropdown-toggle),:deep(.vs__dropdown-menu), .subject {
.subject {
border: none !important;
}
:deep([data-select="create"] .avatardiv--unknown) {
Expand All @@ -1578,9 +1579,7 @@ export default {
}
:deep(.vs__dropdown-menu){
border: 1px solid var(--color-border) !important;
padding: 0 !important;
border-radius: 0 !important;
}
:deep(.vs__dropdown-option){
Expand Down

0 comments on commit 7766fe3

Please sign in to comment.