Unread Channels support
Added support for unread channels, along with a few bug fixes
This commit is contained in:
parent
9676c605e7
commit
f01c75d73c
5 changed files with 131 additions and 18 deletions
|
@ -85,6 +85,7 @@ h2{
|
|||
}
|
||||
.servericon{
|
||||
transition: border-radius .2s;
|
||||
position:relative;
|
||||
}
|
||||
.servericon:hover{
|
||||
border-radius: 30%;
|
||||
|
@ -591,3 +592,23 @@ span{
|
|||
.filename{
|
||||
color:#47bbff;
|
||||
}
|
||||
|
||||
.unread{
|
||||
position:absolute;
|
||||
background:white;
|
||||
height:.075in;
|
||||
width:.075in;
|
||||
transition:transform .2s;
|
||||
transform:translate(-.20in,.2in);
|
||||
z-index:10;
|
||||
border-radius: 50%;
|
||||
border:solid;
|
||||
border-width:.02in;
|
||||
border-color:black;
|
||||
}
|
||||
.notiunread{
|
||||
transform:translate(0in,.2in);
|
||||
}
|
||||
.cunread{
|
||||
box-shadow: inset .024in 0 white;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue