Skip to content

Commit

Permalink
fixup! Update to nextcloud/vue 8
Browse files Browse the repository at this point in the history
Signed-off-by: hamza mahjoubi <hamzamahjoubi221@gmail.com>
  • Loading branch information
hamza221 committed Jan 11, 2024
1 parent 6c3aeaa commit 0057758
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 13 deletions.
5 changes: 0 additions & 5 deletions src/components/AccountSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,4 @@ h2 {
.app-settings-section {
margin-bottom: 45px;
}
// Fix weird modal glitches on Firefox when toggling autoresponder
:deep(.modal-container),
:deep(.app-settings__wrapper) {
position: unset !important;
}
</style>
2 changes: 1 addition & 1 deletion src/components/Composer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ export default {
width: 100%;
}
.v-select{
flex-grow: 0.8;
flex-grow: 0.95;
}
}
Expand Down
16 changes: 14 additions & 2 deletions src/components/Envelope.vue
Original file line number Diff line number Diff line change
Expand Up @@ -918,9 +918,21 @@ export default {
.list-item-style:not(.seen) {
font-weight: bold;
}
.list-item-style.selected {
background-color: var(--color-background-dark);
.list-item__wrapper--active:deep() {
.list-item {
background-color: var(--color-primary-element-light);
}
.list-item:hover {
background-color: var(--color-background-hover);
}
.button-vue--vue-primary{
background-color: var(--color-background-hover);
}
.button-vue--vue-primary:hover{
background-color: var(--color-background-hover);
}
}
.list-item-style {
.draft {
line-height: 130%;
Expand Down
4 changes: 2 additions & 2 deletions src/components/EventModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
<NcSelect v-model="selectedCalendar"
label="displayname"
:options="calendars">
<template #option="{option}">
<template #option="option">
<CalendarPickerOption v-bind="option" />
</template>
<template #singleLabel="{option}">
<template #singleLabel="option">
<CalendarPickerOption :display-icon="true"
v-bind="option" />
</template>
Expand Down
5 changes: 4 additions & 1 deletion src/components/RecipientListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
.multiselect__tags
.multiselect__tags-wrap
.multiselect__tag--recipient {
padding: 0;
padding: 0 ;
border-radius: 25px;
border-color: transparent;
background-color: var(--color-background-dark);
Expand All @@ -49,6 +49,9 @@ export default {
margin-left: 0
}
}
.vs__selected{
padding: 0 !important;
}
.multiselect__tag--recipient .action-item--single {
width: auto;
min-width: 24px;
Expand Down
4 changes: 2 additions & 2 deletions src/components/TaskModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
:placeholder="t('mail', 'Select calendar')"
:allow-empty="false"
:options="calendars">
<template #option="{option}">
<template #option="option">
<CalendarPickerOption v-bind="option" />
</template>
<template #singleLabel="{option}">
<template #singleLabel="option">
<CalendarPickerOption :display-icon="option.displayIcon"
v-bind="option" />
</template>
Expand Down

0 comments on commit 0057758

Please sign in to comment.