1
0
mirror of https://github.com/flarum/core.git synced 2025-02-24 11:13:40 +01:00

Fix mobile unread notifications indicator

This commit is contained in:
Toby Zerner 2015-07-28 17:41:36 +09:30
parent 242f5b67a6
commit 0f1fb2de17
2 changed files with 17 additions and 17 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}