blob: 4f94db127c021d57c614473ee7845b25cac28ccb (
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
50
51
|
#chatlist {
width: 970px;
clear: both;
margin: 5px auto;
}
#chatlist .viewport {
width: 950px;
height: 600px;
overflow: hidden;
position: relative;
}
#chatlist .overview {
list-style: none;
position: absolute;
left: 0;
top: 0;
overflow-wrap: break-word;
font-size: 25px;
}
#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;
}
|