From 8194de1df61380e55da6443cbae9a659aad4082f Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 28 Jul 2015 17:41:36 +0930 Subject: [PATCH] Fix mobile unread notifications indicator --- framework/core/less/forum/NotificationList.less | 17 ----------------- framework/core/less/lib/Navigation.less | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/framework/core/less/forum/NotificationList.less b/framework/core/less/forum/NotificationList.less index 8eff338ca..324f51256 100644 --- a/framework/core/less/forum/NotificationList.less +++ b/framework/core/less/forum/NotificationList.less @@ -114,20 +114,3 @@ font-weight: bold; } } - -.Navigation-drawer.unreadNotifications { - position: relative; - - &:after { - content: ' '; - display: block; - position: absolute; - background: @primary-color; - top: 10px; - right: 10px; - width: 14px; - height: 14px; - border-radius: 7px; - border: 2px solid @body-bg; - } -} diff --git a/framework/core/less/lib/Navigation.less b/framework/core/less/lib/Navigation.less index d19ba9d4a..d6522455a 100755 --- a/framework/core/less/lib/Navigation.less +++ b/framework/core/less/lib/Navigation.less @@ -28,3 +28,20 @@ .rotate(0deg); } } + +.Navigation-drawer.unread { + position: relative; + + &:after { + content: ' '; + display: block; + position: absolute; + background: @primary-color; + top: 10px; + right: 10px; + width: 14px; + height: 14px; + border-radius: 7px; + border: 2px solid @body-bg; + } +}