From fa3aed1e3d9894c915544598e2cea9cb657ecea3 Mon Sep 17 00:00:00 2001 From: supertiger1234 Date: Sat, 7 Dec 2019 19:13:00 +0000 Subject: [PATCH] added desktop class and removed notify animation. --- src/components/app/FriendsList.vue | 26 ++++--------------- src/components/app/MainNav.vue | 19 +------------- src/components/app/Navigation.vue | 19 +------------- .../app/ServerTemplate/ChannelTemplate.vue | 23 +++------------- .../app/ServerTemplate/ServerTemplate.vue | 21 ++------------- .../app/relationships/FriendsTemplate.vue | 24 +++-------------- src/views/App.vue | 23 ++-------------- 7 files changed, 18 insertions(+), 137 deletions(-) diff --git a/src/components/app/FriendsList.vue b/src/components/app/FriendsList.vue index c19202f..68fcbb0 100644 --- a/src/components/app/FriendsList.vue +++ b/src/components/app/FriendsList.vue @@ -6,12 +6,12 @@
group
Friends
access_time
Recents
@@ -198,27 +198,11 @@ export default { flex-shrink: 0; } -.notifyAnimation { - animation: notifyAnime; - animation-duration: 1s; - animation-iteration-count: infinite; - animation-fill-mode: forwards; -} -@keyframes notifyAnime { - 0% { - background: rgba(121, 3, 3, 0.541); - } - 40% { - background: rgba(255, 0, 0, 0.568); - } - 60% { - background: rgba(255, 0, 0, 0.568); - } - 100% { - background: rgba(121, 3, 3, 0.541); - } +.notify { + background: rgba(255, 0, 0, 0.568); } + @media (max-width: 600px) { .content{ border-radius: 0; diff --git a/src/components/app/MainNav.vue b/src/components/app/MainNav.vue index e4f9df2..264f583 100644 --- a/src/components/app/MainNav.vue +++ b/src/components/app/MainNav.vue @@ -344,28 +344,11 @@ export default { right: 5px; width: 20px; height: 20px; - animation: notifyAnime; - animation-duration: 1s; - animation-iteration-count: infinite; - animation-fill-mode: forwards; border-radius: 50%; background: rgba(255, 23, 23, 0.753); flex-shrink: 0; } -@keyframes notifyAnime { - 0% { - opacity: 0.2; - } - 40% { - opacity: 1; - } - 60% { - opacity: 1; - } - 100% { - opacity: 0.2; - } -} + .tool-tip { color: white; diff --git a/src/components/app/Navigation.vue b/src/components/app/Navigation.vue index e163e36..f79bf46 100644 --- a/src/components/app/Navigation.vue +++ b/src/components/app/Navigation.vue @@ -366,28 +366,11 @@ export default { right: 5px; width: 20px; height: 20px; - animation: notifyAnime; - animation-duration: 1s; - animation-iteration-count: infinite; - animation-fill-mode: forwards; border-radius: 50%; background: rgba(255, 23, 23, 0.753); flex-shrink: 0; } -@keyframes notifyAnime { - 0% { - opacity: 0.2; - } - 40% { - opacity: 1; - } - 60% { - opacity: 1; - } - 100% { - opacity: 0.2; - } -} + .tool-tip { color: white; diff --git a/src/components/app/ServerTemplate/ChannelTemplate.vue b/src/components/app/ServerTemplate/ChannelTemplate.vue index 8e97286..1304bdc 100644 --- a/src/components/app/ServerTemplate/ChannelTemplate.vue +++ b/src/components/app/ServerTemplate/ChannelTemplate.vue @@ -1,7 +1,7 @@