blob: 1cb04bc29bab53b38687ef855650f32c9d4dd33f (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
.v-splitpanel-hsplitter div,
.v-splitpanel-vsplitter div {
background: transparent url(../../img/split-handle.png) no-repeat 2px 50%;
margin: 0 -1px;
width: 9px;
}
.v-splitpanel-vsplitter div {
background-position: 50% 2px;
margin: -1px 0;
width: auto;
height: 9px;
}
.v-splitpanel-hsplitter,
.v-splitpanel-hsplitter-locked {
border-style: solid;
border-width: 0 1px;
border-color: #b0b0b0;
width: 7px;
background: #b3b3b3 url(../../img/grad-light-left.png) repeat-y;
}
.v-splitpanel-vsplitter,
.v-splitpanel-vsplitter-locked {
border-style: solid;
border-width: 1px 0;
border-color: #b0b0b0;
height: 7px;
background: #b3b3b3 url(../../img/grad-light-top.png) repeat-x;
}
/*******************************************************************************
* Small
******************************************************************************/
body .v-splitpanel-hsplitter-small,
body .v-splitpanel-hsplitter-small-locked {
width: 1px;
border: none;
background-image: none;
}
body .v-splitpanel-vsplitter-small,
body .v-splitpanel-vsplitter-small-locked {
height: 1px;
border: none;
background-image: none;
font-size: 1px;
line-height: 1px;
}
.v-splitpanel-hsplitter-small div {
width: 7px;
margin-left: -2px;
background: transparent;
}
.v-splitpanel-vsplitter-small div {
height: 7px;
margin-top: -2px;
background: transparent;
overflow: hidden;
}
|