blob: c8c472b4255c0f62f0491c9c071c43fdc1dd9c45 (
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
|
.v-splitpanel-hsplitter,
.v-splitpanel-hsplitter-locked {
width: 7px;
background-repeat: repeat-y;
background-image: url(img/hor-bg.png); /** sprite-ref: horizontals; sprite-alignment: repeat */
}
.v-splitpanel-hsplitter div {
width: 7px;
background: transparent;
background-repeat: no-repeat;
background-position: 50%;
background-image: url(img/hor-handle.png); /** sprite-ref: horizontals; sprite-alignment: center */
}
.v-splitpanel-vsplitter,
.v-splitpanel-vsplitter-locked {
height: 7px;
background-repeat: repeat-x;
background-image: url(img/ver-bg.png); /** sprite-ref: verticals; sprite-alignment: repeat */
}
.v-splitpanel-vsplitter div {
height: 7px;
background: transparent;
background-repeat: no-repeat;
background-position: 50%;
background-image: url(img/ver-handle.png); /** sprite-ref: verticals; sprite-alignment: center */
}
/* Small style */
.v-splitpanel-hsplitter-small,
.v-splitpanel-hsplitter-small-locked {
width: 1px;
background: #949698;
}
.v-splitpanel-vsplitter-small,
.v-splitpanel-vsplitter-small-locked {
height: 1px;
background: #949698;
}
.v-splitpanel-hsplitter-small div {
width: 3px;
margin-left: -2px;
background: transparent;
}
.v-splitpanel-vsplitter-small div {
height: 3px;
margin-top: -2px;
background: transparent;
}
|