Chat: Title; Minimization and new messages and connectivity notification.

This commit is contained in:
2015-05-31 07:15:15 +02:00
parent be5900a3e0
commit 6c98e299a8
4 changed files with 130 additions and 4 deletions

View File

@@ -6,6 +6,46 @@
border-radius: 5px;
background-color: rgb(220,220,220);
box-shadow: 0px 0px 5px black;
position: absolute;
bottom: 0;
right: 0;
}
.divChatTitleBar{
text-align: right;
}
.titleChatNormal{
background-color: rgb(220,220,220);
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
@keyframes alert {
0% {background-color: red;}
50% {background-color: rgb(220,220,220);}
100% {background-color: red;}
}
.titleChatAlert{
background-color: red;
animation-name: alert;
animation-duration: 1s;
animation-iteration-count: infinite;
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
.titleChatDisconnected{
color: rgb(64,64,64);
background-color: rgb(220,220,220);
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
.divChat {
@@ -16,6 +56,7 @@
border-radius: 5px;
border: solid 1px black;
box-shadow: inset 0px 0px 5px black;
}
.messageRow,
@@ -99,4 +140,13 @@
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
text-align: center;
cursor: pointer;
background-color: rgb(192,192,192);
}
.chatButton:hover {
background-color: rgb(220,220,220);
}
.chatButton:active {
background-color: rgb(220,220,220);
box-shadow: inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1);
}