blob: 00689373cd315de5a7a9828826a811b5cc4c8a58 (
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
|
.i-splitpanel-horizontal .i-splitpanel-hsplitter {
width: 7px;
background-repeat: repeat-y;
background-image: url(img/hor-bg.png); /** sprite-ref: horizontals; sprite-alignment: repeat */
}
.i-splitpanel-horizontal .i-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: middle */
}
.i-splitpanel-vertical .i-splitpanel-vsplitter {
height: 7px;
background-repeat: repeat-x;
background-image: url(img/ver-bg.png); /** sprite-ref: verticals; sprite-alignment: repeat */
}
.i-splitpanel-vertical .i-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 */
}
|