mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-03 17:30:37 +00:00
update css
This commit is contained in:
parent
fbf4ccdf02
commit
cd5e6d331a
@ -24,16 +24,13 @@
|
|||||||
font-size:7pt;
|
font-size:7pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ctlbtn:hover {
|
.ctlbtn:hover {
|
||||||
color: #ffffae;
|
color: #ffffae;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#chatwin
|
||||||
|
{
|
||||||
|
|
||||||
#chatwin
|
|
||||||
{
|
|
||||||
background-color: #eeeeee;
|
background-color: #eeeeee;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
height:150px;
|
height:150px;
|
||||||
@ -43,20 +40,28 @@
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
border-style:inset;
|
border-style:inset;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
color: #3333ff;
|
||||||
|
}
|
||||||
|
|
||||||
.l1
|
.chatuid
|
||||||
{
|
{
|
||||||
|
font-size: 7pt;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ff3333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.l1
|
||||||
|
{
|
||||||
border:1;
|
border:1;
|
||||||
background-color:#fefefe;
|
background-color:#fefefe;
|
||||||
height:1px;
|
height:1px;
|
||||||
opacity:0.4;
|
opacity:0.4;
|
||||||
}
|
}
|
||||||
#chatmsg
|
#chatmsg
|
||||||
{
|
{
|
||||||
width:400px;
|
width:400px;
|
||||||
max-height:40px;
|
max-height:40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -111,7 +111,7 @@ var callbacks = {
|
|||||||
var body = data.body.replace(/(http[s]{0,1}:\/\/\S+)/g, "<a target='_blank' href='$1'>$1<\/a>");
|
var body = data.body.replace(/(http[s]{0,1}:\/\/\S+)/g, "<a target='_blank' href='$1'>$1<\/a>");
|
||||||
body = body.replace(/(?:\r\n|\r|\n)/g, '<br />');
|
body = body.replace(/(?:\r\n|\r|\n)/g, '<br />');
|
||||||
|
|
||||||
$("#chatwin").append("<b>" + data.from + "</b>:<br>" + "" + body + "" + "<br>");
|
$("#chatwin").append("<span class=chatuid>" + data.from + ":</span><br>" + body);
|
||||||
$('#chatwin').animate({"scrollTop": $('#chatwin')[0].scrollHeight}, "fast");
|
$('#chatwin').animate({"scrollTop": $('#chatwin')[0].scrollHeight}, "fast");
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user