blob: 0efd57d4b223c86a513a842a8a2908ab9dc2441a (
plain) (
blame)
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
|
#chatlist {
width: 570px;
clear: both;
margin: 5px auto;
}
#chatlist .viewport {
width: 550px;
height: 600px;
overflow: hidden;
position: relative;
}
#chatlist .overview {
list-style: none;
position: absolute;
left: 0;
top: 0;
}
#chatlist .thumb .end,
#chatlist .thumb {
background-color: #b8a01e;
}
#chatlist .scrollbar {
position: relative;
float: right;
width: 15px;
}
#chatlist .track {
background-color: #233f52;
height: 100%;
width: 13px;
position: relative;
padding: 0 1px;
}
#chatlist .thumb {
height: 20px;
width: 13px;
cursor: pointer;
overflow: hidden;
position: absolute;
top: 0;
}
#chatlist .thumb .end {
overflow: hidden;
height: 5px;
width: 13px;
}
#chatlist .disable {
display: none;
}
|