yzt
2023-05-26 2f70f6727314edd84d8ec2bfe3ce832803f1ea77
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
/* BorderContainer */
 
.tundra .dijitBorderContainer {
    background-color: #fcfcfc;
    padding: 5px;
}
 
.tundra .dijitSplitContainer-child,
.tundra .dijitBorderContainer-child {
    /* By default put borders on all children of BorderContainer,
     *  to give illusion of borders on the splitters themselves.
     */
    border: 1px #ccc solid;
}
 
.tundra .dijitBorderContainer-dijitTabContainerTop,
.tundra .dijitBorderContainer-dijitTabContainerBottom,
.tundra .dijitBorderContainer-dijitTabContainerLeft,
.tundra .dijitBorderContainer-dijitTabContainerRight {
    /* except that TabContainer defines borders on it's sub-nodes (tablist and dijitTabPaneWrapper),
     * so override rule setting border on domNode
     */
     border: none;
}
 
.tundra .dijitBorderContainer-dijitBorderContainer {
    /* also, make nested BorderContainers look like a single big widget with lots of splitters */
    border: none;
    padding: 0;
}
 
.tundra .dijitSplitterH,
.tundra .dijitGutterH {
    background:#fcfcfc;
    border:0;
    height:5px;
}
 
.tundra .dijitSplitterH .dijitSplitterThumb {
    background:#B0B0B0 none;
    height:1px;
    top:2px;
    width:19px;
}
 
.tundra .dijitSplitterV,
.tundra .dijitGutterV {
    background:#fcfcfc;
    border:0;
    width:5px;
}
 
.tundra .dijitSplitterV .dijitSplitterThumb {
    background:#B0B0B0 none;
    height:19px;
    left:2px;
    width:1px;
}
 
/* active splitter */
.tundra .dijitSplitterActive {
    font-size: 1px;
    background-image: none;
    background-color: #aaa;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: Alpha(Opacity=60);
    margin: 0;
}