blob: 2e612e2e211263fce34b6f79bfad27a696c7f05c (
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($primaryStyleName : v-splitpanel) {
.#{$primaryStyleName}-hsplitter,
.#{$primaryStyleName}-hsplitter-locked {
width: 7px;
background-repeat: repeat-y;
background-image: url(img/hor-bg.png); /** sprite-ref: horizontals; sprite-alignment: repeat */
}
.#{$primaryStyleName}-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 */
}
.#{$primaryStyleName}-vsplitter,
.#{$primaryStyleName}-vsplitter-locked {
height: 7px;
background-repeat: repeat-x;
background-image: url(img/ver-bg.png); /** sprite-ref: verticals; sprite-alignment: repeat */
}
.#{$primaryStyleName}-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 .#{$primaryStyleName}-hsplitter-small,
.blue .#{$primaryStyleName}-hsplitter-small-locked {
background: #7c8a91;
}
/* Splitpanels on black background */
.black .#{$primaryStyleName}-hsplitter-small,
.black .#{$primaryStyleName}-hsplitter-small-locked {
background: #4e5253;
}
/* Small style */
.#{$primaryStyleName}-hsplitter-small,
.#{$primaryStyleName}-hsplitter-small-locked,
.white .#{$primaryStyleName}-hsplitter-small,
.white .#{$primaryStyleName}-hsplitter-small-locked {
width: 1px;
background: #949698;
}
.#{$primaryStyleName}-vsplitter-small,
.#{$primaryStyleName}-vsplitter-small-locked,
.white .#{$primaryStyleName}-vsplitter-small,
.white .#{$primaryStyleName}-vsplitter-small-locked {
height: 1px;
background: #949698;
}
.#{$primaryStyleName}-hsplitter-small div {
width: 5px;
margin-left: -2px;
background: transparent;
}
.#{$primaryStyleName}-vsplitter-small div {
height: 5px;
margin-top: -2px;
background: transparent;
}
}
|