1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

First MeshMessenger with WebRTC video support.

This commit is contained in:
Ylian Saint-Hilaire 2018-12-17 00:32:08 -08:00
parent 434aeca917
commit 0ce4c20bf3
6 changed files with 192 additions and 83 deletions

View file

@ -12,6 +12,29 @@
background-color: lightgray;
}
.remoteBubble {
background-color: #00cc99;
color: black;
border-radius: 5px;
padding: 5px;
float: left;
margin-bottom: 5px;
margin-right: 20px;
box-shadow:3px 3px 10px gray;
}
.localBubble {
background-color: #0099ff;
color: black;
border-radius: 5px;
padding: 5px;
float: right;
margin-bottom: 5px;
margin-left: 20px;
box-shadow:3px 3px 10px gray;
}
.icon1 {
background: url(../images/messenger32.png) 0px 0px;
background-color: gray;
@ -60,4 +83,9 @@
.icon10 {
background: url(../images/messenger32.png) -288px 0px;
background-color: gray;
}
}
.icon11 {
background: url(../images/messenger32.png) -320px 0px;
background-color: gray;
}