From 88c625fe80afe605ee4d8be7cb56edcab88e6af5 Mon Sep 17 00:00:00 2001 From: Brian Fenton Date: Fri, 15 Jun 2018 03:58:28 -0500 Subject: [PATCH] removing the 24px top margin on .modal-dialog .title (#10377) * removing the 24px top margin on .modal-dialog .title so boss HP and difficulty line up * stop overloading title so much and use a properly-scoped style * removing unnecessary temp vars * using SCSS color vars as per CR * using relative font size measurements instead of absolute pixels, and adding popover override CSS to not break quest shop & invite notifications * removing redundant font declarations --- .../header/notifications/questInvitation.vue | 8 ++--- .../components/shops/quests/questInfo.vue | 31 +++++++++++++------ 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/website/client/components/header/notifications/questInvitation.vue b/website/client/components/header/notifications/questInvitation.vue index ce8e6b9106..506e1e4cf2 100644 --- a/website/client/components/header/notifications/questInvitation.vue +++ b/website/client/components/header/notifications/questInvitation.vue @@ -45,19 +45,17 @@ export default { this.$router.push({ name: 'party' }); }, async questAccept () { - let quest = await this.$store.dispatch('quests:sendAction', { + this.user.party.quest = await this.$store.dispatch('quests:sendAction', { groupId: this.notification.data.partyId, action: 'quests/accept', }); - this.user.party.quest = quest; }, async questReject () { - let quest = await this.$store.dispatch('quests:sendAction', { + this.user.party.quest = await this.$store.dispatch('quests:sendAction', { groupId: this.notification.data.partyId, action: 'quests/reject', }); - this.user.party.quest = quest; }, }, }; - \ No newline at end of file + diff --git a/website/client/components/shops/quests/questInfo.vue b/website/client/components/shops/quests/questInfo.vue index 0cab52200b..a395eca04e 100644 --- a/website/client/components/shops/quests/questInfo.vue +++ b/website/client/components/shops/quests/questInfo.vue @@ -1,17 +1,18 @@