blob: 07a38891f525f34c143a51fca83bc4dfb8c7450f (
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
64
65
66
67
68
69
70
|
@mixin reindeer-splitpanel {
.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;
height: 100%; /* for Opera */
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 */
}
/* Splitpanels on blue background */
.blue .v-splitpanel-hsplitter-small,
.blue .v-splitpanel-hsplitter-small-locked {
background: #7c8a91;
}
/* Splitpanels on black background */
.black .v-splitpanel-hsplitter-small,
.black .v-splitpanel-hsplitter-small-locked {
background: #4e5253;
}
/* Small style */
.v-splitpanel-hsplitter-small,
.v-splitpanel-hsplitter-small-locked,
.white .v-splitpanel-hsplitter-small,
.white .v-splitpanel-hsplitter-small-locked {
width: 1px;
background: #949698;
}
.v-splitpanel-vsplitter-small,
.v-splitpanel-vsplitter-small-locked,
.white .v-splitpanel-vsplitter-small,
.white .v-splitpanel-vsplitter-small-locked {
height: 1px;
background: #949698;
}
.v-splitpanel-hsplitter-small div {
width: 5px;
margin-left: -2px;
background: transparent;
}
.v-splitpanel-vsplitter-small div {
height: 5px;
margin-top: -2px;
background: transparent;
}
}
|