From cb2cc37556b5d9c740865bde291a27312bf39800 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Tue, 29 Oct 2019 18:07:35 +0100 Subject: [PATCH] Extract components following @alina-beck suggestion - see https://github.com/Human-Connection/Human-Connection/pull/2075/files --- .../NotificationsDropdownFilter.vue | 69 ++++++++++++ .../NotificationsTable/NotificationsTable.vue | 105 ++++++++++++++++++ webapp/pages/notifications/index.vue | 4 - 3 files changed, 174 insertions(+), 4 deletions(-) create mode 100644 webapp/components/NotificationsDropdownFilter/NotificationsDropdownFilter.vue create mode 100644 webapp/components/NotificationsTable/NotificationsTable.vue diff --git a/webapp/components/NotificationsDropdownFilter/NotificationsDropdownFilter.vue b/webapp/components/NotificationsDropdownFilter/NotificationsDropdownFilter.vue new file mode 100644 index 000000000..b0d1deb7d --- /dev/null +++ b/webapp/components/NotificationsDropdownFilter/NotificationsDropdownFilter.vue @@ -0,0 +1,69 @@ + + diff --git a/webapp/components/NotificationsTable/NotificationsTable.vue b/webapp/components/NotificationsTable/NotificationsTable.vue new file mode 100644 index 000000000..8366ea5c5 --- /dev/null +++ b/webapp/components/NotificationsTable/NotificationsTable.vue @@ -0,0 +1,105 @@ + + + diff --git a/webapp/pages/notifications/index.vue b/webapp/pages/notifications/index.vue index 5d22aa0b4..9e2346061 100644 --- a/webapp/pages/notifications/index.vue +++ b/webapp/pages/notifications/index.vue @@ -103,8 +103,4 @@ export default { .sorting-dropdown { float: right; } -.notification-status { - opacity: 0.6; /* Real browsers */ - filter: alpha(opacity = 60); /* MSIE */ -}