blob: dc627b07cbff38fe645434ed66f88f4f022123ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#chat_container {
overflow: hidden;
position: absolute;
}
#chat_container #chat {
overflow-y: scroll;
overflow-x: hidden;
max-height: 400px;
font-size: 13px;
line-height: 18px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
}
#chat p {
margin: 0;
}
#chat span.nick {
display:inline-block;
width: 50px;
vertical-align: top;
}
#chat span.you {
color: #ee33bb;
}
#chat span.msg {
display: inline-block;
vertical-align: top;
word-wrap: break-word;
max-width: 200px;
}
#chat_container #chat img {
max-width: 200px;
max-height: 200px;
}
#form {
position: absolute;
}
#form input {
outline: 0;
border: 1px solid #cccccc;
padding: 2px;
width: 100%;
font-size: 13px;
}
#form #open-emoticons {
position: absolute;
right: -2px;
bottom: 18px;
width: 15px;
height: 15px;
cursor: pointer;
}
#form #emoticons {
display: none;
display: center;
z-index: 100;
position: absolute;
right: -5px;
bottom: 39px;
width: 110px;
padding: 2px 0px 2px 5px;
border: 1px solid #dddddd;
background: white;
}
#form #emoticons img {
margin: 2px;
border: 1px solid transparent;
cursor: pointer;
}
#form #emoticons img:hover {
border: 1px solid black;
}
|