From 406df4399b630268c1028664f3b818571d6f8e4f Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 30 Nov 2018 16:39:07 +0300 Subject: avatars shadows, also allows drop-shadow use --- src/components/status/status.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/status/status.js') diff --git a/src/components/status/status.js b/src/components/status/status.js index 10716583..725bc3f8 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -33,7 +33,8 @@ const Status = { showingTall: false, expandingSubject: typeof this.$store.state.config.collapseMessageWithSubject === 'undefined' ? !this.$store.state.instance.collapseMessageWithSubject - : !this.$store.state.config.collapseMessageWithSubject + : !this.$store.state.config.collapseMessageWithSubject, + betterShadow: this.$store.state.interface.browserSupport.cssFilter } }, computed: { -- cgit v1.2.3-70-g09d2 From 1623dcb417360ce9304c84d679cc856ad1311a69 Mon Sep 17 00:00:00 2001 From: ValD Date: Tue, 11 Dec 2018 01:42:51 +0530 Subject: added activatePanel onclick for timeago button --- src/App.vue | 2 +- src/components/notification/notification.js | 3 ++- src/components/notification/notification.vue | 4 ++-- src/components/notifications/notifications.js | 1 + src/components/notifications/notifications.vue | 2 +- src/components/status/status.js | 3 ++- src/components/status/status.vue | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) (limited to 'src/components/status/status.js') diff --git a/src/App.vue b/src/App.vue index 9d66b9d4..16cd08d4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -30,7 +30,7 @@ - + diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js index 4dea63bb..345fe3ee 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -11,7 +11,8 @@ const Notification = { } }, props: [ - 'notification' + 'notification', + 'activatePanel' ], components: { Status, StillImage, UserCardContent diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index f773d9de..a9d724e3 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -1,5 +1,5 @@