diff --git a/css/src/style.scss b/css/src/style.scss index 37b0bdeda..9f6f073ec 100644 --- a/css/src/style.scss +++ b/css/src/style.scss @@ -711,10 +711,9 @@ $blue_due: #4271a6; // due dates and low importance } /** - * rules for app-sidebar - */ - -#app-sidebar { + * rules for app-sidebar + */ +.app-sidebar { .flex-container { display: flex; flex-direction: column; diff --git a/src/App.vue b/src/App.vue index 6f8e1e625..074886b96 100644 --- a/src/App.vue +++ b/src/App.vue @@ -32,9 +32,7 @@ License along with this library. If not, see . -
- -
+ @@ -115,7 +113,7 @@ export default { if (!($event.target.closest('.reactive') || $event.target.classList.contains('reactive') || $event.target.classList.contains('mx-btn') // For some reason the click-outside handlers fire for the datepicker month and year buttons!? ) - && !$event.target.closest('#app-sidebar') && this.$route.params.taskId) { + && !$event.target.closest('.app-sidebar') && this.$route.params.taskId) { if (this.$route.params.calendarId) { this.$router.push({ name: 'calendars', params: { calendarId: this.$route.params.calendarId } }) } else { diff --git a/src/components/TheDetails.vue b/src/components/TheDetails.vue index 37061c5d9..2b2c97c9d 100644 --- a/src/components/TheDetails.vue +++ b/src/components/TheDetails.vue @@ -20,368 +20,372 @@ License along with this library. If not, see . -->