-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.css
74 lines (63 loc) · 1.01 KB
/
message.css
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
#whisper_incoming {
position:fixed;
display:block;
}
.chat-div {
z-index:10000;
position:fixed;
width:475px;
height:16px;
bottom:0;
left:0;
border:1px solid rgb(180,180,180);
border-left:0;
border-top-right-radius:4px;
background-color:rgb(230,230,230);
display:none;
padding-left:4px;
overflow:auto;
text-align:left;
}
.chat-div::-webkit-scrollbar {
display:none;
}
#whisper_incoming::-webkit-scrollbar {
display:none;
}
.chat-event {
height:17px;
line-height:17px;
}
.chat-message {
height:17px;
line-height:17px;
}
.whisper-text {
color:rgb(79,79,79);
font-size:11px;
font-family:sans-serif;
}
#whisper_outgoing {
z-index:10000;
position:fixed;
width:475px;
height:16px;
bottom:0;
right:0;
border:1px solid rgb(180,180,180);
border-right:0;
border-top-left-radius:4px;
background-color:rgb(230,230,230);
display:none;
}
#whisper_outgoing::-webkit-scrollbar {
display:none;
}
#outgoing {
width:477px;
height:17px;
line-height:17px;
}
#outgoing.middle:focus {
outline-width:0;
}