闫增涛
2024-11-06 56cdf07f8496685ba906ea75e7eb2faebb35371b
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
75
76
77
78
/*!
 * 滚动条
 **/
 
.kf-editor-edit-scrollbar {
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 994;
    border-top: 1px solid #ddd;
}
 
.kf-editor-ui-left-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: white;
}
 
.kf-editor-ui-right-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: white;
}
 
.kf-editor-ui-track {
    position: absolute;
    top: 0;
    left: 5px;
    width: 0;
    height: 100%;
    background-image: url(../images/scrollbar/edit/bar-left.png), url(../images/scrollbar/edit/bar-right.png), url(../images/scrollbar/edit/bar-bg.png);
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-position: 0 0, right 0, 0 0;
}
 
.kf-editor-ui-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
}
 
.kf-editor-ui-thumb-left {
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/scrollbar/edit/thumb-left.png) no-repeat 0 0;
    z-index: 1;
}
 
.kf-editor-ui-thumb-right {
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/scrollbar/edit/thumb-right.png) no-repeat 0 0;
}
 
.kf-editor-ui-thumb-body {
    position: absolute;
    top: 0;
    left: 5px;
    width: 0;
    height: 100%;
    background: url(../images/scrollbar/edit/thumb-bg.png) repeat-x 0 0;
}