View contact status

This commit is contained in:
yflory
2017-07-18 15:50:21 +02:00
parent 221a3b4fed
commit 91ebbdfdb4
2 changed files with 101 additions and 6 deletions

View File

@@ -81,9 +81,28 @@ body {
media-tag, .default {
margin-right: 5px;
}
.status {
width: 5px;
display: inline-block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
opacity: 0.7;
background-color: #777;
&.online {
background-color: green;
}
&.offline {
background-color: red;
}
}
}
#friendList {
.friend {
position: relative;
}
.remove {
cursor: pointer;
width: 20px;