Skip to content

Commit

Permalink
fix(Composer): rtl support
Browse files Browse the repository at this point in the history
Signed-off-by: Hamza Mahjoubi <[email protected]>
  • Loading branch information
hamza221 committed Nov 11, 2024
1 parent 9c43e51 commit e16a6e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/components/Composer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1579,6 +1579,10 @@ export default {
display: none;
}

:deep(.v-select.select){
left: 0 !important;
}

:deep(.vs__dropdown-menu){
padding: 0 !important;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/NewMessageModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -577,14 +577,14 @@ export default {
float: right;
position: absolute !important;
top: 4px;
right: 63px;
inset-inline-end: 63px;
}

.maximize-button {
float: right;
position: absolute !important;
top: 4px;
right: 33px;
inset-inline-end: 33px;

}
.empty-content{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<template v-else>
<div id="mail-thread-header">
<div id="mail-thread-header-fields">
<h2 :title="threadSubject">
<h2 dir="auto" :title="threadSubject">
{{ threadSubject }}
</h2>
<div v-if="thread.length" ref="avatarHeader" class="avatar-header">
Expand Down

0 comments on commit e16a6e1

Please sign in to comment.